Search found 143 matches: wrappers

Return to advanced search

Re: *** Curso de C para programadores Harbour.

Qué ganas de llegar a los "wrappers" :D :D
by AngelSalom
Tue Jun 29, 2021 7:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: *** Curso de C para programadores Harbour.
Replies: 141
Views: 18401

Re: Webview2 en Fivewin

... tuya ? El enlace que indicas, es a un buen ejemplo para construir el visor (viewer.exe) pero en C Existe alguna clase harbour para acceso a los wrappers de webview2 ? Al estilo FW DEFINE WINDOW oWnd  oWebV := TWebView2():New("title")  oWnd:oClient := oWebVACTIVATE ...
by Joaquim Ferrer
Sat Feb 20, 2021 7:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Webview2 en Fivewin
Replies: 6
Views: 1445

Re: Select...SQL

Dario Several ways you can do this .. both use RecordSets .. Rao has created a set of ADO wrappers in \source\function\AdoFuncs.prg .. or oRs := TOleAuto():New( "ADODB.Recordset" )oRs:CursorType     := 1        // ...
by Rick Lipkin
Sat Nov 28, 2020 4:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select...SQL SOLUCIONADO
Replies: 3
Views: 441

Re: Intentando de nuevo el uso de SQL

MS Access and MS Sql Server can use opportunistic locking .. Our Friend Rao has developed ADO Sql Wrappers that simplify the code below ... oRsEmp := TOleAuto():New( "ADODB.Recordset" )oRsEmp:CursorType     := 1        // ...
by Rick Lipkin
Sat Oct 17, 2020 7:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Intentando de nuevo el uso de SQL - Solucionado
Replies: 5
Views: 917

Re: FW MS-SQL Server

... "+xSource   MsgInfo( Saying )   RETURN(.F.)END TRY  Or have a look at \source\function\adofuncs.prg ... simplified ado wrappers Rick Lipkin
by Rick Lipkin
Fri Sep 18, 2020 1:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW MS-SQL Server
Replies: 5
Views: 832

Re: How to use HBMK2

How do you access the DLLs functions ?

1. Using an import library and using some wrappers functions ? (static linking)

2. Using DLL FUNCTION ... commands ? (dynamic linking)
by Antonio Linares
Thu May 28, 2020 11:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to use HBMK2
Replies: 12
Views: 1183

Re: Integrar SDK

... parámetros que recibe y lo que devuelven. Además se necesita el fichero .h donde se define el prototipo. - Una vez tengas eso deberías de hacer wrappers de las funciones que vas a usar en tus programas. - si tienes xharbour 32 bits el SDK también debe ser 32 bits. Espero haberte ayudado.
by xmanuel
Tue Jan 21, 2020 10:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Integrar SDK
Replies: 6
Views: 1040

Re: clarification respect a recordset

As Rao mentions .. many of the methods he has created handy wrappers .. to dig a bit deeper .. have a look and this fivewin wiki

https://wiki.fivetechsoft.com/doku.php? ... ted_stuffs

Rick Lipkin
by Rick Lipkin
Sat Aug 31, 2019 10:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: clarification respect a recordset
Replies: 14
Views: 3319

Re: libmariadb.dll vs. libmysql.dll

... any problems. They are fully compatible with each other. Documentation https://dev.mysql.com/doc/refman/5.6/en/c-api-functions.html FWH provided wrappers to all and it is desirable to use FWH connection methods which are fully documented in the Wiki and also in http://forums.fivetechsupport.com/viewtopic.php?f=3&t=33286 ...
by nageswaragunupudi
Tue May 07, 2019 5:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: libmariadb.dll vs. libmysql.dll
Replies: 6
Views: 1413

Re: AYUDA CON DLL IMG2PDF

Hola, Hace varios años utilice Image2PDF.DLL, estos son los wrappers que implementé por si te sirven de ayuda: DLL32 Function I2PDF_AddImage(image as LPSTR);AS LONG PASCAL FROM "I2PDF_AddImage" LIB "IMAGE2PDF.DLL"// Public Shared ...
by George
Tue Apr 30, 2019 10:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA CON DLL IMG2PDF
Replies: 5
Views: 1167

Re: Convert DBF 2 SQL

... https://wiki.fivetechsoft.com/doku.php?id=ado-related_stuffs [/url] Rao ( see above post ) has done some great work in creating many of the ADO wrappers you can use to simplify your connections and recordsets .. look at your FiveWin folder \Samples\Source\Function\AdoFuncs.prg Like you .. I ...
by Rick Lipkin
Thu Mar 21, 2019 2:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Convert DBF 2 SQL
Replies: 9
Views: 2568

Re: strategies

Hi Otto , Below are the two WebGUI Framework http://www.unigui.com/ This is Delphi Wrappers on Sencha GUI framework. If FWH has also same kind wrappers to Sencha or Other HTML GUI, probably https://dhtmlx.com/ that would be great. https://vaadin.com/ ...
by shri_fwh
Mon Feb 25, 2019 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: strategies
Replies: 34
Views: 8160

Re: xbase ahora inestable, lenta, error Status_Lock_Not_Granted

... SQL query syntax and never looked back and I have NO problems with performance .. To make the leap to ADO easier Rao has created a series of ADO wrappers that make manipulating Sql management very easy and simple .. Use Ms Access .mdb for local or portable apps or any RDMS like Sql Server with ...
by Rick Lipkin
Tue Jan 22, 2019 10:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbase ahora inestable, lenta, error Status_Lock_Not_Granted
Replies: 16
Views: 3702

FWH 18.12 Window/Dialog:SaveState() and RestoreState()

... hWnd ) --> cState // Binary string of 44 bytes lengthSetWindowPlacement( hWnd, cState)  Both these functions are wrappers to Windows API functions of the same names. More information about these functions can be found at: https://docs.microsoft.com/en-us/windows/desktop/api/winuser/nf-winuser-getwindowplacement ...
by nageswaragunupudi
Sat Dec 29, 2018 5:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.12 Window/Dialog:SaveState() and RestoreState()
Replies: 0
Views: 620

Re: Iniciando con ADO

... at in your FiveWin install under \function and have a look at the file adofuncs.prg .... a nice set of various RDMS SQL connection and recordset wrappers that Rao has put together .. Here is a link that may help in doing it the old fashioned way ... and understanding how ADO works and various ...
by Rick Lipkin
Mon Nov 26, 2018 4:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Iniciando con ADO
Replies: 5
Views: 1610
PreviousNext

Return to advanced search