HMod

Developed or developing a new product in PureBasic? Tell the world about it.
User avatar
Bisonte
Addict
Addict
Posts: 1313
Joined: Tue Oct 09, 2007 2:15 am

Re: HMod

Post 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.
PureBasic 6.21 (Windows x64) | Windows 11 Pro | AsRock B850 Steel Legend Wifi | R7 9800x3D | 64GB RAM | RTX 5080 | ThermaltakeView 270 TG ARGB | build by vannicom​​
English is not my native language... (I often use DeepL.)
User avatar
Droopy
Enthusiast
Enthusiast
Posts: 658
Joined: Thu Sep 16, 2004 9:50 pm
Location: France
Contact:

Re: HMod

Post by Droopy »

It's not a mistake, the DroopyLib is include in the HModInstaller
User avatar
Bisonte
Addict
Addict
Posts: 1313
Joined: Tue Oct 09, 2007 2:15 am

Re: HMod

Post 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 !
PureBasic 6.21 (Windows x64) | Windows 11 Pro | AsRock B850 Steel Legend Wifi | R7 9800x3D | 64GB RAM | RTX 5080 | ThermaltakeView 270 TG ARGB | build by vannicom​​
English is not my native language... (I often use DeepL.)
User avatar
Droopy
Enthusiast
Enthusiast
Posts: 658
Joined: Thu Sep 16, 2004 9:50 pm
Location: France
Contact:

Re: HMod

Post 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

Golfy
User
User
Posts: 97
Joined: Wed Mar 21, 2012 6:10 pm

Re: HMod

Post 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 :)
User avatar
Droopy
Enthusiast
Enthusiast
Posts: 658
Joined: Thu Sep 16, 2004 9:50 pm
Location: France
Contact:

Re: HMod

Post by Droopy »

Hello Golfy,
i open a x64 dll with pb x86. :oops:
Version 1.0.0.19 fix this.
Regards
Post Reply