realbasic

How do I create a "select folder OR file dialog window" in REALbasic?

You can use SelectFolder() to get a folder or GetOpenFolderitem(filter as string) to get files but can you select either a folder or file? ( or for that matter selecting multiple files ) ...

Create a cross platform Windows, Mac OS X application

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 ...

Is REALBasic worth $50?

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, s...

What are the advantages of c# over, say, delphi/realbasic for windows applications

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. When you factor in the decreased sou...

PHP, Ruby, Python...Yuma?

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? ...

Non realbasic ActiveX controls in Realbasic projects

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 appli...

Why is it bad practice to call an eventhandler from code?

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 me...

Dev Platform of choice for Windows and OS X desktop apps

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: 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. I have good experience...

RealBasic to write Windows applications?

Hello, 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. Is the language good enough, are there enough third-party add-on's to solve the inevitable shortcomings, etc.? Thank ...

global array in real basic

Hi, any tips on creating a global array to use in a realBASIC project using 'add property'? Pictured below is my attempt. http://i17.photobucket.com/albums/b52/orubap/basic.jpg Using camModel(1) compiles and runs but it doesn't return anything. Using camModel(4) throws an out of bounds error so I'm guessing I'm half way there. Suggest...

when does occur this crash report?

Hello, I got this crash report from my app, and I can't reproduce it as I don't know when it happens and how can happen. Someone can tell me what sees from this report? Code: Error Name: NilObjectException Error Number: 0 Error Message: Stack Trace: RaiseNilObjectException ConScheduler.ConScheduler.StyleGrid1_DropObject%%o<ConSchedule...

what languages are supported in realbasic?

a friend told me that i possibly can create mac applications via the php plugin in realbasic. is this true? ive searched the net like crazy and the syntax doesnt look anything close to php using the plugin that is. all u do is write function calls and write your php in it. but that is kind of dumb. what i wanna know is what languages are...

Applications created with real basic (real studio) for mac or windows

i have search high and low on the internet and it does not exist. i cant find a single website that shows a few applications created with realbasic. i saw a video that shows the user going to realbasic.com/community/ and it shows a load of applications created using realbasic. would anyone know where i can find this information. that lin...

AutoDisovery is selecting the wrong network interface

I wrote a simple application using REALBasic The issue is that AutoDiscovery is binding to the wrong interface. The machine has 1 physical and two virtual NIC cards. The virtual ones are there because of VMWare How can I bind to the physical card? ...

Menuhandler for REALbasic ListBox.ActiveCell

I have a Listbox where all cells are editable. While the user is typing text in the ActiveCell (Textfield) she may decide to paste text. I would like to examine the paste-text and perform different paste operations depending on whether it is multiline or not. Is there any way to create an EditPaste MenuHandler specifically for ListBox...

REALbasic speak equivalent for Linux

I have a number of small REAL Studio apps that use the Speak keyword on Windows and Mac to output single words or short phrases. Can anyone recommend a way of emulating this on Linux versions of the app, either with a shell command or a Soft declare? These apps are for family use only so I can install free software on Ubuntu if necessa...

REALBasic reporting with SQLite3 DB

How do I create a report using SQLite3 DB? I'd appreciate just step by step or pseudo-code. ...

connect to mysql server using realbasic

Hello, tried connecting to mysql server in realbasic using the folowing code: dim db as MySQLCommunityServer db=New MySQLCommunityServer db.host="192.168.240.129" db.port=3306 db.databaseName="test" db.userName="test" db.Password="test" If db.Connect() then txt1.Text = "Connected" else txt1.Text = "Connection ...

How can I get the source code for ASTassistant?

I'm trying to develop an application similar to ASTassistant, and in the article the author says that he included "the source code with the binaries." After downloading the ZIP folder, however, I've found no source. The program is written in REAL Basic, which I don't know anything about. Do I need to purchase REAL Basic to view ASTassist...

REALBasic Child FolderItem Should Be a Directory Also

I have a bunch of Realbasic code that was written on a Mac that I'm supposed to port to Windows. Right now let's just try to get the program running from within REAL Studio. GetFolderItem("") returns the folder the application is in. Child("A") returns another FolderItem how I would expect. But when I call Child("B") on A it returns a Fo...