cool, thanks mate! and cheers for "liking" the page so far guys!DoubleDutch wrote:Don't forget, when you get to 20+ 'likes' you can go into the page settings and pick a proper page name for the page, eg: Facebook.com\progui

cool, thanks mate! and cheers for "liking" the page so far guys!DoubleDutch wrote:Don't forget, when you get to 20+ 'likes' you can go into the page settings and pick a proper page name for the page, eg: Facebook.com\progui
haha lol I tend to agree (facebook = necessary evilPoshu wrote:... Facebook ... Nooooooo! This is like hell, but in an uncool way. A forum would have been much more usable T__T
Hi ruslanx, not currently but I'll add support for this in the next update (as well a hover notification for menu items).
There is no /help directory with Purebasic 4.51 64bit.Help File Installation
Copy this help file (ProGUI.chm) to your "PureBasic\Help\" directory for context hot-key help in your IDE.
oops sorry about that (I'll make sure the docs are corrected). If you place it in the PureBasic root directory with the other '.chm' files it should work fine.X wrote:fyi, per instructions have the following:
There is no /help directory with Purebasic 4.51 64bit.Help File Installation
Copy this help file (ProGUI.chm) to your "PureBasic\Help\" directory for context hot-key help in your IDE.
Create the directory! There comes never a directory "Help" from pb installation.X wrote:There is no /help directory with Purebasic 4.51 64bit.
Code: Select all
If FileSize("..\..\Shared\StartProGUI.pb") <> -1 ;Set your location here
IncludeFile "..\..\Shared\StartProGUI.pb" ;and here
Else
StartProGUI("", 0, 0, 0, 0, 0, 0, 0)
EndIf
electrochrisso: could you post your good tip on the ProGUI forums too?electrochrisso wrote:Here is my tip to have your ProGUI key load from a separate file location such as Shared, so your key does not get accidentally displayed, when submitting code onto forums and the like.
The file StartProGUI.pb is where your 1 line key code is to be found, name it to your own preference.Code: Select all
If FileSize("..\..\Shared\StartProGUI.pb") <> -1 ;Set your location here IncludeFile "..\..\Shared\StartProGUI.pb" ;and here Else StartProGUI("", 0, 0, 0, 0, 0, 0, 0) EndIf