Antonio, whe i use TIMAGE the freeimage.dll is required from FWH from start on. When this dll is not present, a errorbox is shown and the programm hangs in a loop!
Antonio, whe i use TIMAGE the freeimage.dll is required from FWH from start on. When this dll is not present, a errorbox is shown and the programm hangs in a loop!
Function Main()
local ......
local ......
If !FILE("freeimage.dll")
MsgStop("FREEIMAGE.LIB NOT PRESENT","Error")
Return(NIl)
EndIf
....
...
..
.Willi, i use this code! But FWH try to load the dll on beginn of the program when in the program TIMAGE is used!
function main()
local ....
return nil
//-------------------------
ini procedure begining()
If !FILE("freeimage.dll")
MsgStop("FREEIMAGE.LIB NOT PRESENT","Error")
quit
EndIf
return