Hi there i have just downloaded purebasic which looks ace but i wanna know how to program in it i.e help files, tuts etc... to help me get started in purebasic.
and the forum for all questions and sources sharing !
KRgrds
My avatar is a small copy of the 4x1.8m image I created and exposed at 'Le salon international du meuble à Paris' january 2004 in Matt Sindall's 'Shades' designers exhibition. The original laminated print was designed using a 150 dpi printout.
If you have got the last 3.94 release of PureBasic, just use the Visual Designer and push F1 !
The help should put you on the tracks.
Rgrds
My avatar is a small copy of the 4x1.8m image I created and exposed at 'Le salon international du meuble à Paris' january 2004 in Matt Sindall's 'Shades' designers exhibition. The original laminated print was designed using a 150 dpi printout.
Then it automatically creates the code you've designed. I haven't tried the newest release but the old one created two files an include file an the main file, you'll only need the one with the most code in it!
You'll probally want to look up on Procedures, Constants and Enumerations.
~I see one problem with your reasoning: the fact is thats not a chicken~
Open_Window_0()
Repeat
Select WaitWindowEvent()
Case #PB_Event_Menu
Select EventMenuID()
; put there your menu events
EndSelect
Case #PB_Event_Gadget
Select EventGadgetID()
; put there your gadget events
EndSelect
Case #PB_Event_CloseWindow
Quit = #True
EndSelect
Until Quit
End
Hope this helps
My avatar is a small copy of the 4x1.8m image I created and exposed at 'Le salon international du meuble à Paris' january 2004 in Matt Sindall's 'Shades' designers exhibition. The original laminated print was designed using a 150 dpi printout.
Open_Window_0()
Repeat
Select WaitWindowEvent()
Case #PB_Event_Menu
Select EventMenuID()
; put there your menu events
EndSelect
Case #PB_Event_Gadget
Select EventGadgetID()
; put there your gadget events
EndSelect
Case #PB_Event_CloseWindow
Quit = #True
EndSelect
Until Quit
End
Hope this helps
Oh many thanks if its possible for a sample and how to do it "to" make sure i do it right. This would be very helpful