Search found 3464 matches: last

Return to advanced search

Re: copy a row of xbrowse

> FOR EACH nRow IN oBrw:aSelectedRows > NOT EXIST IN XBROWSE !!!!!! > wich xbrowse you have ? I have the last release of fwh Silvio, Here you have the solution. But, look also into xbrowse.prg in C:\FWH\Source\Classes\xbrowse.prg. MENUITEM "Copy" WHEN acopy=NIL ...
by Silvio.Falconi
Wed Dec 06, 2023 11:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5873

Re: copy a row of xbrowse

> FOR EACH nRow IN oBrw:aSelectedRows > NOT EXIST IN XBROWSE !!!!!! > wich xbrowse you have ? I have the last release of fwh Silvio, Here you have the solution. But, look also into xbrowse.prg in C:\FWH\Source\Classes\xbrowse.prg. MENUITEM "Copy" WHEN acopy=NIL ...
by Otto
Wed Dec 06, 2023 10:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5873

Re: copy a row of xbrowse

... to copy I wish copy the 1 and 3 row into xbrowse 2 aadd( oBrw:aArrayData,aCopy ) copy one row you have also the oldest test Pls this is the last #include "fivewin.ch" static aCopyFunction Main()   Test("00001")   Test("00002") retur nilfunction ...
by Silvio.Falconi
Tue Dec 05, 2023 9:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5873

Re: check on get

... the full moon. In the company, we send out warning emails, as people in support become extremely unpleasantly demanding during this time. The last full moon in 2023 was on November 26th. Unfortunately, I discovered this connection too late in life. Many things are easier in dealing with people ...
by Otto
Wed Nov 29, 2023 6:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 27
Views: 4024

Re: check on get

FWH provides a way for the last many years. if oGet:lChanged is true, the value is edited and modified. We can also check the original value with oGet:uOriginalValue. Nages, I not understood I tried to found the result of oGet:lchanged ...
by Silvio.Falconi
Mon Nov 27, 2023 10:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 27
Views: 4024

Re: check on get

FWH provides a way for the last many years. if oGet:lChanged is true, the value is edited and modified. We can also check the original value with oGet:uOriginalValue. Mister Rao: https://forums.fivetechsupport.com/viewtopic.php?f=3&t=36677&p=218742&hilit=oGet%3AuOriginalValue&sid=07c886246d7ffe73fed662e55bd3cb86&sid=c321ec65cbe0a0b68df11d3cba5138d3#p218742 ...
by karinha
Sat Nov 25, 2023 2:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 27
Views: 4024

Re: check on get

FWH provides a way for the last many years.

if oGet:lChanged is true, the value is edited and modified.
We can also check the original value with oGet:uOriginalValue.
by nageswaragunupudi
Fri Nov 24, 2023 4:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 27
Views: 4024

Re: To Nages: Record deleted but make error also

... because the programmer checked for days the exact correspondence between fields and values in the fields and everything seemed fine except for the last field which in reality is not a field from the archive but has been added into the array
by Silvio.Falconi
Wed Nov 22, 2023 6:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages: Record deleted but make error also RESOLVED
Replies: 3
Views: 283

Re: Does TDatabase supports SEEK LAST?

He is using database object.
But he is not looking for DbGoBottom()
He is looking for
Code: Select all  Expand view
SEEK cSeek LAST // i.e., DBSEEK( cSeek, nil, .T. )

which is totally different from "GoBottom()"
by nageswaragunupudi
Fri Nov 10, 2023 4:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does TDatabase supports SEEK LAST?
Replies: 5
Views: 383

Re: Does TDatabase supports SEEK LAST?

Saved me a few keystrokes :)
I normally would type as (oDbf:cAlias)->(dbSeek(cSeek, nil, .t.))


If you use database objects then you can just do:

oCustomer:goBottom()
by James Bott
Fri Nov 10, 2023 1:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does TDatabase supports SEEK LAST?
Replies: 5
Views: 383

Re: change Border color BTNBMP

... new version I no longer have the problem of bad display of btnbmp when they are disabled. But I would like to transform the button as I do for the last one (the one you see on the right with the lines), and by doing this I also have to modify the border because it is deleted when I create the brush ...
by Silvio.Falconi
Thu Nov 09, 2023 7:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change Border color BTNBMP
Replies: 2
Views: 295

Re: Does TDatabase supports SEEK LAST?

Not only DBSEEK,
You can use any (x)Harbour function as if it is a METHOD.
by nageswaragunupudi
Tue Nov 07, 2023 7:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does TDatabase supports SEEK LAST?
Replies: 5
Views: 383

Re: Does TDatabase supports SEEK LAST?

Thanks Rao,
Saved me a few keystrokes :)
I normally would type as (oDbf:cAlias)->(dbSeek(cSeek, nil, .t.))
by hua
Tue Nov 07, 2023 6:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does TDatabase supports SEEK LAST?
Replies: 5
Views: 383

Re: Does TDatabase supports SEEK LAST?

Please try oDbf:DbSeek( cSeek, nil, .T. ) This works with FWH1912 also, Don't bother if you can not find the method DbSeek() With database class we call use any (x)Harbour function as if it is a method, if that function is linked to the application. Note: If you get runtime error, just inclu...
by nageswaragunupudi
Tue Nov 07, 2023 5:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does TDatabase supports SEEK LAST?
Replies: 5
Views: 383

Does TDatabase supports SEEK LAST?

Looking at TDatabase of FWH1912, I don't see support for 3rd param for dbSeek(). It is the equivalent of SEEK LAST
Is this rectified in latest version of FWH?
by hua
Tue Nov 07, 2023 5:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does TDatabase supports SEEK LAST?
Replies: 5
Views: 383
PreviousNext

Return to advanced search

cron