You have forgot to put the () at the end of the Select EventGadget, PB thinks it is a variable.
It should be Select EventGadget().
Wow. Sat morning, family is asleep, I can concentrate on this and have finally had the opportunity to revisit this. Thank you, ElectroChrisso... everything is working ...
Search found 44 matches
- Fri Dec 07, 2012 10:54 pm
- Forum: Coding Questions
- Topic: Just starting out... more than usual dumb questions
- Replies: 33
- Views: 6802
- Fri Dec 07, 2012 12:32 pm
- Forum: Coding Questions
- Topic: Just starting out... more than usual dumb questions
- Replies: 33
- Views: 6802
Re: Just starting out... more than usual dumb questions
I'm pretty sure most of you already know about this site, but I just wanted to share: NightLive. It's an interesting, engaging read.
Thank you again for all your pointers: I'm starting to get a bit of a grip on this thing. Slightly. Long way yet to go, though...
Thank you again for all your pointers: I'm starting to get a bit of a grip on this thing. Slightly. Long way yet to go, though...

- Wed Dec 05, 2012 10:38 pm
- Forum: Coding Questions
- Topic: Just starting out... more than usual dumb questions
- Replies: 33
- Views: 6802
Re: Just starting out... more than usual dumb questions
I would like to say that I realise my initial tone - when I first started posting here - was fractious and unfriendly... this was pointed out to me by several members of the forum early on. I do apologise for those early outbursts. My efforts will be concentrated on learning this excellent program ...
- Wed Dec 05, 2012 12:04 pm
- Forum: Coding Questions
- Topic: Just starting out... more than usual dumb questions
- Replies: 33
- Views: 6802
Re: Just starting out... more than usual dumb questions
Remember to always use EnableExplicit :wink:
[23:44:13] [COMPILER] Line 24: With 'EnableExplicit', variables have to be declared: EventGadget.
Thank you, will do so. Need to alert Willoughby... his tutorial fails to mention this, and the syntax is ever-so slightly different.
I've always done ...
[23:44:13] [COMPILER] Line 24: With 'EnableExplicit', variables have to be declared: EventGadget.
Thank you, will do so. Need to alert Willoughby... his tutorial fails to mention this, and the syntax is ever-so slightly different.
I've always done ...
- Tue Dec 04, 2012 12:42 pm
- Forum: Coding Questions
- Topic: Just starting out... more than usual dumb questions
- Replies: 33
- Views: 6802
Re: Just starting out... more than usual dumb questions
I use Linux because of the features, just like with Blender. And I contribute to both causes. Whilst I'm a huge supporter of FOSS, I feel people definitely have the right to make money from their creations, and support proprietary software when I feel it is worth it. Which PureBasic definitely is ...
- Tue Dec 04, 2012 2:44 am
- Forum: Coding Questions
- Topic: Just starting out... more than usual dumb questions
- Replies: 33
- Views: 6802
Re: Just starting out... more than usual dumb questions
Oh, I should mention that I'm running PureBasic 5 32-bit in XP in VirtualBox. It all apears to be running fine... just no output from the "Debug" thingie... or response to the Close button being clicked.
- Tue Dec 04, 2012 2:40 am
- Forum: Coding Questions
- Topic: Just starting out... more than usual dumb questions
- Replies: 33
- Views: 6802
Re: Just starting out... more than usual dumb questions
Just a quick question. I'm writing these example programs from the PureBasic Book (admittedly for PB 4)... when I F5 this code:
Enumeration
#WIN_MAIN
#TEXT_INPUT
#STRING_INPUT
#BUTTON_INTERACT
#BUTTON_CLOSE
EndEnumeration
Global Quit.b = #False
#FLAGS = #PB_Window_SystemMenu | #PB_Window ...
Enumeration
#WIN_MAIN
#TEXT_INPUT
#STRING_INPUT
#BUTTON_INTERACT
#BUTTON_CLOSE
EndEnumeration
Global Quit.b = #False
#FLAGS = #PB_Window_SystemMenu | #PB_Window ...
- Tue Dec 04, 2012 12:59 am
- Forum: Coding Questions
- Topic: Just starting out... more than usual dumb questions
- Replies: 33
- Views: 6802
Re: Just starting out... more than usual dumb questions
Just going through the manual... *Sheesh*, the PureBasic IDE makes VBE look like the difference between Microsoft Office and Works (where Works is the Excel VBE). This is one incredibly sophisticated program! Kudos to the developers: this is amazing. Really looking forward to getting my head around ...
- Mon Dec 03, 2012 9:20 pm
- Forum: Coding Questions
- Topic: Just starting out... more than usual dumb questions
- Replies: 33
- Views: 6802
Re: Just starting out... more than usual dumb questions
As others have said, VBA = VB6, so absolutely do not waste time converting to VB6.
Instead, with pen and paper, or in a notepad document, write down your data structures and procedures you need to convert to PB.
Some new ones will need to be added for sure, since you may have been using ADO or Jet ...
Instead, with pen and paper, or in a notepad document, write down your data structures and procedures you need to convert to PB.
Some new ones will need to be added for sure, since you may have been using ADO or Jet ...
- Mon Dec 03, 2012 1:00 pm
- Forum: Coding Questions
- Topic: Just starting out... more than usual dumb questions
- Replies: 33
- Views: 6802
Re: Just starting out... more than usual dumb questions
You might have a point, SkyWalk.
In any event, I really think I'm putting the cart before the horse: in wanting to convert a VBA thing into a stand-alone Linux-based app, perhaps a more deliberate, small-steps-first approach might make sense.
So, I'm thinking perhaps I should first port this to ...
In any event, I really think I'm putting the cart before the horse: in wanting to convert a VBA thing into a stand-alone Linux-based app, perhaps a more deliberate, small-steps-first approach might make sense.
So, I'm thinking perhaps I should first port this to ...
- Mon Dec 03, 2012 12:39 pm
- Forum: The PureBasic Form Designer
- Topic: Does Visual Designer actually work in Linux?
- Replies: 18
- Views: 9676
Re: Does Visual Designer actually work in Linux?
Thank you, IdeasVacuum: I'll watch the tutorial and see if I can't get my head around it. To be honest, it might be worth my while to just use the Windows version in VirtualBox for a while until I get the main ideas nailed down before attempting the Linux version.
I do LIKE VirtualBox: yes, you can ...
I do LIKE VirtualBox: yes, you can ...
- Mon Dec 03, 2012 12:36 pm
- Forum: Linux
- Topic: Some questions about the linux version
- Replies: 10
- Views: 4003
Re: Some questions about the linux version
Way excellent... I'll give that a go. Thank you, Kukulkan!Kukulkan wrote:Windows:
RunProgram(uri.s)
Linux:
RunProgram("xdg-open", uri.s, "")
Mac:
RunProgram("open", uri.s, "")

- Mon Dec 03, 2012 12:34 pm
- Forum: Linux
- Topic: Some questions about the linux version
- Replies: 10
- Views: 4003
Re: Some questions about the linux version
You example will not give any results when run normally, but create a executable and run that from console and it will give the expected results.
That beeing said RunProgram("url") will not work either, it will possibly work on Windows but on linux you must use something like this:
RunProgram ...
That beeing said RunProgram("url") will not work either, it will possibly work on Windows but on linux you must use something like this:
RunProgram ...
- Sun Dec 02, 2012 11:01 pm
- Forum: Linux
- Topic: debugger and OpenConsole()
- Replies: 4
- Views: 2942
Re: debugger and OpenConsole()
That's hardly surprising... http://www.w3schools.com/browsers/browsers_os.asp
However it does not mean there is no support for the Linux version.
I'm kind-of looking more in this direction:
http://articles.businessinsider.com/2012-04-27/tech/31419233_1_market-share-android-apps
...with the ...
- Sun Dec 02, 2012 10:56 pm
- Forum: The PureBasic Form Designer
- Topic: Does Visual Designer actually work in Linux?
- Replies: 18
- Views: 9676
Re: Does Visual Designer actually work in Linux?
Yes, I am using VirtualBox to run WindowsXP in... but Mint13 is host. Thanks for the advice: I'll go have a look at that mouse setting thing. I SO am still learning about Linux... and have been with it since Edgy-Eft (Ubuntu). 
