Search found 336 matches: loadlibrary

Return to advanced search

Re: ¿ Por usar BWCC32.DLL no funciona EXCEL en el Preview ?

Usas esto en tu MENU PRINCIPAL? Se no, no usas BORLAND.    LOCAL hBorland   hBorland := LoadLibrary('BWCC32.DLL')   BWCCRegister( GetResources() )//-----------------------------------------------------------------------------DLL32 FUNCTION BWCCRegister( ...
by wyerco613
Wed Jun 26, 2019 10:47 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿ Por usar BWCC32.DLL no funciona EXCEL en el Preview ?
Replies: 5
Views: 774

Re: Rpreview issues - PDF

Mr. Tim

Please try using LoadLib32() instead of LoadLibrary()
by nageswaragunupudi
Wed Apr 24, 2019 2:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rpreview issues - PDF
Replies: 58
Views: 7810

Re: Rpreview issues - PDF

... FROM "I2PDF_MakePDF" LIB hLib  Note: @ r,c PRINT commands are translated to :SayText() calls. You use LoadLib32( ) and I'm using LoadLibrary( ) When I used LoadLib32(), it is working correctly. When I changed to LoadLibrary() no pdf is generated but an hb_out.log file is generated ...
by nageswaragunupudi
Tue Apr 23, 2019 5:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rpreview issues - PDF
Replies: 58
Views: 7810

Re: Rpreview issues - PDF

Vilian, I have tried your code which is almost identical to mine. The differences: You use LoadLib32( ) and I'm using LoadLibrary( ) You are using the additional call: iErr := I2PDF_MetaTextFitBoundingRect() When I run it with your setup, I get 7 pop-up boxes saying Error: 0. Loading: ...
by TimStone
Tue Apr 23, 2019 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rpreview issues - PDF
Replies: 58
Views: 7810

Re: QRCODE

... #Define DC_CALL_STD 0x0020 FUNCTION Generar_QR(cStr,cFile) LOCAL nResp LOCAL qrDLL qrDLL := LoadLibrary("QRCodelib.Dll" ) nResp := DllCall(qrDLL,DC_CALL_STD,"FastQRCode",cStr,cFile) FreeLibrary(qrDLL) RETURN (NIL)
by jnavas
Wed Dec 12, 2018 10:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: QRCODE
Replies: 12
Views: 3818

Re: Utilizar funciones de una dll con harbour

... de FW function GetTextW( nHandle,cT,nMax ) ; local _hDLL := If( ValType( "user32.dll" ) == "N", "user32.dll", LoadLibrary( "user32.dll" ) ) ; local uResult ; local cFarProc ; if Abs( _hDLL ) > 32 ; cFarProc = GetProcAdd( _hDLL, If( Empty( "GetWindowTextA" ...
by Xevi
Mon Dec 10, 2018 8:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Utilizar funciones de una dll con harbour
Replies: 6
Views: 1364

Re: FTP with Harbour / MSVC / FWH issues

Another , how use ftp over TLS ? hLib = LOADLIBRARY( "wininet.dll" ) hInternet := INETOPEN( "Anystring", 1, 0, 0, 0 ) hConnect := INETCONNECT( hInternet, "www.xtech.com.cn",21, "xxx@xtech.com.cn", "erp6.5", ...
by ShumingWang
Wed Jun 27, 2018 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP with Harbour / MSVC / FWH issues
Replies: 8
Views: 2262

FTP with Harbour / MSVC / FWH issues

... n4 AS LONG, n5 AS LONG,;    n6 AS LONG ) AS LONG PASCAL ;    FROM "InternetConnectA" LIB iDLL  iDLL is defined: PRIVATE iDLL := LoadLibrary( "wininet.dll" ) As I said, this code is fine with xHarbour, but not Harbour. I've tried other approaches but all are problematic. ...
by TimStone
Tue Jun 19, 2018 11:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP with Harbour / MSVC / FWH issues
Replies: 8
Views: 2262

Lectura de tarejtas Sin contacto 1k MIdfare.

... _Vueltas:=0 LOCAL cDllName:="SCLib.DLL" ,_cuantos:=0 lOCAL Block := 5 , Fsalir1:=.T. ,fRetCode1,fRetCode2 ,Datos:=1 ACR120libHandle2 := LoadLibrary(cDllName) do while Fsalir1 fRetCode1:=SCLeer() IF fRetCode1==1 fRetCode2:= SCGrabar(Block,Datos) IF fRetCode2==1 alert("EXITO") ...
by Busmatic_wpb
Mon Feb 12, 2018 2:17 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Lectura de tarejtas Sin contacto 1k MIdfare.
Replies: 0
Views: 779

Re: access to window via its :hwnd

... ) local hItem1 local hItem2 local marray := {} local i, OPRINTER local ownd, OWAITDLG , ODIALOG, WORKTEXT, OSAY, MDLL altd(1) altd() hDLL = LoadLibrary( "DLL-DON2.DLL" ) SET RESOURCES TO DEFINE DIALOG owaitdlg FROM 1, 1 TO 222, 333 ; STYLE nOR( WS_VISIBLE, WS_POPUP ) PIXEL OWAITDLG:CTITLE ...
by don lowenstein
Sat Jan 06, 2018 4:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: access to window via its :hwnd
Replies: 10
Views: 1832

Rutina Generador de codigos QR

... Librería de Soporte","Improcedente") Return(NIl) EndIF cStr := cTexto //"Texto a QR Code" cFile := cPath + cBmp qrDLL:=LoadLibrary("QRCodelib.Dll" ) nResp:=DllCall(qrDLL,DC_CALL_STD,"FastQRCode",oP:Codigobarras,cFile) FreeLibrary(qrDLL) RETURN (cFile)
by Busmatic_wpb
Sun Dec 31, 2017 1:24 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Rutina Generador de codigos QR
Replies: 1
Views: 774

Re: Intercambiando datos con DLL Pascal

... de esta manera @Largo cuando es un string.. function incios... OCAL cDllName:="SCLib.DLL" Local fHandle:=0 Local ACR120libHandle := LoadLibrary( cDllName) HaveTag :=space(150) SerialNum :=space(110) Largo :=0 TagType :=space(50) RTag :=0 RSn :=space(7) fRetCode := ACR120_Select(fHandle, ...
by Busmatic_wpb
Sun Nov 26, 2017 4:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Intercambiando datos con DLL Pascal
Replies: 5
Views: 930

Re: DLL32 FW24 vs FW916

...     lRetorno:=.T.   Else      MsgInfo( Str( nError ) )   EndIf  o con LoadLibrary()? Saludos
by karinha
Fri Nov 24, 2017 5:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: DLL32 FW24 vs FW916
Replies: 17
Views: 3009

Re: funciones de FWH y Harbour en un archivo .txt

... Len(<aArray>|<cString>|<hHash>)->nCount LenNum(<nNumber>)->nLength LoadLibrary(<cDLLFile>)->nDllHandle Log(<nExp>)->nNaturalLog Log10(<nValue>)->nLog10 Lower(<cString>)->cLowerString ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5814

Re: funciones de FWH y Harbour en un archivo .txt

... IsUpper IsUpper IsXDigit JustLeft JustRight KbdStat KeySec KeyTime KSetIns KSetNum KSetScroll L2Bin LastDayoM LastKey LastRec Left Len LenNum LoadLibrary Log Log10 Lower LtoN LTrim LUpdate MakeDir Mantissa Max MaxCol MaxLine MaxRow MCol MDblClk MDY MemoEdit MemoLine MemoRead Memory MemoTran ...
by carlos vargas
Sat Oct 21, 2017 8:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5814
PreviousNext

Return to advanced search