Search found 6522 matches: first

Return to advanced search

Re: records on xbrowse

any solution please ? the problem is when I make a search for a sample "frank" ( on First) ndatarow is 3 and also obrw:nlen is 3 I tried to inser a variable nTotalrecords at init oDbf:= TCustomer():New() oDbf:setorder(1) oDbf:Gotop() nTotalRecords:= oDbf:OrdKeyCount() ...
by Silvio.Falconi
Wed Mar 27, 2024 9:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 210

Re: records on xbrowse

oBrw:nLen and oBrw:nDataRows get their values after the first Refresh/paint of the browse. Also oBrw:nDataRows changes when browse is resized. DEFINE BUTTON/BTNBMP ..... (arrows)  ... WHEN ( oBrw:nDataRows >= oBrw:nLen ) would work ...
by Silvio.Falconi
Tue Mar 26, 2024 11:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 210

Re: records on xbrowse

oBrw:nLen and oBrw:nDataRows get their values after the first Refresh/paint of the browse.
Also oBrw:nDataRows changes when browse is resized.

Code: Select all  Expand view
DEFINE BUTTON/BTNBMP ..... (arrows)  ... WHEN ( oBrw:nDataRows >= oBrw:nLen )

would work
by nageswaragunupudi
Tue Mar 26, 2024 9:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 210

Re: Problema super raro

First please let me know if you built my sample program as it is (without any changes) and tested it? Did it work or not?
by nageswaragunupudi
Sun Mar 24, 2024 10:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 223

Re: Problema super raro

Mr. Rao: First of all, thank you very much for your support. Whit this code       oApp:oCon:Execute( "SELECT * INTO oRsWrk FROM oRsDet" )  I get this error Error description: (DOS Error -2147352567) WINOLE/1007 ...
by Armando
Sun Mar 24, 2024 6:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 223

Re: Problema super raro

... tbl_perm perm INNER JOIN tbl_temp tmp ON perm.id = tmp.idENDTEXT   oCn:Execute( cSql ) Let us now test with a practical example: First run this test as it is without any changes. #include "fivewin.ch"#include "adodef.ch"static oCn//----------------------------------------------------------------------------//function ...
by nageswaragunupudi
Sun Mar 24, 2024 12:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 223

Re: Problema super raro

Mr. Rao & Friends: Thanks to your advice, the first problem is solved, but now the problem is when retaking the recorded records and displaying them in an xBrowse, it only shows 2 of 5 records This is my code       IF lCrealo         DO WHILE ...
by Armando
Sat Mar 23, 2024 10:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 223

Re: Mr Rao :SetFilter no funciona

La tabla debe de tener un indice ordenado por el campo FIRST

It is not at all necessary to have index for filters to work.
by nageswaragunupudi
Sat Mar 23, 2024 8:21 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mr Rao :SetFilter no funciona
Replies: 11
Views: 213

Re: Mr Rao :SetFilter no funciona

La tabla debe de tener un indice ordenado por el campo FIRST   //setfilter cFirst := "Santos"oRs:SetFilter( "FIRST = ?", { rtrim(cFirst) } )//locate  bSeek    := oRs:ExprAsBlock( ...
by sysctrl2
Fri Mar 22, 2024 7:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mr Rao :SetFilter no funciona
Replies: 11
Views: 213

Re: Question about performance RowSet

Please try this for adding new record. This is working for me and should work for you too. First run this program as it is without changes before you adopt to your tables. function MariaNewRecord()   local oCn := maria_Connect( "209.250.245.152,fwh,fwhuser,FiveTech@2022" ...
by Eroni
Wed Mar 20, 2024 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 466

Re: Question about performance RowSet

Please try this for adding new record. This is working for me and should work for you too. First run this program as it is without changes before you adopt to your tables. function MariaNewRecord()   local oCn := maria_Connect( "209.250.245.152,fwh,fwhuser,FiveTech@2022" ...
by nageswaragunupudi
Wed Mar 20, 2024 4:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 466

Re: Question about performance RowSet

... informattions. RowSet RowSet takes a bit more time, because during creation it collects a lot other relevant information which makes usage faster. First time reading is a bit slower when compared to other libraries. Once opened, updates, inserts, deletes, sorts, filters, etc. are all extremely ...
by Eroni
Wed Mar 20, 2024 1:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 466

Re: Question about performance RowSet

RowSet RowSet takes a bit more time, because during creation it collects a lot other relevant information which makes usage faster. First time reading is a bit slower when compared to other libraries. Once opened, updates, inserts, deletes, sorts, filters, etc. are all extremely faster ...
by nageswaragunupudi
Sat Mar 16, 2024 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 466

Re: ButtonBmp problem with FWH2402

Trying to reproduce the problem here First sample from Source Code (not Resource) #include "fivewin.ch"function Main()   local oDlg, oBtn, oFont   FW_SetUnicode( .T. )   SetBalloon( .t. )   DEFINE FONT oFont ...
by richard-service
Thu Mar 07, 2024 6:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp problem with FWH2402
Replies: 25
Views: 701

Re: ButtonBmp problem with FWH2402

Trying to reproduce the problem here First sample from Source Code (not Resource) #include "fivewin.ch"function Main()   local oDlg, oBtn, oFont   FW_SetUnicode( .T. )   SetBalloon( .t. )   DEFINE FONT oFont ...
by nageswaragunupudi
Thu Mar 07, 2024 5:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp problem with FWH2402
Replies: 25
Views: 701
Next

Return to advanced search