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
Search found 43 matches
- Tue Nov 26, 2024 6:33 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: ActiveX Equivalentes de funciones FoxPro en Fivewin
- Replies: 18
- Views: 3203
- Tue Nov 26, 2024 6:23 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: ActiveX Equivalentes de funciones FoxPro en Fivewin
- Replies: 18
- Views: 3203
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?
Poderia informar donde descargar la DLL para hacer pruebas y providenciar un ejemplo a FiveWin?
- Tue Nov 26, 2024 2:35 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Happy birthday dear Antonio
- Replies: 11
- Views: 1595
Re: Happy birthday dear Antonio
Happy birthday Antonio, I wish all good for you my friend!!!
- Fri Nov 08, 2024 12:48 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: xHarbour can produce HTTP server ?
- Replies: 11
- Views: 2036
Re: xHarbour can produce HTTP server ?
Can you explain what you want to do with more detail?
Then we can implement it on FiveWin.
Then we can implement it on FiveWin.
- Thu Oct 31, 2024 11:48 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Startup function
- Replies: 29
- Views: 2924
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 ...
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 ...
- Thu Oct 10, 2024 12:38 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: TWebView vs. TWebView2
- Replies: 7
- Views: 674
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 ...
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 ...
- Thu Oct 10, 2024 12:34 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: TWebView vs. TWebView2
- Replies: 7
- Views: 674
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 ...
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 ...
- Fri Aug 16, 2024 2:46 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: OLE Errors
- Replies: 10
- Views: 2282
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
- Fri Jul 26, 2024 1:38 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Propuesta para que hagan un curso virtual FW
- Replies: 302
- Views: 44396
Re: Propuesta para que hagan un curso virtual FW
Thank you Otto
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
- Fri Jul 26, 2024 3:12 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Propuesta para que hagan un curso virtual FW
- Replies: 302
- Views: 44396
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
Lamentablemente ya tengo viaje en esa fecha.
Esperaré hasta que la fecha esté 100% definida para ver si puedo participar.
Gracias
- Tue Jul 23, 2024 3:43 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Color saturation
- Replies: 14
- Views: 1181
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 ...
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 ...
- Sat Jul 13, 2024 8:37 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: hbwin.lib
- Replies: 12
- Views: 1215
Re: hbwin.lib
You are looking at the wrong folder.
You should check inside your BCC folder and not on the harbour folder.
also you can run it from your cmd
cd \
dir /s/a odbc32.lib
and you will find it.
Let me know if does it solve the problem for you
You should check inside your BCC folder and not on the harbour folder.
also you can run it from your cmd
cd \
dir /s/a odbc32.lib
and you will find it.
Let me know if does it solve the problem for you
- Thu Jul 11, 2024 11:51 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: hbwin.lib
- Replies: 12
- Views: 1215
Re: hbwin.lib
ODBC32 is a library from your C compiler,
if you are using BCC:
C:\bcc7\lib\psdk
I use MSVC
C:\Program Files (x86)\Windows Kits\10\Lib\10.0.26100.0\um\x86
if you are using BCC:
C:\bcc7\lib\psdk
I use MSVC
C:\Program Files (x86)\Windows Kits\10\Lib\10.0.26100.0\um\x86
- Thu Jul 11, 2024 4:45 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: hbwin.lib
- Replies: 12
- Views: 1215
Re: hbwin.lib
It is a harbour library,
you can find that inside your harbour\lib\win\msvc\hbwin.lib
( instead msvc it can be bcc, msvc64, mingw etc ) it depend your compiler c.
you can find that inside your harbour\lib\win\msvc\hbwin.lib
( instead msvc it can be bcc, msvc64, mingw etc ) it depend your compiler c.
- Wed Jul 10, 2024 7:36 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Proposal for them to do a virtual FW course
- Replies: 2
- Views: 446
Re: Proposal for them to do a virtual FW course
It is an excellent idea.
Some suggestion too is to the users say what they would like to be included to the fivewin ( some new controls, features etc ).
Some suggestion too is to the users say what they would like to be included to the fivewin ( some new controls, features etc ).