On the PureBasic-Website is stated, that the Requirements for PureBasic on the Mac are:
Requirements
- MacOS X 10.2+ (Jaguar or above)
- The Apple SDK (available on the OS install CDs) I've just tried to install PB 4.51 on an older PPC-MacMini with OSX 10.3.9 and run into this problem , where I ...
Search found 9 matches
- Fri Jan 07, 2011 1:03 am
- Forum: Mac OSX
- Topic: System-Requirements for the actual PB-Version on Mac-OSX?
- Replies: 3
- Views: 1880
- Fri Dec 17, 2010 7:21 am
- Forum: Feature Requests and Wishlists
- Topic: [IDE] Find/Replace for all Sources related to a Project
- Replies: 1
- Views: 716
[IDE] Find/Replace for all Sources related to a Project
An Option in the Find/Replace-Dialog, to expand the Find/Replace to all opened Sources, which belong to the actual Project would be great.
Further (or at least) it would be nice, if the Find/Replace-Dialog could remember the last state and value of the "Replace with:" field (as long as the dialog ...
Further (or at least) it would be nice, if the Find/Replace-Dialog could remember the last state and value of the "Replace with:" field (as long as the dialog ...
- Fri Dec 03, 2010 6:54 am
- Forum: Feature Requests and Wishlists
- Topic: IDE wish list
- Replies: 18
- Views: 4448
Re: IDE wish list
If it's allowed to add another wish to this thread i would have another one: :wink:
It would be great, if you can implement some features for team-development into the Project management.
I know, to implement full team-development features wouldn't be an easy thing, but at least one feature should ...
It would be great, if you can implement some features for team-development into the Project management.
I know, to implement full team-development features wouldn't be an easy thing, but at least one feature should ...
- Thu Dec 02, 2010 5:27 pm
- Forum: General Discussion
- Topic: "Variable = 1 = Function()" is valid syntax?
- Replies: 3
- Views: 861
Re: "Variable = 1 = Function()" is valid syntax?
Var = 1 = Sign(0)
a = b = c Relating to the syntax, this is quite right.
But it depends on the result you expect, if the result will be what you were looking for.
Usually such a syntax is used to get a #True or #False on the comparison of the 2nd expression.
So, if you want "Var" to be #True, if ...
a = b = c Relating to the syntax, this is quite right.
But it depends on the result you expect, if the result will be what you were looking for.
Usually such a syntax is used to get a #True or #False on the comparison of the 2nd expression.
So, if you want "Var" to be #True, if ...
- Wed Dec 01, 2010 10:01 pm
- Forum: Feature Requests and Wishlists
- Topic: [Implemented] Aligned structures
- Replies: 12
- Views: 5568
Re: Aligned structures
Any comments on this from the PB-Team?
Maybe you plan to implement an "auto-padding" version of the Structure command?
Maybe you plan to implement an "auto-padding" version of the Structure command?
- Wed Dec 01, 2010 8:35 pm
- Forum: Coding Questions
- Topic: Is it possible to have <CR> in a text with Gadgettooltip ?
- Replies: 28
- Views: 11157
Re: Is it possible to have <CR> in a text with Gadgettooltip
I assume, it's not a bug. It's more like an unsupported feature (as there are on many other controls as well).c4s wrote:I think this should go to the Windows related bug section then.
So I would say, it's something for the "Feature Requests and Wishlists" section.
- Wed Dec 01, 2010 5:47 am
- Forum: Tricks 'n' Tips
- Topic: [Windows] Multiline-Tooltip with auto-wordwrap and/or #CRLF
- Replies: 6
- Views: 4300
Re: [Windows] Multiline-Tooltip with auto-wordwrap and/or #C
Your welcome.rsts wrote:Nice useful first post. Thanks for sharing.

- Wed Dec 01, 2010 5:38 am
- Forum: Coding Questions
- Topic: Is it possible to have <CR> in a text with Gadgettooltip ?
- Replies: 28
- Views: 11157
Re: Is it possible to have <CR> in a text with Gadgettooltip
That's just not correct. Absence of CRLF-support and/or Multiline-Tooltips belongs to PB, not to windows.TomS wrote:It's not a bug in PB. Tooltips are provided and handled by the OS. Windows simply doesn't support it.
See WinAPI-example.
- Wed Dec 01, 2010 5:31 am
- Forum: Tricks 'n' Tips
- Topic: [Windows] Multiline-Tooltip with auto-wordwrap and/or #CRLF
- Replies: 6
- Views: 4300
[Windows] Multiline-Tooltip with auto-wordwrap and/or #CRLF
Hello there,
attached please find a little Proc to create multilined ToolTips (not Balloon-Tooltips) for Windows-OS (which is supported by PB natively on Linux and OSX):
Procedure GadgetToolTipML(hwndParent, Text.s, Width = 0)
If IsGadget(hwndParent) And Not IsWindow_(hwndParent) ; Allow, to ...
attached please find a little Proc to create multilined ToolTips (not Balloon-Tooltips) for Windows-OS (which is supported by PB natively on Linux and OSX):
Procedure GadgetToolTipML(hwndParent, Text.s, Width = 0)
If IsGadget(hwndParent) And Not IsWindow_(hwndParent) ; Allow, to ...