Re: Equivalent for Visual Basic Hardware and Software Linux and Unix by yavista "Gambas" is the closest equivalent, If you know delphi, you may be able to still get Kylix to work as well. For a simple project you could write a bash script and use kdialogs (assuming your using KDE). Re: Algorithm to find the minimum number of combinations required Programming Computer Science by AssertNull GAMBAS, huh? Are you a student? Is this for a class? … Gambas Error? Hardware and Software Linux and Unix by linux … compiled fine (I think). The window appeared, as did the Gambas Console, with the message in it below: [code]X Error… Re: Gambas Error? Hardware and Software Linux and Unix by John A … your xorg.conf file. What it looks like is that Gambas is trying to access a device referenced/listed in the… Gambas - reading an XML document Programming Software Development by it@61@sec I'm using Gambas as my language.. :-) Now I have a problem getting some … Re: Gambas - reading an XML document Programming Software Development by Joris Claassen …/gb.xml/xmlelement/getattribute, because I never have worked with Gambas ...) How to read content from Web page in Gambas Programming Software Development by it@61@sec I want to read content from a web page and store it in a string array using the programming language Gambas (a BASIC language used on Linux). Eventually I could program it in C/C++ and call the routine from Gambas. The URL is on the form: https://www.webpage.com/test#task Re: How to read content from Web page in Gambas Programming Software Development by pty Is there any particular reason you want to use Gambas for this task? It is of course possible with [`gb.net.curl`](http://gambaswiki.org/wiki/comp/gb.net.curl) but compared to other languages it's a *lot* of work. In Ruby it's like 3 lines (and two of them are `require nokogiri` and `require open-uri`!). Re: How to read content from Web page in Gambas Programming Software Development by it@61@sec The reason is that I have done a lot of work developing my program in Gambas, and I have neither the time nor the resources to convert it to another language right now. :-) I'll try to use gb.net.curl which I stumbled over when I was searching for a solution. Thanks anyway. PHP Session and MySQL Problem Programming Web Development by TheHaxx0r1215 …;>F#</option><option value=\"gambas\">GAMBAS</option><option value=\"gdb\"…;>F#</option><option value=\"gambas\">GAMBAS</option><option value=\"gdb\"… installing two things Hardware and Software Linux and Unix by linux I still haven't quite got the hang of installing / compiling programs in linux. so: how do I install gambas? (gambas-1.0.17) how do I install phoenix object basic (from janus-software.com) Re: installing two things Hardware and Software Linux and Unix by pty … use yum and just type (as su) [code] yum install gambas [/code] and it would go and find all the prerequisite… software, install that then install gambas. as for phoenix object basic i have no idea how… Re: installing two things Hardware and Software Linux and Unix by linux thank you google! i typed in rpms for gambas and got it... now i have to install it! yay NEW: i downloaded it, and when i type: rpm -Uvh gambas-0.9.3 (ECT) and hit enter, it says: Greetings! Community Center Say Hello! by MaxVK … this year, and I have involved myself with the excellent Gambas language (Think VB for Linux), and I am currently playing… Re: GUI development in LINUX Hardware and Software Linux and Unix by wbk [url=http://gambas.sourceforge.net/]Gambas[/url] is supposed to be a lot like Visual Basic. glade (and gtk) use 'boxes' to lay out widgets. add a box, then add a widget to it. Re: New to Linux Community Center by pty ….wikipedia.org/wiki/Dependency_hell]rpm hell[/url] 5) [url=http://gambas.sourceforge.net/]gambas[/url] may be what you're after Re: Need for a leaner meaner system Hardware and Software Linux and Unix by jbennet i dont know but i know there is Gambas. Gambas is like VB6 Re: Programming under Linux? Hardware and Software Linux and Unix by JasonHippy … for C/C++, Eclipse/Netbeans for Java, Idle for Python, Gambas for BASIC etc. Most of the IDE's that I… and even games! Then there's Java, Basic (using the Gambas IDE), Haskell, Ruby, Perl, Lisp, Lua, Fortran, Pascal, Eiffel... Like… Re: Algorithm to find the minimum number of combinations required Programming Computer Science by it@61@sec @AssertNull I did this project in Gambas because it was the easiest way for me to get …'s kind which is written exclusivly for the Linux platform). GAMBAS is an excellent tool to get things running in a… Re: perl gui Programming Software Development by indienick really? I'll have to look into that. I definitely think though, that if you're interested in making a gui, just C++ or Java, or some BASIC like port to Linux (ie. Gambas). Keep the scripting and parsing language (Perl) to scripting and parsing. Re: how to run visual basic 6 in suse linux? Programming Software Development by Jx_Man that u ever heard a GAMBAS Programming? if i didn't wrong, this program like VB and its running under linux. maybe u can use this program, but actually i never tried this program. OK. Re: Linux? Hardware and Software Linux and Unix by linux However, I only use Linux, so I can't use that properly. I use Gambas or Gambas2 for RAD GUI development under Linux. It's almost VB. Re: Detecting changes in RichTextCtrl Programming Software Development by MaxVK … have a copy that I use most days, written in Gambas. Regards Max Re: Algorithm to find the minimum number of combinations required Programming Computer Science by it@61@sec … program is already finished (for the moment I'm using Gambas as programming language), but this challenge is really a challenge… Re: Gambas - reading an XML document Programming Software Development by rproffitt Is that valid XML? https://www.xmlvalidation.com/ didn't like it. Re: Gambas - reading an XML document Programming Software Development by it@61@sec :-) I just cut off a part of the XML-document which was valid for my question.. :-) Here is the complete XML document (in Norwegian language): <?xml version="1.0" encoding="UTF-8" standalone="yes"?><ns1:ResultsResponse xmlns:ns1="http://norsk-tipping.no/betobject/Results" OperationVersion=&… Re: Gambas - reading an XML document Programming Software Development by it@61@sec Thanks!! You're statement worked as it should - even though you've never worked with the language.. :-) Re: Gambas - reading an XML document Programming Software Development by Joris Claassen I know "a bit" about VB(A), but for this issue it helped me more that I know a tiny bit of JavaScript. Re: Gambas - reading an XML document Programming Software Development by it@61@sec I was apparently to lazy to find it out myself... :-) Thanx anyway. Re: Gambas - reading an XML document Programming Software Development by Joris Claassen Just in case (actually I hope you already had figured this out!): you can use `.GetAttribute("Name")` and `.GetAttribute("SeqNo")` in the same way ... and all the attributes that someday show up in the xml file.