Page 6 of 6
Re: PureBasic 4.60 Final !
Posted: Fri Nov 11, 2011 3:53 pm
by kenmo
Let's just talk about the fantastic CanvasGadget and new List features again

Oh yes, and some new 3D features to check out

Re: PureBasic 4.60 Final !
Posted: Fri Nov 11, 2011 10:18 pm
by Fred
No offense taken, i know my english isn't perfect. I meant 'sometime' indeed. Now go back to the kudos we love that

Re: PureBasic 4.60 Final !
Posted: Sat Nov 12, 2011 12:18 am
by oreopa
Hehe. I also didn't mean any offence to anyone when I pointed out it was really a word. Let's all just have a big group hug
PB rules, and even if it was only available in Swahili I'd more than likely still use it.

Re: PureBasic 4.60 Final !
Posted: Sat Nov 12, 2011 12:50 am
by skywalk
Fred wrote:No offense taken, i know my english isn't perfect. I meant 'sometime' indeed. Now go back to the kudos we love that

It's certainly good enough if you are teaching me new english words.
somewhere somewhen
never down
with a friend
Can't wait to see what pushes PB to version 5.0

Re: PureBasic 4.60 Final !
Posted: Sat Nov 12, 2011 2:24 am
by IdeasVacuum
...there is only one language of interest - Pure Basic!
Re: PureBasic 4.60 Final !
Posted: Sat Nov 12, 2011 4:38 am
by Kuron
Fred wrote:Now go back to the kudos we love that

I would send you a
box, but I am not sure if food items would make it through customs.

Re: PureBasic 4.60 Final !
Posted: Sat Nov 12, 2011 5:02 am
by netmaestro
This thread reminds me of that great old song, "Could you ever love me again" by David Weeks from Toronto, my home town:
Could you ever love me again
If I let you down,
Disappointed you?
Could you ever love me again?
If I ceased to do little things for you,
Could you ever love me again?
Somewhere, somehow, somewhen,
If I let you down, girl,
Could you ever love me again?
Bet you've heard it:
http://www.youtube.com/watch?v=CskDRp7z-vY
The word is archaic, so it's fitting to look at an archaic picture of a couple you know well:
Yep, the leader of the free world and Bill. Reminds me of the old joke where Bill and Hillary are in the presidential limo and the driver stops for gas. Looking out the window at the greasy fellow cleaning the windshield, Bill says: I bet you're glad you married the man who would be president instead of that guy. Hillary replies: Dear, If I'd married him he'd be sitting beside me in this limo and
you'd be pumping the gas!
Seriously, would
you sign a global arms treaty with that guy? How about the happy little muffin-baker beside him as Secretary of State for the most powerful nation in the world?
Beam me up, Scotty! ..Now would be a good time!
Re: PureBasic 4.60 Final !
Posted: Thu Nov 24, 2011 11:18 am
by Wladek
Future:
ragdoll models
Bugs:
CreateWater() not work - do error (MessageBox "Send error to Microsoft" )
CreateTerrain() do nothink
WorldDebug.pb -> Error when push F3 key
SpecialEffect - make example
You plan fix it ?
If yes, when ?
Re: PureBasic 4.60 Final !
Posted: Thu Nov 24, 2011 12:16 pm
by c4s
@Wladek
Posting bug reports in the bug forum will dramatically increase the chance that they will get fixed. The (Windows) bug forum is over here:
http://www.purebasic.fr/english/viewforum.php?f=4
...and feature requests go here:
http://www.purebasic.fr/english/viewforum.php?f=3
By the way, your bugs have already been reported:
http://www.purebasic.fr/english/viewtop ... 87#p365887
They should be fixed when the topic gets a "
[done]".

Re: PureBasic 4.60 Final !
Posted: Thu Nov 24, 2011 10:25 pm
by Seldon
Thanks for the new release ! Again... it seems the ComboBox Windows control class is changed again ! But why so ? It was decided to use the old class when you don't need images...
Re: PureBasic 4.60 Final !
Posted: Thu Nov 24, 2011 10:39 pm
by c4s
Seldon wrote:it seems the ComboBox Windows control class is changed again ! But why so ? It was decided to use the old class when you don't need images...
I think support for icons in the ComboBoxGadget() came with 4.50. You have to explicitly use
#PB_ComboBox_Image to enable this feature so I don't see any problem here.
Re: PureBasic 4.60 Final !
Posted: Thu Nov 24, 2011 10:45 pm
by Seldon
Exactly... if you don't use #PB_ComboBox_Image flag, ComboBox should be used. OK, I've checked with GetClassName() API...

Now, I was wrong:
'Combobox' is still used if you don't use #PB_ComboBox_Image, while 'ComboboxEx32' when you need an image.
I don't understand why it broke compatibility with custom event types flags then :
Code: Select all
#PB_EventType_ComboBox_SelChange=1
#PB_EventType_ComboBox_DblClk=2
#PB_EventType_ComboBox_SetFocus=3
#PB_EventType_ComboBox_LostFocus=4
#PB_EventType_ComboBox_EditChange=5
#PB_EventType_ComboBox_EditUpdate=6
#PB_EventType_ComboBox_DropDown=7
#PB_EventType_ComboBox_CloseUp=8
#PB_EventType_ComboBox_SelEndOK=9
#PB_EventType_ComboBox_SelEndCancel=10
#PB_EventType_ComboBox_ERRSPACE=-1
Re: PureBasic 4.60 Final !
Posted: Fri Nov 25, 2011 12:07 am
by c4s
With version 4.60 the
Change,
Focus and
LostFocus event types are officially supported.
I think some time ago I've read freak saying something about the other events or using them in general... can't find it though. His conclusion was something like messing around with PureBasic and API at the same time can result in uncertain behavior. So generally you are on your own if you do so and if something breaks it's your fault.

Re: PureBasic 4.60 Final !
Posted: Fri Nov 25, 2011 11:46 am
by Seldon
Yes, I think you need a callback to catch the other events. I was only uncertain which class it used... it's all like before, so.. no problem !