Page 2 of 2
Re: HMod
Posted: Fri Nov 22, 2013 1:26 am
by Bisonte
I think there is a wrong link.
If I try to download the first "Droopy as module....", I only get the hmod install package.
Re: HMod
Posted: Fri Nov 22, 2013 9:09 am
by Droopy
It's not a mistake, the DroopyLib is include in the HModInstaller
Re: HMod
Posted: Fri Nov 22, 2013 2:13 pm
by Bisonte
Ah ok.... thx,
Edit : There is a problem with the TailHMod.
It can't find the Syntax_Highlight.dll, but the path and name that shows the messagerequester is right !
Re: HMod
Posted: Fri Nov 22, 2013 4:48 pm
by Droopy
Hello Bisonte : i have just tested TailHMod.exe with PureBasic 5.20/5.21 (Windows x86 version).
Here's the code part which open the library (this code is launched as tools from the IDE)
Code: Select all
SyntaxHighlightDll.s=GetEnvironmentVariable("PB_TOOL_IDE")+"SDK\Syntax Highlighting\SyntaxHilighting.dll"
If FileSize(SyntaxHighlightDll)=-1
MessageRequester("Error DLL",SyntaxHighlightDll+#CRLF$+"not found !")
End
EndIf
SyntaxHighlightId=OpenLibrary(#PB_Any,SyntaxHighlightDll)
If SyntaxHighlightId=0
MessageRequester("Error opening",SyntaxHighlightDll)
End
EndIf
Re: HMod
Posted: Thu Dec 26, 2013 9:47 pm
by Golfy
I've installed DroopyLib HMod.
Droopylib.pbi is in C:\Program Files\Purebasic\hmod --> I open it in Purebasic
But in Purebasic 5.21 (x64), CTRL+F12 show me the same message than Bisonte :
At home (Win8 home), the SDK Highligh### is
C:\Program Files\PureBasic\SDK\Syntax Highlighting\SyntaxHilighting.dll
could you give us the right process to use it ? for now I just have an example from hmod but I need an help manual for DroopyLib

Re: HMod
Posted: Fri Dec 27, 2013 11:15 am
by Droopy
Hello Golfy,
i open a x64 dll with pb x86.
Version 1.0.0.19 fix this.
Regards