Search found 48 matches: unload

Return to advanced search

DLLCALL under Fivewin

... so i "load" DLL once at Start and than use hDll Handle. this work fine with "Everything" ... but i´m NOT allowed to "unload" as it fail when "load" again ... hm :? so i like to ask if here is another Way to use DLL under Fivewin or what i´m doing wrong ...
by Jimmy
Thu Dec 01, 2022 2:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLCALL under Fivewin
Replies: 45
Views: 2634

NirSoft utilities for programmers

... debugging events occurs while the program is running, including Exception, Create Thread, Create Process, Exit Thread, Exit Process, Load DLL, Unload Dll, and Debug String. After the debugging events are accumulated, you can easily export them into comma-delimited/tab-delimited/xml/html file ...
by Baxajaun
Tue Jul 03, 2018 10:36 am
 
Forum: Utilities / Utilidades
Topic: NirSoft utilities for programmers
Replies: 1
Views: 1110

Re: Ejecutar con un bloque de código una instrucción

... file and return a Handle. __HRBDO( <nHandle> ) Execute previously loaded hrb module specified by it's Handle. __HRBUNLOAD( <nHandle> ) Unload an hrb module. __HRBGETFU( <nHandle>, <cFuncName> ) -> nHandle Retrieve Handle to specified function in a given preloaded hrb ...
by Antonio Linares
Fri Feb 26, 2016 7:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejecutar con un bloque de código una instrucción
Replies: 17
Views: 2642

Backup Restore MS Sql

Hello,
I have a MS SQL database and want to make backup of the table DEM.
I try this code but it d'nt work (go to the catch) :
***
csql:=[UNLOAD 'c:\apps\dem.txt' DELIMITER '|' SELECT * FROM DEM]

Try
oCon:Execute( cSQL )
Catch
ShowAdoEr(oCon,cSql )
Return
End try
***

Any idea ?

Thanks
by Jack
Thu Oct 01, 2015 6:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Backup Restore MS Sql
Replies: 2
Views: 498

Re: How to combine (or use) SDK dll into Fivewin HB/XHB?

... pKTPCBiz )   {      IKTPCBizX_Release(pKTPCBiz);   }   hb_ret();}#pragma ENDDUMP Here is missing the code to unload the dll. If I run it, it says that KTPSock.dll is missing...
by AntoninoP
Thu Jul 02, 2015 10:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to combine (or use) SDK dll into Fivewin HB/XHB?
Replies: 36
Views: 8216

Re: How to automatic activate keyboard on screen on W8?

Dear Cnavarro, Do I need to modify or override class TGet:gotfocus() as sample? When will I should be unload Keyboard? TGet.PrgSTATIC hWndGet...METHOD GotFocus()IF hWndGet == NIL .OR. hWndGet != ::hWndWinExec("TabTip.Exe")ENDIF.....hWndGet:= ::hWndRETURN ...
by dutch
Mon Apr 27, 2015 10:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to automatic activate keyboard on screen on W8?
Replies: 2
Views: 587

Re: ADO & SQL INSERT Statement

... values ('1','texto1'),('2','texto2') and no error. But like Rao said, Informix does not support. We need to do single row inserts only. Statements UNLOAD TO and LOAD FROM are not standard SQL statements and they are part only in IMB DbAccess I fond this on IBM info center IBM Informix ODBC Driver ...
by avista
Thu Jul 31, 2014 6:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO & SQL INSERT Statement
Replies: 9
Views: 2219

Re: How to keep a existing alpha-channel, saving a bitmap ?

Antonio, the freeimage-sections about transparent ( maybe something can be used ) : FreeImage_GetTransparencyTable 1 4 8 DLL_API BYTE * DLL_CALLCONV FreeImage_GetTransparencyTable(FIBITMAP *dib); Returns a pointer to the bitmap’s transparency table. Only palletised bitmaps have a transparency table....
by ukoenig
Sun Jun 22, 2014 7:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to keep a alpha-channel, save and resize a bitmap
Replies: 5
Views: 1879

How to save a PNG or BMP transp with Freeimage (solved)

Hello, is it possible, to save a Image ( BMP or PNG ) with transparent background ? The sample shows a merged transparent-logo ( resized to 50 % ) on a transparent image exported to PNG. I would like to save the main-image as transparent as well. The exported file shows the transparent area in black...
by ukoenig
Wed Apr 09, 2014 10:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to save a PNG or BMP transp with Freeimage (solved)
Replies: 1
Views: 504

Re: How unload tabtip.exe ?

many thanks all
by Romeo
Tue Sep 17, 2013 10:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How unload tabtip.exe ?
Replies: 10
Views: 2180

Re: How unload tabtip.exe ?

Jeff,

It uses the same source code as Antonio Mart explained, thanks anyhow :-)
by Antonio Linares
Wed Sep 11, 2013 6:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How unload tabtip.exe ?
Replies: 10
Views: 2180

Re: How unload tabtip.exe ?

A ti siempre, ¡ faltaría más ! :D
by Antonio Mart.
Wed Sep 11, 2013 2:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How unload tabtip.exe ?
Replies: 10
Views: 2180

Re: How unload tabtip.exe ?

Romeo,

#define WM_SYSCOMMAND 0x0112
#define SC_CLOSE 0xF060

to check if the keyboard is open you can do:

Code: Select all  Expand view

function IsKeyboardVisible()

return FindWindow( "IPTip_Main_Window" ) != 0
 


Antonio, thanks! :-)
by Antonio Linares
Wed Sep 11, 2013 12:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How unload tabtip.exe ?
Replies: 10
Views: 2180

Re: How unload tabtip.exe ?

i get error with:

PostMessage(hWndInputPanel, WM_SYSCOMMAND, SC_CLOSE, 0)

what are WM_SYSCOMMAND and SC_CLOSE ?

And how can i detect if the kb is loaded ?

Hi
by Romeo
Wed Sep 11, 2013 10:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How unload tabtip.exe ?
Replies: 10
Views: 2180
Next

Return to advanced search