Search found 793 matches: advice

Return to advanced search

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 ...
by Armando
Sat Mar 23, 2024 10:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 223

Re: Imagen en login?

Mr. Rao:

Thanks again, your advice works fine, as usual

Best regards
by Armando
Mon Mar 11, 2024 3:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imagen en login? (SOLUCIONADO)
Replies: 10
Views: 319

Re: GetHostByName( GetHostName() )

Dear Byron, You may ask chatgpt and Google Gemini about it and both offer good advice: chatgpt: Enumerate Network Interfaces: Use the GetAdaptersInfo or GetAdaptersAddresses function to enumerate all network interfaces on your system. These functions provide information ...
by Antonio Linares
Wed Mar 06, 2024 9:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetHostByName( GetHostName() )
Replies: 1
Views: 128

Re: Por qué el error en este SELECT?

Mr. Rao: Thanks for your advice but I haven't success Here is my code SELECT HDR_ODC,HDR_FDE,HDR_CAN,HDR_DOL,HDR_TDC,HDR_SUR,HDR_IMS,HDR_TRA,HDR_VIA,HDR_EQU,HDR_NMN,HDR_PRV,HDR_PRO,HDR_CON,HDR_CDP,HDR_SOL,HDR_TOU,HDR_IMP,HDR_PDD,HDR_DSC,HDR_SUB,HDR_PDI,HDR_IVA,HDR_NET,HDR_RIS,HDR_IIS,HDR_RIV,HDR_IIV,HDR_FLE,HDR_TOT,HDR_PAG,HDR_CYV,HDR_MDO,HDR_ISS,HDR_EYH,HDR_IND,HDR_CAR,HDR_EENINTO ...
by Armando
Mon Mar 04, 2024 3:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Por qué el error en este SELECT?
Replies: 9
Views: 203

TUrlLink on Xbrowse

... final user having to open the order management and search for that person order number, i.e. you could open the schedule directly from the payment advice table.
by Silvio.Falconi
Tue Feb 27, 2024 12:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TUrlLink on Xbrowse
Replies: 3
Views: 185

Re: Create a Panel width a text

hi Silvio, As i told you i prefer use Say and not get i have use GET while i had Problem with FW_SayText() and (extra) PANEL :!: GET use MEMO READONLY NO SCROLL but you can use SAY or RTF too --- when Edit Item and copy / paste those 2 Lines, save 4 x Lines, it still display 2 Lines but using WORDW...
by Silvio.Falconi
Mon Feb 26, 2024 8:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 2908

Re: Data exchange between PC and Android device on the same loca

Arturo, If I may offer you some advice beforehand, then start your work with mod harbour from FIVETECH. Antonio has proven all along (I have been involved since 1994) that he solves problems for us and clears the obstacles out of the way. ...
by Otto
Fri Feb 23, 2024 8:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Data exchange between PC and Android device on the same loca
Replies: 17
Views: 541

Re: Data exchange between PC and Android device on the same loca

... regional platform. https://puon24.com/ Moreover, I only have in-house servers and just a 200/200 connection. I think we should ask Antonio for advice. Best regards, Otto
by Otto
Wed Feb 21, 2024 1:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Data exchange between PC and Android device on the same loca
Replies: 17
Views: 541

Re: RAO advice on using Mysql

Thanks Rao
excellent clarification

Maurizio
by Maurizio
Wed Feb 07, 2024 1:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 856

Re: RAO advice on using Mysql

oCn:RowSet( cSql, 100 ) means read first 100 records only Sameway oCn:RecSet( cSql, 100 ) also means read first 100 records only. But oCn:RecSet( cSql, -100 ) means read entire table with page size 100. RecSet does not read entire table atonce. That will take a very long wait time and also consume h...
by nageswaragunupudi
Wed Feb 07, 2024 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 856

Re: RAO advice on using Mysql

Thanks Rao ,
just what I was looking for :D .
What does -100 mean in oCn:RecSet( cSql, -100 )
I knowo Cn:RecSet( cSql, 100 ) but not with a negative sign

Regards Maurizio
by Maurizio
Wed Feb 07, 2024 8:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 856

Re: RAO advice on using Mysql

:ActiveConnections is only for ADO recordsets. In fwmaria lib, it is oRs:oCn. To change the sql, please make a new RecSet object, set it to oBrw:oDbf and then close the old RecSet object You may try this sample and use similar logic #include "fivewin.ch"function Main()   ...
by nageswaragunupudi
Wed Feb 07, 2024 4:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 856

Re: RAO advice on using Mysql

Hello RAO Since it is not possible to use filters with RecSet I am trying to close and reopen RecSet in xBrowse. I normally use WITH OBJECT oBrw:oRs         :Close()         :Source  := cNewSelectWithWhere          :ActiveConnection := oServer         :Open()ENDoBrw:Refresh()...
by Maurizio
Tue Feb 06, 2024 5:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 856

Re: RAO advice on using Mysql

Thanks RAO for the clear specification, and how to use RecSet.
Now we also know what methods are available.

Regards Maurizio
www.nipeservice.com
by Maurizio
Fri Feb 02, 2024 2:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 856

Re: RAO advice on using Mysql

METHODS: RecCount(), LastRec(), KeyCount(),RecNo(), KeyNo() GoTop(),GoBottom(),GoTo(nRec),KeyGoTo(nKey),Skip(n) FCount(),FieldPos(c),FieldName(),FieldLen(),FieldDec(),FieldType() FieldGet(),FieldPut() SetOrder(cSort,,lDescend) Save() Close() or End() --------------- NOT SUPPORTED: Seek(), Filter(),D...
by nageswaragunupudi
Fri Feb 02, 2024 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 856
Next

Return to advanced search