hot questions tagged realbasic - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T18:33:32Zhttp://stackoverflow.com/feeds/tag?tagnames=realbasic&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1621738/realbasic-to-write-windows-applications3RealBasic to write Windows applications?OverTheRainbow2009-10-25T19:04:43Z2009-11-15T13:18:18Z
<p>Hello,</p>
<p>Before I go ahead and invest time checking out RealBasic, I'd like some feedback from people who have moved on from VBCLassic and use the Windows version of RealBasic to write professional business applications.</p>
<p>Is the language good enough, are there enough third-party add-on's to solve the inevitable shortcomings, etc.?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1373139/dev-platform-of-choice-for-windows-and-os-x-desktop-apps2Dev Platform of choice for Windows and OS X desktop appsAmmar2009-09-03T12:34:28Z2009-09-06T12:07:36Z
<p>I'm about to write a small desktop app that should run on Windows and Mac OS X mainly. The choices I have so far are:</p>
<ul>
<li>I usually use Java + Swing for this type of stuff, but this app should be really tiny (about 1Mb) and I don't want to embed the ~26mb JRE on the Windows version or ask users to have it installed. </li>
<li>I have good experience with Flex and AIR and users of this app will eventually use the Flash player (the app will output swf files most of the time). But performance is important (kinda), and I would like to write an app that have native look-and-feel.</li>
<li>I've been also considering realBasic. It seems promising and easy to get started with. But, I really do not want to write basic. It's been a very long time since I wrote basic programs (about 10 years). Plus, I can't find many supporters of it.</li>
</ul>
<p>I don't have any working experience in C/C++. And this is a very small project that I would like to finish in about a month. Any suggestions?</p>
http://stackoverflow.com/questions/956255/why-is-it-bad-practice-to-call-an-eventhandler-from-code18Why is it bad practice to call an eventhandler from code?jjb2009-06-05T14:43:20Z2009-06-06T10:35:02Z
<p>Say you have a menu item and a button that do the same task.
Why is it bad practice to put the code for the task into one control's action event and then make a call to that event from the other control?
Delphi allows this as does vb6 but realbasic doesn't and says you should put the code into a method that is then called by both the menu and the button</p>
http://stackoverflow.com/questions/548007/what-are-the-advantages-of-c-over-say-delphi-realbasic-for-windows-application4What are the advantages of c# over, say, delphi/realbasic for windows applicationskjack2009-02-13T22:53:33Z2009-10-15T10:41:38Z
<p>has anyone ever written an application bigger than its .net luggage?
People used to criticize vb6 for its 2 MB runtime but it rarely dwarfed the app it accompanied.
Today despite having vista on my machine I had to download 35 MB of the 3.5 framework and reboot to then try out an app half that size.</p>
<p>When you factor in the decreased source code security I wonder why anyone would anyone develop a windows application in .net rather than in a language that allowed for the building of native executables. </p>
<p>What is superior about .net that outshadows these drawbacks when it comes to writing applications to run on windows.</p>
http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application11Create a cross platform Windows, Mac OS X applicationarmahg2008-10-31T03:22:56Z2009-02-03T19:24:12Z
<p>Hello,
I would like to build an application that runs on both Windows and Mac OS X. I would also
like it to leverage the best of what the platform it runs on has to offer with regards to Frameworks, API's etc. Is there a way to do this without having to write Objective-C code and then C# code? I've been thinking of C++ as an alternative but I was wondering if there was anything else out there. The app will be GUI based (though I don't know exactly what it will do yet)</p>
<p>-G.</p>
http://stackoverflow.com/questions/425185/is-realbasic-worth-507Is REALBasic worth $50?MDRoz2009-01-08T17:38:04Z2009-04-17T18:48:52Z
<p>As a Windows and web developer of 12+ years and an "at home" Mac user, I'm wondering if it's worth it to get the REALBasic for personal use. I've often wanted to dabble in development for OS X; I know VB, Java, C#, but not C, C++, or Objective-C. I don't have a specific project in mind and haven't been motivated to learn Objective-C, so I'm wondering if RB would be easy and good enough to get me started with some small apps.</p>
<p>Here are my concerns/questions:</p>
<ul>
<li><p>I haven't heard much about REALBasic in the "real world" - there is only one question on stackoverflow tagged with "realbasic" - so, is it a viable development environment, or is it just a "toy" language/IDE?</p></li>
<li><p>Are there any quirks or gotchas with apps written/compiled with RB?</p></li>
<li><p>Are there any commercial apps out there that are written in RB?</p></li>
</ul>
http://stackoverflow.com/questions/920397/non-realbasic-activex-controls-in-realbasic-projects1Non realbasic ActiveX controls in Realbasic projectskjack2009-05-28T11:30:40Z2009-05-28T11:51:16Z
<p>Realbasic allows you to include e.g an MS Flexgrid control in your Realbasic project and use it as though it were a native control. Does the end user need to have this control installed already and if not and realbasic includes it in the build are there licensing issues?
I have vb6 and can distribute this control legally with a vb6 application dos this alter things?</p>
http://stackoverflow.com/questions/615886/php-ruby-python-yuma0PHP, Ruby, Python...Yuma?Bart Silverstrim2009-03-05T18:06:43Z2009-05-07T22:43:24Z
<p>In considering languages to use in creating a web-application that interfaces with a database back-end, has anyone had experience in using Yuma and can share how stable it is and what kind of performance it may give?</p>
http://stackoverflow.com/questions/100242/how-do-i-create-a-select-folder-or-file-dialog-window-in-realbasic3How do I create a "select folder OR file dialog window" in REALbasic?Danny2008-09-19T07:27:12Z2008-10-04T10:38:36Z
<p>You can use </p>
<p>SelectFolder() to get a folder</p>
<p>or </p>
<p>GetOpenFolderitem(filter as string) to get files</p>
<p>but can you select either a folder or file? ( or for that matter selecting multiple files )</p>