Search found 30 matches: uresult

Return to advanced search

Re: call a dll32 function

... but I wrapped them like Function XSetProxYSSL( nChan, nFlags, cPDir, cPCert, cPEXE ) *----------------------------------------------------- local uResult local cFarProc if Abs( hDLL ) > 32 cFarProc := GetProcAddress( hDLL, "seeSetProxySSL",.T.,_INT,LONG,LONG,LPSTR,LPSTR,LPSTR) // ...
by jorjio
Fri Jun 06, 2014 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: call a dll32 function
Replies: 8
Views: 2067

Re: Request for Advice

... also can not handle dynamic SQLs. Still this is very convenient. In my personal library for ADO, I handle Commands the same way. Finally I call uResult := oCmd:Execute( cCity, nAge, .... )
by nageswaragunupudi
Sun Sep 01, 2013 3:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request for Advice
Replies: 16
Views: 4908

New FTDN July 2012 (FWH 12.07)

... * New: Class TMeterEx METHOD SetTotal( nTotal ) to have compatibility with Class TMeter. * New: function Execute( cCode, [ params, ... ] ) --> uResult invokes the builted in Harbour compiler so you can compile any external file or dinamically built code. Please review FWH\samples\scripts.prg ...
by Antonio Linares
Sat Aug 11, 2012 4:48 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July 2012 (FWH 12.07)
Replies: 0
Views: 1505

Re: External file for calculations

... any external file with code or dinamically generated code from your app :-) In FWH 12.07 we provide a new function Execute( cCode, params ) --> uResult that simplifies the process,
by Antonio Linares
Sat Jul 28, 2012 10:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: External file for calculations
Replies: 7
Views: 2293

Re: Win7 + EZTW32.DLL problem?

... _INT,WORD,_INT ) nResult := CallDLL( cFarProc,::hWnd,nPixType ) Endif Return Self METHOD SetResolution( nDpi ) LOCAL cFarProc LOCAL uResult DEFAULT nDpi := 100 IF ::lLoad cFarProc := GetProcAddress( ::hDLL, "TWAIN_SetResolution",.T., VOID,_DOUBLE ) uResult := CallDLL( cFarProc,nDpi ...
by vensanto
Wed Aug 18, 2010 7:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Win7 + EZTW32.DLL problem?
Replies: 14
Views: 5274

Re: Juan Planelles Lazaga

... return iif( lAcept, cText, cMemo ) //--------------------------------- function uCharToVal( cValue, uType ) local cType := ValType( uType ) local uResult do case case cType == "C" uResult = cValue case cType == "N" uResult = Val( cValue ) case cType == "D" uResult ...
by Juan Planelles
Tue Dec 29, 2009 10:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Juan Planelles Lazaga
Replies: 9
Views: 6743

Re: Cretar DLL

... use this to execute a Harbour dynamically loaded pcode DLL function or procedure: HB_DllDo( <cFuncName> [,<params...>] ) --> [<uResult>] This lets you have all your common code in a DLL, and have lots of small EXEs that use it. Realize however that, even though this may be ...
by Antonio Linares
Mon Mar 23, 2009 8:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cretar DLL
Replies: 3
Views: 1139

Re: create a pcode dll

... use this to execute a Harbour dynamically loaded pcode DLL function or procedure: HB_DllDo( <cFuncName> [,<params...>] ) --> [<uResult>] This lets you have all your common code in a DLL, and have lots of small EXEs that use it. Realize however that, even though this may be ...
by Antonio Linares
Wed Jan 07, 2009 12:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: create a pcode dll
Replies: 25
Views: 5903

DLL con sintaxis de VB6 / DLL with VB6 sintax

... [,<ParN> AS <TypN>] [AS <cRes>] [LIB <cLib>] [ALIAS <cAlias>] =>; Local hDll:=DllHandle( <cLib> );; Local uResult, cFarProc;; IF Abs(hDll) > 32 ;; cFarProc := GetProcAddress(hDLL, if( [Empty(<cAlias>) ==] .T., <(cFunction)>, <cAlias> ...
by César E. Lozada
Sat Oct 18, 2008 5:37 pm
 
Forum: Utilities / Utilidades
Topic: DLL con sintaxis de VB6 / DLL with VB6 sintax
Replies: 5
Views: 3028

... use this to execute a Harbour dynamically loaded pcode DLL function or procedure: HB_DllDo( <cFuncName> [,<params...>] ) --> [<uResult>] This lets you have all your common code in a DLL, and have lots of small EXEs that use it. Realize however that, even though this may be ...
by Antonio Linares
Wed Jun 18, 2008 7:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows 32-bit DLLs with Harbour Code - Any More Progress
Replies: 14
Views: 5875

... use this to execute a Harbour dynamically loaded pcode DLL function or procedure: HB_DllDo( <cFuncName> [,<params...>] ) --> [<uResult>] This lets you have all your common code in a DLL, and have lots of small EXEs that use it. Realize however that, even though this may be ...
by Antonio Linares
Mon Nov 12, 2007 9:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dll Question
Replies: 1
Views: 881

... use this to execute a Harbour dynamically loaded pcode DLL function or procedure: HB_DllDo( <cFuncName> [,<params...>] ) --> [<uResult>] This lets you have all your common code in a DLL, and have lots of small EXEs that use it. Realize however that, even though this may be ...
by Antonio Linares
Sun Oct 07, 2007 5:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make a DLL
Replies: 19
Views: 3377

FiveWin / Internet use Wininet.dll

... InternetReadFile( hFile ,sBuffer,lNumBytesToRead,lNumberOfBytesRead ) local hDLL := iIf( ValType( xdll ) == "N", xdll, LoadLib32( "xdll" ) ) local uResult local cFarProc local sb1 := sbuffer , sb2, sb3 if Abs( hDLL ) > 32 cFarProc = GetProcAdd( hDLL, "InternetReadFile" ,.T., 7 , 7 , 8 , 7, 7 ...
by cgraeber
Tue Sep 04, 2007 11:35 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: FiveWin / Internet use Wininet.dll
Replies: 1
Views: 1861

... proporcionar una clase para tal fín. Las funciones son: CreateOleObject() --> hOle OleInvoke( hOle, cMethodName, uParam1, ..., uParamN ) --> uResult OleSetProperty( hOle, cPropertyName, uParam1, ..., uParamN ) OleGetProperty( hOle, cPropertyName ) --> uValue
by Antonio Linares
Tue Apr 11, 2006 7:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Toleauto + Word
Replies: 2
Views: 847

... _INT,WORD,_INT ) nResult := CallDLL( cFarProc,::hWnd,nPixType ) end RETU Self METHOD SetResolution( nDpi ) // NEW LOCAL cFarProc LOCAL uResult DEFAULT nDpi := 100 if ::lLoad cFarProc := GetProcAddress( ::hDLL, "TWAIN_SetResolution",.T., VOID,_DOUBLE ) uResult := CallDLL( cFarProc,nDpi ...
by George
Sat Mar 25, 2006 2:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Scanner
Replies: 5
Views: 1933
Previous

Return to advanced search