Search found 21 matches: shorten

Searched query: shorten

by driessen
Fri Jul 08, 2022 12:30 pm
Forum: FiveWin for Harbour/xHarbour
Topic: If you send me an email and you don't get my answer...
Replies: 27
Views: 2719

Re: If you send me an email and you don't get my answer...

Antonio,

Z_ERROR1.prg is only a change to shorten the log-file and to translate the remarks into Dutch.
But I will build my application with the standard errorsysw.prg, and let you know.
by Silvio.Falconi
Thu Jul 15, 2021 9:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ApplyParams Tdatabase
Replies: 8
Views: 2028

Re: ApplyParams Tdatabase

... records only? Since the one you are editing is not available for it's own date range it will not show as available anyway. If you are looking to shorten the >length of stay, then you don't need to search at all.
>You can immediately just change the checkout date without any searching at all. Since ...
by James Bott
Thu Jul 15, 2021 5:34 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ApplyParams Tdatabase
Replies: 8
Views: 2028

Re: ApplyParams Tdatabase

... records only? Since the one you are editing is not available for it's own date range it will not show as available anyway. If you are looking to shorten the length of stay, then you don't need to search at all.

But now customer James Bott thinks about it, the customer James Bott wants to change ...
by James Bott
Thu Jul 08, 2021 4:27 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Error on search a record on dbf with tdatabase
Replies: 18
Views: 2427

Re: Error on search a record on dbf with tdatabase

... Yes, that date is already occupied, HOWEVER, you are going to free that day up, not add a new reservation for that day. So whenever you need to shorten a reservation, by either starting at a later date, or ending at an earlier date, you just change the start date, or the end date to the new date ...
by ukoenig
Thu Aug 22, 2019 10:30 am
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse- language-translation of button- / screentext
Replies: 1
Views: 553

Re: Xbrowse- language-translation of screentext

... 46;jpg

A translated folderpage
You can translate what ever You like
sample : instead of < Monday > You can define < Mo >
Prompts are symply replaced with vars.
A longer text can be shorten or changing the varsize

http&#58;//www&#46;pflegeplus&#46;com/IMAGES/Translate4&#46;jpg

regards
Uwe
by Rick Lipkin
Thu Jun 15, 2017 6:57 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Changing the textcolor of RADIOS and CHECKB. at runtime ?
Replies: 2
Views: 768

Re: Changing the textcolor of RADIOS and CHECKB. at runtime ?

Uwe

I use a separate field for check boxes and radio buttons .. just shorten the text to show control and create a text box to go along side .. that way ON CHANGE I can modify the text.

May not be very elegant, but it works.

Rick Lipkin
by cnavarro
Wed Jan 21, 2015 4:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Introducing FiveTech's fivedit
Replies: 560
Views: 144463

Re: Introducing FiveTech's fivedit

... thought .. I do not see a reason to show the entire path of the file you have open .. just the file (.prg ) name should be enough. That would shorten the tab size and be easier to read if you have several files open.

Thanks
Rick Lipkin

ps .. ctrl-y to delete a line would be also nice

++1
El ...
by Rick Lipkin
Wed Jan 21, 2015 4:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Introducing FiveTech's fivedit
Replies: 560
Views: 144463

Re: Introducing FiveTech's fivedit

... Just a quick thought .. I do not see a reason to show the entire path of the file you have open .. just the file (.prg ) name should be enough. That would shorten the tab size and be easier to read if you have several files open.

Thanks
Rick Lipkin

ps .. ctrl-y to delete a line would be also nice
by Wanderson
Tue Sep 17, 2013 12:17 am
Forum: FiveWin for Harbour/xHarbour
Topic: help with xbrowse
Replies: 2
Views: 712

Re: help with xbrowse

Wanderson

Don't know if you can make the Tab bar transparent, but you can go into your resource editor and shorten the length of the bar to the approximate length of your of your tabs.

Curious myself if anyone has an answer....

Rick Lipkin

Thanks Rick, like your tip but I use the same dialog ...
by Rick Lipkin
Mon Sep 16, 2013 8:53 pm
Forum: FiveWin for Harbour/xHarbour
Topic: help with xbrowse
Replies: 2
Views: 712

Re: help with xbrowse

Wanderson

Don't know if you can make the Tab bar transparent, but you can go into your resource editor and shorten the length of the bar to the approximate length of your of your tabs.

Curious myself if anyone has an answer....

Rick Lipkin
by TimStone
Wed Feb 01, 2012 3:57 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Resource label has display problem
Replies: 0
Views: 356

Resource label has display problem

... now the label overlaps onto the get field.

If you pass the mouse over the field, it then displays the whole field.

The obvious solution is to shorten the length of the label field. However, prior to 11.12, the get fields always had focus priority, and this was not a problem. Is this something ...
by ukoenig
Sat Mar 20, 2010 1:59 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to calc. Restlength of a GET-field during Edit (solved)
Replies: 8
Views: 2194

Re: How to control Restlength of a GET-field during Edit ?

... OF oDlg UPDATE

I think, it is a very useful Help for a User, for often used Get-fields.
In the Past : the User writes some Text. He noticed : the Text is to long.
Next he has to check the Input, to shorten something.

http&#58;//www&#46;pflegeplus&#46;com/pictures/count1&#46;jpg

Best Regards
Uwe
by Gale FORd
Wed Mar 17, 2010 4:19 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Working with Excel
Replies: 21
Views: 8330

Re: Working with Excel

... Macro3 Macro
'
Range("C13:E20").Select
Selection.NumberFormat = "$#,##0"
End Sub

The xHarbour code
oSelect := oExcel:ActiveSheet:Range( "C13:E20" ):select()
oSelect:Set( "NumberFormat", "$#,##0" )

or you can shorten it to
oExcel:ActiveSheet:Range( "C13:E20" ):Set( "NumberFormat", "$#,##0" )
by Kleyber
Sat May 23, 2009 1:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Open Excel file with TOleAuto() (Solved)
Replies: 10
Views: 2596

Re: Open Excel file with TOleAuto()

Rick Lipkin wrote:Kleyber

Found this link with the same error :

http://www.rhinocerus.net/forum/lang-xh ... -file.html

However, it does look like you are opening the file with the full path .. just a quick observation .. can you shorten the file name and see if that helps ?

Rick


Thanks Rick, but the error still persists.

Regards,
by Rick Lipkin
Sat May 23, 2009 1:49 am
Forum: FiveWin for Harbour/xHarbour
Topic: Open Excel file with TOleAuto() (Solved)
Replies: 10
Views: 2596

Re: Open Excel file with TOleAuto()

Kleyber

Found this link with the same error :

http://www.rhinocerus.net/forum/lang-xh ... -file.html

However, it does look like you are opening the file with the full path .. just a quick observation .. can you shorten the file name and see if that helps ?

Rick