Search found 9 matches

by gwhuntoon
Mon Aug 01, 2016 4:07 pm
Forum: Windows
Topic: The compiler isn't loaded yet...please try again.
Replies: 5
Views: 3281

Re: The compiler isn't loaded yet...please try again.

Had the same problem here with Windows 7 x64 and PB5.50
All other versions of PB worked fine but PB5.50 kept throwing "The compiler isn't loaded yet...please try again"
Final solution for me was to reboot Windows. Everything works fine now. Go figure?!?!


Thanks Paul, rebooting worked. Not sure ...
by gwhuntoon
Fri Jul 29, 2016 6:43 pm
Forum: Windows
Topic: The compiler isn't loaded yet...please try again.
Replies: 5
Views: 3281

Re: The compiler isn't loaded yet...please try again.

All I was trying to do by renaming the original PureBasic folder to PureBasic.old was to get it out of the way so it wouldn't conflict with the new install. Once renamed, I installed the new v5.50 to the new PureBasic folder hoping there would be no conflicts. Unless PureBasic no longer works with ...
by gwhuntoon
Fri Jul 29, 2016 4:05 pm
Forum: Windows
Topic: The compiler isn't loaded yet...please try again.
Replies: 5
Views: 3281

The compiler isn't loaded yet...please try again.

Running Windows XP SP3. Renamed existing Program Files\PureBasic folder to Program Files\Purebasic.old. Installed and Reinstalled multiple times. Exited and restarted the IDE multiple times. Restarted the Compiler, however when I do, Create Executable becomes grayed out. I only get the Create ...
by gwhuntoon
Sat Feb 14, 2015 3:46 pm
Forum: Mac OSX
Topic: [PB Cocoa] Methods, Tips & Tricks
Replies: 228
Views: 530325

Re: [PB Cocoa] Methods, Tips & Tricks

Using others code examples from here I thought I'd take a stab at creating a HUD window. At this point it doesn't look too bad but I'm not sure if this is the correct approach or not. Obvious things I'd like to do is to color the Button, Scrollbars, Option Button, and Circular Slider if it's ...
by gwhuntoon
Fri Jan 03, 2014 3:10 pm
Forum: Feature Requests and Wishlists
Topic: pb 5b4 : trackbargadget is not realtime
Replies: 10
Views: 2285

Re: pb 5b4 : trackbargadget is not realtime

Well, this response is way late but it's supported now in PB 5.21 with BindEvent. I modified the above example as follows and have only tested it in OSX Mavericks.


Enumeration
#Window_0
EndEnumeration

Enumeration
#text_0
#tb_0
EndEnumeration

Procedure GadgetHandler()
SetGadgetText(#text_0 ...
by gwhuntoon
Sat Jun 22, 2013 2:05 pm
Forum: Mac OSX
Topic: [PB Cocoa] Methods, Tips & Tricks
Replies: 228
Views: 530325

Re: [PB Cocoa] Methods, Tips & Tricks

:oops: And actually I goofed and forgot to swap the column widths.

It should be this:

Code: Select all

  Data.S "NSURLVolumeAvailableCapacityKey", "Free [GB]", "Q", "50"
  Data.S "NSURLVolumeTotalCapacityKey", "Total [GB]", "Q", "55"
by gwhuntoon
Sat Jun 22, 2013 2:02 pm
Forum: Mac OSX
Topic: [PB Cocoa] Methods, Tips & Tricks
Replies: 228
Views: 530325

Re: [PB Cocoa] Methods, Tips & Tricks

:) Shardik, first off, awesome post. This will be very useful. Just one thing though, I think the volume free vs. total volume was mistyped and is swapped.

From this:
Data.S "NSURLVolumeAvailableCapacityKey", "Total [GB]", "Q", "55"
Data.S "NSURLVolumeTotalCapacityKey", "Free [GB]", "Q", "50"
To ...
by gwhuntoon
Sun Mar 10, 2013 8:36 pm
Forum: Mac OSX
Topic: [PB Cocoa] Methods, Tips & Tricks
Replies: 228
Views: 530325

Re: [PB Cocoa] Methods, Tips & Tricks

Cycle through button bezel styles

Example:

Global cmd_1, lbl_1, spn_1, wnd_1

Dim ButtonStyle.s(15) ;Array to store bezel styles

;Instantiate bezel style array
ButtonStyle(1) = "NSRoundedBezelStyle"
Buttonstyle(2) = "NSRegularSquareBezelStyle"
Buttonstyle(3) = "NSThickSquareBezelStyle ...
by gwhuntoon
Wed Mar 06, 2013 9:27 pm
Forum: Mac OSX
Topic: Need help getting screen DPI using Cocoa messages
Replies: 10
Views: 5765

Re: Need help getting screen DPI using Cocoa messages

Wilbert, running your code I'm getting 1.0 on my MacBook Pro w/Retina running OS X 10.8.2. I tried both the Best for Retina display setting and Scaled - More Space and still get 1.0.

Greg