Search found 143 matches: wrappers

Return to advanced search

New FTDN October/Octubre 2023 (FWH 23.10)

... from a webview control. * New: samples\copilot.prg shows how to call Windows Copilot from our FWH apps. * New: functions WinUpper() and WinLower() wrappers to win32 API CharUpper() and CharLower() works with both ANSI and UTF8 encodings. Useful for WU language accented characters like Umlauts. ...
by Antonio Linares
Thu Nov 02, 2023 9:53 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3552

Re: TGet() - UTF8 encoding fails [Unsolved]

... "ÜÄÖ" inside the Get. In the version to be released we are providing two new functions, WinUpper() and WinLower(). These functions are wrappers to Windows API functions CharUpper() and CharLower(). These functions work both with ANSI/UTF8 encoded texts. If the parameter is ANSI encoded ...
by nageswaragunupudi
Sat Oct 14, 2023 5:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet() - UTF8 encoding fails [Solved]
Replies: 20
Views: 1540

Re: SetDlgGradient

... DS_MODALFRAME, WS_POPUP,       ;      WS_CAPTION, WS_SYSMENU, WS_MINIMIZEBOX )  Above is how I code the gradients and use them as function wrappers to make the coding easier .. Rick Lipkin
by Rick Lipkin
Fri Sep 29, 2023 9:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetDlgGradient
Replies: 10
Views: 751

Re: Lentitud al abrir una dbf en red

... much like the syntax of TDatabase .. have a look at the FW samples and the example AdoRick.prg ... Rao has also simplified the ADO syntax into FW wrappers ....\source\function\adofuncs.prg which are already built into FiveWin .. there is no need to include adofuncs.prg into your link list .. If ...
by Rick Lipkin
Sat Jul 08, 2023 1:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Lentitud al abrir una dbf en red
Replies: 31
Views: 1377

Transym OCR for Harbour

... the license which is good in one single pc. Installing the license is cumbersome to say the least. For these reasons I plan to write these wrappers and class for Tesseract sometime in the near future. In the meantime, here is what you need to work with Transym OCR. First the actual Harbour ...
by reinaldocrespo
Thu Jun 01, 2023 10:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transym OCR for Harbour
Replies: 1
Views: 170

Re: returning a wchar_t variable back to harbour function

... another way to return a wide string back to Harbour or I will have to convert that wide string but that is something I rather not do. On all my wrappers I had ignored wide strings. But now I realize I will have to fix that but wide strings a new to me. Thank you.
by reinaldocrespo
Wed May 24, 2023 12:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: returning a wchar_t variable back to harbour function
Replies: 4
Views: 251

Re: DLLCALL under Fivewin

hi Antonio, You have to write the Harbour wrappers for those C functions. In example for function BOOL DismountVolume( HANDLE hVolume ): i have done what you told me and add CODE    HB_FUNC( DISMOUNTVOLUME )    {       hb_retl( ...
by Jimmy
Fri Dec 09, 2022 1:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLCALL under Fivewin
Replies: 45
Views: 2530

Re: DLLCALL under Fivewin

You have to write the Harbour wrappers for those C functions. In example for function BOOL DismountVolume( HANDLE hVolume ):
Code: Select all  Expand view
HB_FUNC( DISMOUNTVOLUME )
{
   hb_retl( DismountVolume( hb_parnll( 1 ) ) );
}
by Antonio Linares
Thu Dec 08, 2022 8:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLCALL under Fivewin
Replies: 45
Views: 2530

Re: ADO RDD xHarbour

... connect to MS Sql Server, MS Access and ( most ) all the other Sql databases as well ... Rao has made the ADO connection syntax with many FiveWin wrappers .. Look in the \source\functions\adofuncs.prg .. Thanks Rick Lipkin Rick, In your experience with mainly viewing large Xbrowse setups with ...
by Marc Venken
Thu Apr 21, 2022 4:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 441904

Re: ADO RDD xHarbour

... connect to MS Sql Server, MS Access and ( most ) all the other Sql databases as well ... Rao has made the ADO connection syntax with many FiveWin wrappers .. Look in the \source\functions\adofuncs.prg .. Thanks Rick Lipkin
by Rick Lipkin
Wed Apr 20, 2022 12:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 441904

Re: ADS - The future is <sadly> now so where do you go ?

... is that you have to think of ADO in terms of an Objected oriented class and methods. Rao has simplified much of the ADO syntax with many FiveWin wrappers .. Look in the \source\functions\adofuncs.prg .. I use Sql Server for large corporate databases and MS Access as a local solution much like ...
by Rick Lipkin
Wed Apr 20, 2022 12:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS - The future is <sadly> now so where do you go ?
Replies: 26
Views: 2719

Re: Using WebView with Borland !!!

Antonio Linares wrote:Hakan,

Yes, it is possible to change position, size and title of the webview control

There are still a few wrappers to implement, if you need them, just let us know it


Yes. I need them.
by Horizon
Thu Feb 03, 2022 11:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using WebView with Borland !!!
Replies: 91
Views: 7382

Re: Using WebView with Borland !!!

Hakan,

Yes, it is possible to change position, size and title of the webview control

There are still a few wrappers to implement, if you need them, just let us know it
by Antonio Linares
Thu Feb 03, 2022 10:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using WebView with Borland !!!
Replies: 91
Views: 7382

Re: firmar pdf con firma electronica .p12 en disco duro

Hola Wilson !!!

Quizás necesitemos wrappers para Harbour de algunas funciones C.

https://github.com/openssl/openssl/tree/master/demos

Saludos,
by Baxajaun
Wed Feb 02, 2022 7:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: firmar pdf con firma electronica .p12 en disco duro
Replies: 6
Views: 790

Re: Advantage Database Server

... with every method you need to manipulate just about any Sql Database ( ms access, ms Sql Server, Oracle ... etc ) Rao has created a set of FW ado wrappers to make the syntax much easier .. look at AdoFuncs.Prg located in source\function .. also there is a full MDI Ado example I wrote \samples\AdoRick.prg ...
by Rick Lipkin
Mon Jan 24, 2022 1:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Advantage Database Server
Replies: 32
Views: 3401
Next

Return to advanced search