Search found 34 matches: hlib

Return to advanced search

Re: Gluing bitmaps

Yes, I declared the hLib variable. But the following error occurs: Error description: Error BASE/1089 Argument error: ABS Args: [ 1] = P 0x0 Stack Calls =========== Called from: => ABS( 0 ) Called from: .\source\classes\IMAGE.PRG ...
by Natter
Wed Dec 14, 2022 9:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Gluing bitmaps
Replies: 29
Views: 1370

Re: Gluing bitmaps

Dear Natter,

static hLib must be declared before any code above
by Antonio Linares
Wed Dec 14, 2022 8:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Gluing bitmaps
Replies: 29
Views: 1370

Re: Gluing bitmaps

I tried to run the Load Free Image() function in my program.
I received a message about the absence of the hLib variable.
If you set STATIC hLib, the compilation message will appear - STATIC declaration follows executable statement
by Natter
Wed Dec 14, 2022 7:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Gluing bitmaps
Replies: 29
Views: 1370

Re: Gluing bitmaps

... Harbour. You are getting the run time error at this line while executing this line in function LoadFreeImage() in image.prg      if hLib <= 32  This is because while using xHarbour, hLib is a pointer but not numeric. I also agree that this problem was not there in earlier ...
by nageswaragunupudi
Wed Dec 14, 2022 6:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Gluing bitmaps
Replies: 29
Views: 1370

Re: Funciones en DLL lector biometrico

Carlos,

la línea 22919 tienes que cambiarla asi:

static HMODULE m_hLib = NULL;

fijate en los errores, porque ellos te marcan las soluciones :-)
by Antonio Linares
Tue May 17, 2022 3:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funciones en DLL lector biometrico
Replies: 10
Views: 775

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: 2230

AYUDA para Descargar Pagina WEB

... mensaje('Error : '+cHttp) else ? memoread('c:\SunatX.jpg') endif *----------------------------* function URLDownLoad(cUrl, cSaveAs) //hLib = LOADLIBRARY( "urlmon.dll") if !URLDownloadToFile( 0, cUrl, cSaveAs, 0, 0 ) == 0 retu.f. endif //FREELIBRARY( hLib ) retu.t. DLL32 FUNCTION ...
by yampichu
Mon May 25, 2015 4:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA para Descargar Pagina WEB
Replies: 2
Views: 576

FISAVEIMG() FILOAD() str 0 error

... = FICNV24( hDib ) lOk = FISAVE( nDstFormat, hDib2, cDstFile, nQuality ) FIUNLOAD( hDib ) FIUNLOAD( hDib2 ) endif return lOk 2.myapp.prg static hLib ... ... buttion action FISAVEIMG( "tmp1.bmp", "tmp1.jpg", 2, 95) DLL32 FUNCTION FISAVE( nFormat AS LONG, hDib AS LONG, cFileName ...
by ShumingWang
Sat Apr 25, 2015 10:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FISAVEIMG() FILOAD() str 0 error
Replies: 2
Views: 520

Re: COMO SE PUEDE CREAR UN OBJETO

... "Fivewin.ch" #include "Dll.Ch" #include "Objects.Ch" #include "Hbclass.ch" FUNCTION md204() LOCAL clObj,hLib LOCAL PathCert:="\mlmall\config\pos\zofri.pfx" LOCAL PassCert:="Ah2Cfg723rQ" LOCAL cDllname:="\MLMall\Config\POS\MkSg.InterfazPOS.Security.dll" ...
by elmoiquique
Sun Jun 15, 2014 2:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMO SE PUEDE CREAR UN OBJETO
Replies: 19
Views: 6035

Re: COMO SE PUEDE CREAR UN OBJETO

... LOCAL ts_mod:='M',ts_folio:='12345' LOCAL ts_tbruto:=15000,ts_tneto:=13000,ts_timp:=2000 hlib := loadlibrary(cDllName) if abs(hlib)<=32 msgAlert ("Error Code: "+Ltrim(str(hlib))+" Loading "+ cDllName ) return .t. endif ...
by elmoiquique
Sat Jun 14, 2014 11:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMO SE PUEDE CREAR UN OBJETO
Replies: 19
Views: 6035

Re: COMO SE PUEDE CREAR UN OBJETO

... LOCAL cDllname:="\MLMall\Config\POS\MkSg.InterfazPOS.Security.dll" LOCAL ts_token:="" LOCAL clObj hlib := loadlibrary(cDllName) INI oIni File "\MLMALL\config\config.ini" GET ts_token SECTION "TOKEN SESION "+e_rut ENTRY "Token" ...
by elmoiquique
Fri Jun 13, 2014 8:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMO SE PUEDE CREAR UN OBJETO
Replies: 19
Views: 6035

Re: download a file

Error description: Error BASE/1003 Variable does not exist: HLIB
by Silvio.Falconi
Wed May 28, 2014 10:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: download a file
Replies: 7
Views: 1095

Re: descargar fichero desde un servidor Https

... mensaje('Error : '+cHttp) else ? memoread('c:\MisDescargas\Respuesta.txt') endif *----------------------------* func URLDownLoad(cUrl, cSaveAs) hLib = LOADLIBRARY( "urlmon.dll") if !URLDownloadToFile( 0, cUrl, cSaveAs, 0, 0 ) == 0 retu.f. endif FREELIBRARY( hLib ) retu.t. DLL32 FUNCTION ...
by Joel Andujo
Thu Sep 19, 2013 5:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: descargar fichero desde un servidor Https
Replies: 7
Views: 2000

Re: ejemplo c5Tooltip

Viktor,

Estos IF tienen que estar en minusculas:

IF ( hLib )

No pierdas tu tiempo en pelearte con esto, deja que nosotros lo solucionemos y luego los usaras comodamente :-)
by Antonio Linares
Fri Sep 13, 2013 5:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ejemplo c5Tooltip
Replies: 60
Views: 23891

app auto upgrade

... activate dialog odlg return 2. download.prg : #include "fivewin.ch" #include "dll.ch" static hLib FUNCTION main() hLib = LOADLIBRARY( "urlmon.dll") if URLDownloadToFile( 0, "http://www.xtech.com.cn/down/app.exe", ".\app.exe", ...
by ShumingWang
Thu Nov 29, 2012 3:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: app auto upgrade
Replies: 4
Views: 940
Next

Return to advanced search