Search found 160 matches

by Lailton
Thu Jan 23, 2025 8:57 pm
Forum: mod_harbour
Topic: Building modharbour with ADS on Linux
Replies: 10
Views: 2193

Re: Building modharbour with ADS on Linux

I need it for harbour
by Lailton
Thu Jan 23, 2025 1:19 am
Forum: mod_harbour
Topic: Building modharbour with ADS on Linux
Replies: 10
Views: 2193

Re: Building modharbour with ADS on Linux

Nice!

Can you tell me where can I download lib necessary to build?

can you share an example doing the connection and an while?

thank you



Hi Lailton ,
i'm using ADS client on Linux machine ( Ubuntu distrib. ) .
My apps connect to ADS SERVER 11 release install on Windows Server-
I use it with ...
by Lailton
Fri Jan 17, 2025 3:03 am
Forum: FiveWin for Harbour/xHarbour
Topic: Agent AI to document code
Replies: 5
Views: 391

Re: Agent AI to document code

Does it works?

:shock:


agentdoc.prg
#include "FiveWin.ch"

REQUEST DBFCDX

function Main()

local aFiles := Directory( "c:\fwh\source\classes\*.prg" )
local oChat := TDeepSeek():New(), aFile
local cPrompt := "document this code, explaining what this Class is about," + ;
" listing all the ...
by Lailton
Fri Jan 17, 2025 3:01 am
Forum: mod_harbour
Topic: Building modharbour with ADS on Linux
Replies: 10
Views: 2193

Re: Building modharbour with ADS on Linux

Hi Giuliano,

Do you still using ADS with Linux?
I would like to try it on Linux Debian, do you think that is it compatible?
Are there an email or skype to contact you ( if possible )?

Thank you


Hi Reinaldo,
here my experience using mod_harbour + ADS on Linux

I have been using mod harbour ...
by Lailton
Tue Nov 26, 2024 6:33 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ActiveX Equivalentes de funciones FoxPro en Fivewin
Replies: 18
Views: 3892

Re: ActiveX Equivalentes de funciones FoxPro en Fivewin

Please note that Fast Report for COM/ActiveX is now End of Life and is not available for purchase. Product support for existing customers will continue until 31st December 2013.

https://www.componentsource.com/product ... om-activex
by Lailton
Tue Nov 26, 2024 6:23 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ActiveX Equivalentes de funciones FoxPro en Fivewin
Replies: 18
Views: 3892

Re: ActiveX Equivalentes de funciones FoxPro en Fivewin

Hola Albeiro,

Poderia informar donde descargar la DLL para hacer pruebas y providenciar un ejemplo a FiveWin?
by Lailton
Tue Nov 26, 2024 2:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: Happy birthday dear Antonio
Replies: 11
Views: 1946

Re: Happy birthday dear Antonio

Happy birthday Antonio, I wish all good for you my friend!!!
by Lailton
Fri Nov 08, 2024 12:48 am
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour can produce HTTP server ?
Replies: 11
Views: 2357

Re: xHarbour can produce HTTP server ?

Can you explain what you want to do with more detail?
Then we can implement it on FiveWin.
by Lailton
Thu Oct 31, 2024 11:48 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Startup function
Replies: 29
Views: 3435

Re: Startup function

I think that it is to replace the main function with something else, not his case.
he want to use the main function but his build list the first one dont contains the main function and it is inside second or so on.

Is it Enrico?

Does it works on Harbour?

Dear Enrico,

I am not sure about it ...
by Lailton
Thu Oct 10, 2024 12:38 am
Forum: FiveWin for Harbour/xHarbour
Topic: TWebView vs. TWebView2
Replies: 7
Views: 894

Re: TWebView vs. TWebView2

Hola Leandro,

Que limitacion tiene en lo webview2?
tiene algun recurso que te falta? avisame que lo voy a revisar y implementar-lo.

Nota:
El method bOnBind ja esta implementado.



Ruth buenas tardes, como estas?

Desde nuestro punto de vista deberías esperar un poco a que webview2 este mas ...
by Lailton
Thu Oct 10, 2024 12:34 am
Forum: FiveWin for Harbour/xHarbour
Topic: TWebView vs. TWebView2
Replies: 7
Views: 894

Re: TWebView vs. TWebView2

Hi Ruth,

your code is correct:


oWebView = TWebView2():New( oWnd )


do you have any error with it?

Dear friends,

I have a project where this is working fine
oWebView := TWebView():New(, hWnd)

Now I wanted to go further and use
oWebView = TWebView2():New( oWnd )

but then it doesnt ...
by Lailton
Fri Aug 16, 2024 2:46 am
Forum: FiveWin for Harbour/xHarbour
Topic: OLE Errors
Replies: 10
Views: 2401

Re: OLE Errors

Can you try it?

Code: Select all | Expand

try
    oOutlook := CREATEOBJECT("Outlook.Application")
catch
    oOutlook := nil
end

if hb_isObject( oOutlook )
    ? "ok"
else
    ? "err"
endif

 
:D
by Lailton
Fri Jul 26, 2024 1:38 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Propuesta para que hagan un curso virtual FW
Replies: 302
Views: 59201

Re: Propuesta para que hagan un curso virtual FW

Thank you Otto :D
Otto wrote:Dear Lailton,

If you travel to Europe and possibly to Austria, you absolutely must visit us.
Let me know and I will send you brochures and organize your stay.

Best regards,
Otto
by Lailton
Fri Jul 26, 2024 3:12 am
Forum: FiveWin para Harbour/xHarbour
Topic: Propuesta para que hagan un curso virtual FW
Replies: 302
Views: 59201

Re: Propuesta para que hagan un curso virtual FW

Leandro,

Lamentablemente ya tengo viaje en esa fecha.
Esperaré hasta que la fecha esté 100% definida para ver si puedo participar.

Gracias
by Lailton
Tue Jul 23, 2024 3:43 am
Forum: FiveWin for Harbour/xHarbour
Topic: Color saturation
Replies: 14
Views: 1259

Re: Color saturation

You can use it:
Hex: #d3d3d3
Int: 13882323


? hb_jsonEncode( int2rgb( 13882323 ) )

function Int2RGB( nColor )

local aRGB := { 0, 0, 0 }

aRGB[1] := Int( nColor / 65536 )
aRGB[2] := Int( ( nColor / 256 ) % 256 )
aRGB[3] := Int( nColor % 256 )

return aRGB

RGB Expected { 211, 211, 211 ...