Search found 14 matches: calldll32

Return to advanced search

Re: Abrir explorador internet con una variable como URL

... con unos caracteres especiales de separador de campos que me estaban modificado la cadena del IP y por eso no funcionaba.. #define SE chr(28) CallDll32 ( 'MandaPaqueteFiscal' , 'WINFIS32.DLL' , nHandler , CHR(163) ) CallDll32 ( 'UltimaRespuesta' , 'WINFIS32.DLL' , nHandler , @cRta ) cRta:= ...
by mterraz
Mon Feb 25, 2019 3:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Abrir explorador internet con una variable como URL
Replies: 2
Views: 863

Re: Utilizar funciones de una dll con harbour

... "user32.dll" ) == "C", "user32.dll", Str( "user32.dll" ) ) ) ; end ; return uResult Y la otra opción, CallDll32, ya directamente es una función de FW. Alguna sugerencia... o cual foro Harbour donde poner mi petición??? Gracias.
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: 1334

Re: Utilizar funciones de una dll con harbour

Esto es con la funcion CALLDLL32 de Fivewin, no se si te servira. nHandler := CallDll32( "Funcion" , "ARCHIVO.DLL" , nParam1 , nParam2 )IF nHandler >= 0     CallDll32( "OtraFuncion" ...
by cmsoft
Thu Dec 06, 2018 10:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Utilizar funciones de una dll con harbour
Replies: 6
Views: 1334

Re: Creando Estructuras TypeDef Struct como en C

... Function AbrirPuerto(nPort) *-------------------------------------------------------------* local lResp:=.T. nHandler := CallDll32( "OpenComFiscal" , "WINFIS32.DLL" , nPort , 1 ) If nHandler >= 0 msgalert("Puerto de impresora OK ") nError ...
by mterraz
Tue Jul 11, 2017 10:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Creando Estructuras TypeDef Struct como en C
Replies: 22
Views: 2763

Re: FWH 13.7 with XHarbour and BCC582 - Unresolved Externals

Hi Antonio, At this time i have just found this in BCC582\INCLUDE\WINABLE.H about GetWindowModuleFileName(), nothing about CallDll32(). Please, where are located GetModuleFileNameExA() and CallDll32() ? #if (WINVER < 0x0500) // these structures and functions            // ...
by Badara Thiam
Mon Sep 09, 2013 9:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 13.7 with XHarbour and BCC582 - Unresolved Externals
Replies: 3
Views: 1041

FWH 13.7 with XHarbour and BCC582 - Unresolved Externals

Hi All, I return on the FW forums after long time of silence. This week i begin with FWH 13.7 and i have found 2 unresolved externals, for CallDll32() and GetModuleFileNameExA() listed below : -------------- Turbo Incremental Link 5.69 Copyright (c) 1997-2005 Borland Error: Unresolved external ...
by Badara Thiam
Sun Sep 08, 2013 9:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 13.7 with XHarbour and BCC582 - Unresolved Externals
Replies: 3
Views: 1041

Re: FWCallDll() and MingW + Harbour

Antonio, I updated the libs but I'm still getting a CallDll.c / CallDll32 MessageBox. http://farmacia.com.br/CallDll32.png I made a small self contained sample TESTE.PRG: #INCLUDE "fivewin.ch"FUNCTION MAIN()   Local hHandle  ...
by concentra
Mon Nov 21, 2011 12:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWCallDll() and MingW + Harbour
Replies: 16
Views: 4373

New FTDN February/Febrero 2010 (10.2)

... pN ) or IfNil( { a1. ..., aN } ) --> first non-nil value. * Enhancement: Improved sample xbrwdisk.prg. * Enhancement: functions CallDll() and CallDll32() have been renamed as FWCallDll() and FWCallDll32() to avoid symbols clash with Harbour. Please recompile all your PRGs and check if you ...
by Antonio Linares
Thu Feb 25, 2010 10:00 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2010 (10.2)
Replies: 4
Views: 3837

Re: Se necesita ayuda en el wiki !

... Barpaint() BeginPaint() Bin2d() Bindtoport() Bitblt() BringWindowtotop() Browse() Btndisable() BtnPaint() BuildCommDCB() C2Hex() CallDll() Calldll32() CallWindowProc() cArgV() cChr2Data() cCtrl2Chr() cDlg2Chr() cFileDisc() cFileExt() cFileMask() cFileName() cFileNoExt() cFileNoPath() cFilePath() ...
by Cgallegoa
Sat Feb 20, 2010 8:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se necesita ayuda en el wiki !
Replies: 12
Views: 5503

Re: need tcrw.prg for 32 bit

... METHOD PEOPEN_() LOCAL cFarProc LOCAL cFunc := "PEOpenEngine" IF ::l32 cFarProc := GetProc32( ::hDLL, cFunc, .T., LONG ) ::lError := ( CallDll32( cFarProc ) == FALSE ) ELSE cFarProc := GetProcAddress( ::hDLL, cFunc, .T., _INT ) ::lError := ( CallDll( cFarProc ) == FALSE ) ENDIF IF ::lError ...
by jll-fwh
Sun Feb 14, 2010 3:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: need tcrw.prg for 32 bit
Replies: 1
Views: 1318

Ayuda con la clase TCRW

... */ METHOD PEOPEN_() LOCAL cFarProc LOCAL cFunc := "PEOpenEngine" IF ::l32 cFarProc := GetProc32( ::hDLL, cFunc, .T., LONG ) ::lError := ( CallDll32( cFarProc ) == FALSE ) ELSE cFarProc := GetProcAddress( ::hDLL, cFunc, .T., _INT ) ::lError := ( CallDll( cFarProc ) == FALSE ) ENDIF IF ::lError ...
by Ramón J.
Sat May 31, 2008 9:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con la clase TCRW
Replies: 3
Views: 2523

calldll vs calldll32

... 99.71 - gpf's are occuring under various circumstances. Using xharour 99.5 - no problem. question - what's the reason I would choose calldd or calldll32 for dynamically calling an external dll. Aren't all dll's 32-bits these days? My mystery is, if I use getprocaddress(), loadlibrary(), freelibrary(), ...
by don lowenstein
Wed Sep 26, 2007 2:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: calldll vs calldll32
Replies: 1
Views: 694

... that tMutex.prg does have the following at the bottom of the tMutex.prg (see end of mail) So that would mean the fwh calldll.c function 'CLIPPER CALLDLL32( PARAMS )' is being called instead of the 'Function CallDLL32' below (in tMutex). This should only happen if calldll.c (in FiveHcm.lib) is ...
by peterk
Wed Oct 18, 2006 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CallDll32 funny
Replies: 3
Views: 1350

CallDll32 funny

... a Fwh and xHb aplication using latest Sept/Oct2006 Fw28/xHb This app call the tMutex.prg class Create method below. The tMutex create method calls CallDLL32(.....). In my application when CallDLL32 is called, i get a pop up msgalert "CallDll32", with a title of "calldll.c". I have tracked this ...
by peterk
Wed Oct 18, 2006 5:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CallDll32 funny
Replies: 3
Views: 1350

Return to advanced search