Search found 143 matches: wrappers

Return to advanced search

Re: FUNCIONAMIENTO WINDOWS 10

veo que usan verce, estoy agregando wrappers para optimizar en un .c pero no me deja compilar, marca Fatal: Too many MAP file names: C:\XHARBOUR\LIB\RDDADS.LIB, cuando antes los tenia en un .prg compilaba sin problemas
by Miguel Salas
Wed Nov 07, 2018 3:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FUNCIONAMIENTO WINDOWS 10
Replies: 4
Views: 1373

Re: Ribbonbar getting black

... in Gimp ( gimp.org ) and save it as a 24 bit alpha bitmap .. that may solve your render problem. I use the SetDlgGradient() function .. and create wrappers for different colors .. the SetDlgGradient() function needs to sit at the top of your program and will set the system wide Transparently = ...
by Rick Lipkin
Wed Sep 12, 2018 1:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbonbar getting black
Replies: 32
Views: 6089

Re: New FWH 18.04

... Customer to manage.... and you can forget about ANY optlock headaches and cranky dbf access on network shares. Rao has created a whole set of ado wrappers to simplify the connections, recordsets, etc .. see \source\function\adofuncs.prg for the syntax .. or you can do it the ole fashioned ansi ...
by Rick Lipkin
Sat Jun 09, 2018 3:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 18.04
Replies: 12
Views: 2703

Re: FW x SQL-Server?

... support ADO .. the link below is a good starting place to familiarize yourself with Sql and Ado .. Rao has done a good job using FW wrappers to simplify the connections and recordsets .. look in \source\function\Adofuncs.prg http://wiki.fivetechsoft.com/doku.php?id=ado-related_stuffs ...
by Rick Lipkin
Thu Feb 22, 2018 4:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FW x SQL-Server?
Replies: 4
Views: 788

Re: Clase con funciones para ADO

Here is my original post ( some years ago ) using native Microsoft Ado Class's and methods .. Rao has done a great job with the wrappers found in AdoFunc.Prg ... Here is the FiveWin Wili on ADO.

Rick Lipkin

http://wiki.fivetechsoft.com/doku.php?i ... ted_stuffs
by Rick Lipkin
Fri Sep 08, 2017 2:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase con funciones para ADO
Replies: 5
Views: 913

why Python ?

... February 2017. In less than one year, TensorFlow is a worldwide standard for AI. TensorFlow core is developed in C/C++ but the existing high level wrappers are coded in Python. So like it or not, we need to use some Python for now :-) We are building the TensorFlow language bindings for Harbour ...
by Antonio Linares
Tue Aug 15, 2017 12:26 am
 
Forum: Artificial Intelligence examples
Topic: why Python ?
Replies: 0
Views: 545

Re: Error from ADO

... necessarily ( physically ) linked back to the original data on the server especially using the opendkeyset cursor type If you are using the FW_Ado wrappers ( adofuncs.prg ) it uses the 2 parameter ( if not specified ) or adOpenDynamic for the Cursor Type .. there are pros and cons on Open and Dynamic ...
by Rick Lipkin
Sat Jul 22, 2017 1:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error from ADO
Replies: 14
Views: 3503

Re: connect to SQL Server 2008

Damianodec This is the code to create a global connection for Sql Server and then to use that connection object to open a recordset .. I will mention that Rao has created many Ado FW_Wrappers that simplify this code ... Rick Lipkin xPROVIDER := "SQLOLEDB"xSOURCE    := "Your Server&quo...
by Rick Lipkin
Fri Jul 07, 2017 2:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: connect to SQL Server 2008
Replies: 9
Views: 1565

3rd party c wrapper functions for harbour

... 3rd party library .dll to OCR tif images. I chose Transym http://www.transym.com . In order to access their functions I've written .c wrappers. Currently my sample app GPFs. Can someone help with harbour's vm .c interface? Here is my self-contained reduced sample code: //request hb_gt_win ...
by reinaldocrespo
Sat Mar 25, 2017 5:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 3rd party c wrapper functions for harbour
Replies: 26
Views: 7392

Re: Create a file with a stored procedure in Advantage Database

... questions most people from Harbour have about ADS. You will see on this .prg how to use stored procedures in default existence of actual ACE wrappers on rddads.lib. “Building rddads.lib.pdf" is just text explaining how to build the necessary .libs to use ACE. Hope that helps; Reinaldo.
by reinaldocrespo
Sat Jan 21, 2017 10:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a file with a stored procedure in Advantage Database
Replies: 21
Views: 6437

Re: Dialog Color / Gradient

Darrell I have created some wrappers that use SetDlgGradient() function .. Some ideas here for your consideration .. Rick Lipkin //---------------------------Func BlueGreenGrad()Local xGrad4 :=  {{ 1.00,14671839, ...
by Rick Lipkin
Tue Dec 20, 2016 2:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dialog Color / Gradient
Replies: 20
Views: 5938

Re: ADO SQL slow after idle for a while

... you have made your connection .. just pass oCn instead of your connection string. There are other ways you can do the same thing using the FWAdo wrappers .. Rao can help you there. Rick Lipkin Local xProvider,xSource,xCatalog,xPassword,cString,oRsPublic oCnxPROVIDER := "SQLOLEDB"   ...
by Rick Lipkin
Fri Nov 04, 2016 2:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO SQL slow after idle for a while
Replies: 5
Views: 1173

Re: ADO : Building columns , NULL ... DEFAULT

... .. I am a bit old fashioned and like to write out my code without taking too many shortcuts .. understand Rao has created some VERY nice Ado wrappers and can simplify the code below .. however, Consider this example: // Assuming you have a connection to the database oCn// easier to read if ...
by Rick Lipkin
Thu Sep 22, 2016 2:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO : Building columns , NULL ... DEFAULT
Replies: 7
Views: 1468

Re: HowTo ADS from (x)Harbour

Patricio; ¿Que tál? On that same directory you will find my adsfunc.c. I had to add many of the ACE wrappers. AdsCloseSqlStatement as well as many others are present on my adsfunc.c. I've been trying to have the Harbour developers commit my changes but so far I haven't even ...
by reinaldocrespo
Thu Nov 05, 2015 12:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HowTo ADS from (x)Harbour
Replies: 14
Views: 3121

HowTo ADS from (x)Harbour

... questions most people from Harbour have about ADS. You will see on this .prg how to use stored procedures in default existence of actual ACE wrappers on rddads.lib. It also shows how to create an ADS Data Dictionary. For your convenience, these samples work with the "LOCAL"/free ...
by reinaldocrespo
Mon Nov 02, 2015 10:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HowTo ADS from (x)Harbour
Replies: 14
Views: 3121
PreviousNext

Return to advanced search