Oh ok... Im not that bothered then...
I didnt buy PureBasic for 3D (I have DarkBASIC Pro for that) I bought it mainly to make Win32 apps for projects on DBPro... (Like map editors, server connectors etc)
Will this be possible with my version?
Also I might do a little 2D programming with it.. The 2D looks faster than DarkBasic Professional
Edit: I like the language a lot... Been playing around with it...
Just made a little win32 gadget testing app...
Code: Select all
; My first Win32 Test
#WindowWidth = 320
#WindowHeight = 240
If OpenWindow(0, 100, 120, #WindowWidth, #WindowHeight, #PB_Window_MinimizeGadget, "Pure Basic Win32 Button Test")
If CreateGadgetList(WindowID())
ButtonGadget(1, 100, 100, 100, 25, "Button 1")
ButtonGadget(2, 100, 130, 100, 25, "Button 2")
ButtonGadget(3, 100, 160, 100, 25, "Button 3")
TextGadget (9, 10, #WindowHeight-30, 250, 24, "PureBasic - Win32 'Gadget' demonstration")
EndIf
Repeat
EventID = WaitWindowEvent()
If EventID = #PB_EventGadget
Select EventGadgetID()
Case 1
MessageRequester("Win32 Message Box", "Hello World - Button 1", 0)
Case 2
MessageRequester("Win32 Message Box", "Hello World - Button 2", 0)
Case 3
MessageRequester("Win32 Message Box", "Hello World - Button 3", 0)
EndSelect
EndIf
Until EventID = #PB_EventCloseWindow
EndIf