Known Limits in PB 3.94 Mac
Known Limits in PB 3.94 Mac
Known Limits PB 3.94 Mac
Is there any 'Known Limits' in PB 3.94 Mac? An Public list or something?
It is some frustating for an 'newbie' trying to write some code that not works. It is an 'limit' in PB or what is wrong in my code?
Yesterday I try to use and change fonts, but I get it not to works. Is this an 'limit' in PB Mac? I also try to use 'RunProgram() ...
If you know any 'limits' please log it here.....
Regards,
SEO
Is there any 'Known Limits' in PB 3.94 Mac? An Public list or something?
It is some frustating for an 'newbie' trying to write some code that not works. It is an 'limit' in PB or what is wrong in my code?
Yesterday I try to use and change fonts, but I get it not to works. Is this an 'limit' in PB Mac? I also try to use 'RunProgram() ...
If you know any 'limits' please log it here.....
Regards,
SEO
-
- User
- Posts: 22
- Joined: Fri Jul 08, 2005 7:06 pm
- Location: Cologne, Germany
- Contact:
I think there is no summary of differences for the os x version. But look at this thread, there are some informations during the beta test:
viewtopic.php?t=15832
viewtopic.php?t=15832
If you HAVE Verdana bold then it should work if not there's a bug report forum.SEO wrote:Yes I see, the Help itm PureBasic-Font says it valid to Mac OS X... but I can't get it to work... LoadFont
Lucida14 = LoadFont(#PB_Any, "Verdana",14,#PB_Font_Bold)
This always return -1 And some others fonts I try to load..
//SEO
Text Encoding IDE PB 3.94 Mac
This code is NOT Working in the IDE
File.pb Example
Result: NOT correct display in the MessageRequester!
But the test file is Saved in Text Encoding MacRoman...
The program files Myapp.pb is also Saved in MacRoman Encoding So it looks like the Debugger and the MessageRequester NOT handle MacRoman and want some other Encodings..
//Regards,
SEO
This code is NOT Working in the IDE
Code: Select all
a$ = "Hello! PB 3.94 Mac"
b$ = "Nils Åkesson"
c$ = "Nils Östensson"
d$ = "Östen Persson"
Debug a$
Debug b$
Debug c$
Debug d$
Code: Select all
If CreateFile(0, "./PBTest.pb")
WriteStringN("Per Östensson")
WriteString("Now it's on ")
WriteString("the same line.")
But the test file is Saved in Text Encoding MacRoman...
The program files Myapp.pb is also Saved in MacRoman Encoding So it looks like the Debugger and the MessageRequester NOT handle MacRoman and want some other Encodings..
//Regards,
SEO
IDE BUG
This pictures shown some minor bugs in the ide.
This bugs is created when I resize an window.
Perhaps it could be fixed using 'Live Resize' and the window set to 'Composite'.
http://www.xhtmlsoft.com/pb/images/idebug1.png
http://www.xhtmlsoft.com/pb/images/idebug2.png
//SEO
PS. I think Mac OS X have more posts than Amiga OS
This pictures shown some minor bugs in the ide.
This bugs is created when I resize an window.
Perhaps it could be fixed using 'Live Resize' and the window set to 'Composite'.
http://www.xhtmlsoft.com/pb/images/idebug1.png
http://www.xhtmlsoft.com/pb/images/idebug2.png
//SEO
PS. I think Mac OS X have more posts than Amiga OS

I confirm the encoding problem with german special characters like "ä, ö, ü, ß".
I've tested the snippets and I could see, what happened
A list with non supported functions on MAC is great. So programming would be less nerveracking
michel51
I've tested the snippets and I could see, what happened

A list with non supported functions on MAC is great. So programming would be less nerveracking

michel51
michel51
Mac OS X Snow Leopard (10.6.8 ) Intel
PureBasic V 5.21(x64), V 5.22beta
Mac OS X Snow Leopard (10.6.8 ) Intel
PureBasic V 5.21(x64), V 5.22beta
Menu Problem
I have done an new example on the menu problems. One main window and one Tool window with the same menu created. This example shows better that the menu is not changed when I open the Tool window. BUT when I close the Tool Window, then the Tool Windows menu is used!! And then the Menu not work, because the menu not exists...
http://www.xhtmlsoft.com/pb/downloads/MenuTest.zip
//SEO
I have done an new example on the menu problems. One main window and one Tool window with the same menu created. This example shows better that the menu is not changed when I open the Tool window. BUT when I close the Tool Window, then the Tool Windows menu is used!! And then the Menu not work, because the menu not exists...
http://www.xhtmlsoft.com/pb/downloads/MenuTest.zip
//SEO
Acivate Window Event
It looks that the Activate Event NOT fire ....
I can only activate my main window one time, when i open the second window then I can't get the Activate Window event to fire in the windows...
I also have some confusing behaivor, when I have the two windows opened and click on the 'Close Widget' in the main window, the second window is closed!!
Is there some more experienced PB developer that could check the code, and perhaps give some tip, how to get it to work??
http://www.xhtmlsoft.com/pb/downloads/ActivateEvent.zip
//SEO
It looks that the Activate Event NOT fire ....
I can only activate my main window one time, when i open the second window then I can't get the Activate Window event to fire in the windows...
I also have some confusing behaivor, when I have the two windows opened and click on the 'Close Widget' in the main window, the second window is closed!!
Is there some more experienced PB developer that could check the code, and perhaps give some tip, how to get it to work??
Code: Select all
Case #PB_Event_ActivateWindow
Debug "Main Window Activate"
//SEO