Search found 135 matches

by vilian
Mon Dec 30, 2024 2:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Lost connection to MySQL server during query
Replies: 40
Views: 15831

Re: Lost connection to MySQL server during query

Yes,
You can use bOnLostServer

* FWMariaConnection:
Reconnection logic improved when the app loses connection to the server.
New data bOnLostServer: If this codeblock is specified, it is called when the
application loses connection with the server.

Is there any way I can change the error message ...
by vilian
Thu Dec 26, 2024 11:15 am
Forum: FiveWin for Harbour/xHarbour
Topic: To all the FW family
Replies: 10
Views: 575

Re: To all the FW family

A Happy and healthy New Year to all!!!
by vilian
Mon Dec 09, 2024 5:50 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Java GetTime Function
Replies: 7
Views: 520

Re: Java GetTime Function

Thank you,
It worked with FW_DateToUnix() ;)
by vilian
Mon Dec 09, 2024 2:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Java GetTime Function
Replies: 7
Views: 520

Re: Java GetTime Function

I need to call this function:

PIXCD_ConsultarPixRecebidos(ADataInicio, ADataFim, ATxId, ACpfCnpj, PagAtual, ItensPorPagina, sResposta, esTamanho)

Where aDataInic and aDataFim are from DATE type. That i've declared by this way:

DLL32 FUNCTION PIXCD_ConsultarPixRecebidos(ADataInicio AS _DOUBLE ...
by vilian
Mon Dec 09, 2024 10:42 am
Forum: FiveWin for Harbour/xHarbour
Topic: Java GetTime Function
Replies: 7
Views: 520

Re: Java GetTime Function

Mr Rao,

When i tried HB_DateTime() - STOT("") the function i called is receiving this date 14/01/8637
by vilian
Fri Dec 06, 2024 6:40 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Java GetTime Function
Replies: 7
Views: 520

Java GetTime Function

Hi Guys,
Do you know if is there in Harbour/Fivewin any function like GetTime() from Java ?
Or
How could I convert a Date to a double value?
by vilian
Mon Nov 25, 2024 11:17 am
Forum: FiveWin for Harbour/xHarbour
Topic: Adding External DLL Calls
Replies: 8
Views: 2814

Re: Adding External DLL Calls

Good Morning Enrico,
Have you ever had success to use these functions with DATE parameters?
by vilian
Fri Nov 22, 2024 10:58 am
Forum: FiveWin for Harbour/xHarbour
Topic: Timer on a Dialog
Replies: 4
Views: 846

Re: Timer on a Dialog

Thank you Enrico,
It worked perfectly ;)
by vilian
Thu Nov 21, 2024 8:44 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Timer on a Dialog
Replies: 4
Views: 846

Timer on a Dialog

Hi Guys,
I'm trying create a Timer on a dialog by this way:


DEFINE DIALOG oDlg RESOURCE "TESTE01" OF oWnd

REDEFINE BITMAP oBmp ID 101 OF oDlg FILE (cQrc) ADJUST UPDATE
REDEFINE METER oMtr VAR nPerc TOTAL 100 ID 102 OF oDlg UPDATE

REDEFINE BUTTONBMP ID 105 OF oDlg ACTION ( oDlg:End ...
by vilian
Thu Nov 14, 2024 2:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: cloud or not cloud
Replies: 34
Views: 5588

Re: cloud or not cloud

Moving from DBF to MySql is not only a question of can access database on-line. MySql is stronger, safer and thanks to Mr Rao's work, easier to use than DBF.

With MySql you will be more productive and your system will work better.
by vilian
Tue Nov 12, 2024 8:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic: cloud or not cloud
Replies: 34
Views: 5588

Re: cloud or not cloud

Today is impossible word completely off-line. One way or another you will being exposed to hackers, virus etc...

Thanks god, the banks didn't think like you, or until now, we would be in their lines to get money and pay bills.
by vilian
Tue Nov 12, 2024 12:25 pm
Forum: FiveWin for Harbour/xHarbour
Topic: cloud or not cloud
Replies: 34
Views: 5588

Re: cloud or not cloud

Friends,
If we haven't had moved our systems to MySql, my company has already closed now. Thanks to mysql, our customers can access its data from anywhere, with only an instalation of a little front-end.

Now we are looking for a best way to move them completly to web.
by vilian
Thu Nov 07, 2024 7:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse having a extra space between footer and scrollbar
Replies: 3
Views: 473

Re: Xbrowse having a extra space between footer and scrollbar

Mr Rao is really great !!!
I'm always learning something reading his answers ;)

Thank you !!!
by vilian
Mon Oct 21, 2024 11:04 am
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDb how use locate for a date SOLVED
Replies: 5
Views: 549

Re: MariaDb how use locate for a date

I'm not Rao, sorry :)
But oRs:Locate() must be used with a xbase expression. So, you should to do something like this:

Code: Select all | Expand

    cLocate := " HIREDATE = CTOD( ' " + Dtoc(Date())+" ' ) "
   
   ? oRs:Locate(cLocate)
by vilian
Wed Oct 16, 2024 12:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: MySql and Encryption
Replies: 6
Views: 919

Re: MySql and Encryption

Hi Otto,
Thanks for your comment. When I used DBF/ADS files, I used to work with ADS encryption and it works very well.
But now, i need to do tis with MySql.