Search found 208 matches: implib

Return to advanced search

Que warnings te aparecen ? Los warnings (avisos) son importantes pues proporcionan informacion valiosa para mejorar el codigo.

Si no usas ADS, entonces puedes comentar las lineas que usan ACE32.lib desde build.bat

Si deseas construir ACE32.lib hazlo asi:
implib.exe ace32.lib ace32.dll
by Antonio Linares
Sat Jun 14, 2008 8:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Warning en clip.log y ace32.lib
Replies: 1
Views: 392

Se genera de esta forma:

implib.exe ace32.lib ace32.dll

implib.exe es una herramienta de los compiladores de C.
by Antonio Linares
Fri Jun 13, 2008 8:30 am
 
Forum: FiveWin para CA-Clipper
Topic: ACE32.LIB
Replies: 2
Views: 949

Jeff,

Try this:

implib.exe ace32.lib ace32.dll
by Antonio Linares
Sat Jan 05, 2008 10:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS Local Server
Replies: 4
Views: 1090

Please rebuild your ACE32.lib doing:

implib.exe ACE32.lib ACE32.dll
by Antonio Linares
Wed Dec 05, 2007 9:17 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: fw712\samples\buildh.bat
Replies: 3
Views: 1072

Vilian,

> does not have the Ace32.lib archive

Thats because you have to create that library yourself from the used ACE32.dll:

implib.exe Ace32.lib Ace32.dll
by Antonio Linares
Fri Nov 30, 2007 7:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error after update for FWH 7.11
Replies: 12
Views: 2124

Gracias Antonio, pero....:(

Susy, Tienes que enlazar RDDADS.LIB y ACE32.LIB ACE32.LIB lo generas a partir de ACE32.DLL haciendo: implib.exe ACE32.LIB ACE32.DLL Gracias Antonio,pero no logre compilar bien el testxbrw.prg, me marca error no habra un ejemplo con los DBFS pues,que no tenga que usar ACE32.DLL. ...
by Susy
Tue Nov 13, 2007 8:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Hola amigos sobre Testxbrw.prg
Replies: 3
Views: 1339

... unless you include C functions in the DLL that take parameters and then call the PRG-level code. To do static linking, do this to create the .lib: implib harbour.lib harbour.dll For the Borland C platform, use that library and import32.lib and cw32.lib from Borland, and you are ready to go. See ...
by Antonio Linares
Mon Nov 12, 2007 9:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dll Question
Replies: 1
Views: 884

Susy,

Tienes que enlazar RDDADS.LIB y ACE32.LIB

ACE32.LIB lo generas a partir de ACE32.DLL haciendo:

implib.exe ACE32.LIB ACE32.DLL
by Antonio Linares
Thu Nov 08, 2007 6:24 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Hola amigos sobre Testxbrw.prg
Replies: 3
Views: 1339

... unless you include C functions in the DLL that take parameters and then call the PRG-level code. To do static linking, do this to create the .lib: implib harbour.lib harbour.dll For the Borland C platform, use that library and import32.lib and cw32.lib from Borland, and you are ready to go. See ...
by Antonio Linares
Sun Oct 07, 2007 5:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make a DLL
Replies: 19
Views: 3558

Re: MySql - TMySql

Loco,

tienes que aplicar lo siguiente.

ubicar la libmysql.dll
aplicar: implib libmysql.lib libmysql.dll
y esa lib resultante, incluirla en tu proyecto.

por otro lado, la dll libmysql.dll debe de estar en la misma carpeta de tu EXE

espero te sirva
by wmormar
Wed Sep 26, 2007 4:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql - TMySql
Replies: 3
Views: 1010

Marc,

implib.exe ACE32.LIB ACE32.DLL
by Antonio Linares
Fri Sep 14, 2007 9:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW709 TESTXBRW-sample
Replies: 5
Views: 1004

Re: Ayuda con 32 bits Urgente

... del ACE32.DLL 1) Consigue un ACE32.DLL de la version de ADS que estés usando (lo encuentras en la carpeta del Advantage Data ARchitech) 2) Con el Implib de borland crea la libreria IMPLIB ACE32.LIB ACE32.DLL Y listo 2. En 16 bits yo podia consultar si en el disco duro existia un archivo de la ...
by mantonio_08
Thu Sep 06, 2007 2:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con 32 bits Urgente
Replies: 2
Views: 758

Re: Ayuda con 32 bits Urgente

... del ACE32.DLL 1) Consigue un ACE32.DLL de la version de ADS que estés usando (lo encuentras en la carpeta del Advantage Data ARchitech) 2) Con el Implib de borland crea la libreria IMPLIB ACE32.LIB ACE32.DLL Y listo 2. En 16 bits yo podia consultar si en el disco duro existia un archivo de la ...
by R.F.
Thu Sep 06, 2007 4:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con 32 bits Urgente
Replies: 2
Views: 758

... Where to get them: ACE32.LIB comes from the ACE32.DLL, you will need to "convert" the ACE32.DLL into ACE32.LIB using a Borland C++ tool called IMPLIB.EXE (comes in the bin directory of your C++ installation), Syntax: IMPLIB ACE32.LIB ACE32.DLL After that you will have a new file called ACE32.LIB ...
by R.F.
Sat Aug 11, 2007 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Which the best choice for Client Server for DBFCDX?
Replies: 9
Views: 2656

Tienes que enlazar infounz.lib que puedes obtener desde infounz.dll (está en el directorio DLL):

implib.exe infounz.lib infounz.dll

y finalmente tener la DLL infounz.dll en donde esté tu aplicación
by Antonio Linares
Sat Aug 11, 2007 9:52 am
 
Forum: FiveWin para CA-Clipper
Topic: Ayuda con Zip
Replies: 1
Views: 877
PreviousNext

Return to advanced search