Tagged Questions

REALbasic is an object-oriented version of the BASIC language intended for cross-platform development.

learn more… | top users | synonyms

38
votes
9answers
2k views

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 ...
15
votes
11answers
2k views

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 ...
12
votes
19answers
4k views

Create a cross platform Windows, Mac OS X application

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 ...
10
votes
10answers
3k views

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 ...
6
votes
11answers
934 views

Is RealBasic a good programming language to learn?

I am totally new to programming and I want to learn a simple language that I can create desktop application with. I was originally going to attempt learning Delphi but after playing with it for a ...
5
votes
3answers
508 views

RealBasic to write Windows applications?

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 ...
3
votes
2answers
39 views

What's the most reliable way to parse a piece of text out into paragraphs in RealBasic that will work on Windows, Mac, and Linux?

I'm writing a piece of software using RealBASIC 2011r3 and need a reliable, cross-platform way to break a string out into paragraphs. I've been using the following but it only seems to work on Linux: ...
3
votes
2answers
278 views

In REALBasic - how can I access a laptop built-in camera?

Is it possible to access the camera in a Macbook with REALbasic? I'd like to allow a user to capture an image from the camera.
3
votes
6answers
503 views

How to embedded images to EXE file and show them as slideshow

I have a requirement to build an Image manager which will allow users to build a collection of photos/images and then give them an option to convert these photos to a single EXE which when run, will ...
3
votes
4answers
2k views

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 )
2
votes
1answer
194 views

How to draw on screen using RealBasic, Visual basic? Where i have one default laptop screen and second monitor

I have my laptop default screen and second screen. How can I write RealBasic, VisualBasic (Java not possible) application which can allow me to paint on desktop (both screen)?
2
votes
1answer
132 views

REALBasic and MySQL

Dim db as MySQLCommunityServer db =New MySQLCommunityServer db.host="127.0.0.1" db.port=3306 db.databaseName="requesterdb" db.userName="root" db.Password="" Dim divisionID As String ...
2
votes
5answers
261 views

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 ...
1
vote
1answer
65 views

Getting number of CPUs on Windows with realbasic

I tried using WMI, but with no success so far. Dim objLocator As New OLEObject("WbemScripting.SWbemLocator") Dim objService As OLEObject objService = objLocator.ConnectServer(".", "root\cimv2") Dim ...
1
vote
2answers
169 views

RealBasic Try-Catch not working

I have a RealBasic try-catch: try Listbox1.RemoveRow Listbox1.ListIndex catch err As OutOfBoundsException MsgBox "Derp" End But using the latest version of RealBasic (2011 release 1) for Mac I ...
1
vote
2answers
285 views

RegisterWaitForSingleObject To Watch a Directory using RealBasic

I'm trying to watch a directory for changes using the FindFirstChangeNotification function. This works if I take the handle returned by FindFirstChangeNotification and stuff it into ...
1
vote
1answer
55 views

BASIC language - novice

Can anyone suggest a good book or site for learning BASIC language? I would like to try my hands on Realbasic but all that I read about this software is about the user interfaces. Not much is ...
1
vote
2answers
131 views

REALBasic Questions

In REALBasic, how do I loop through all of the objects in Window1? Is there some array property of Window1 with all of its children? Also, how do you set custom properties of objects: e.g. ...
1
vote
1answer
148 views

Creating bindings to C/C++ libraries for RealBasic

Many programming languages allow bindings to be created for C/C++ libraries and there are many tools to automate this process (swig, SIP). Are there any tools like these for making bindings to ...
1
vote
1answer
127 views

RealBasic Circular Slider

Is there any kind of circular slider widget in RealBASIC/Real Studio? I have the latest version for Mac, and a personal license.
1
vote
2answers
224 views

RealBASIC opening a program file on the default operating system Console/Terminal

To make my Real Studio application portable, I want to make it open an executable file on Mac, Windows, and Linux with the default Console/Terminal application. I have a string s, which is the ...
1
vote
2answers
95 views

Changing RealBASIC permissions on non-admin Mac

My app needs to write (and move) files to a folder from a non-admin user, and that user has no permission to use that folder. I tried changing the permissions for the folder but it doesn't appear to ...
1
vote
2answers
184 views

Creating a file of a certain type with Real Studio

I am making an editor with Real Studio for a special kind of file type. I made the file type with the File Type Editor, but how can I make a file output stream for that file type? Currently I am ...
1
vote
1answer
96 views

RealBasic app crashes on writeline

I have an Mac RB app that crashes when I write a line to a TextOutputStream on the user's preferences. The write operation works great when the user is the admin, but any other user crashes. This made ...
1
vote
3answers
416 views

What are some other comparable products to RealBasic?

I'm looking to get something that can create apps for Mac and Windows. It also seems that RealBasic can also create applications that have some sort of SQLLite DB built in. This is nice for standalone ...
1
vote
1answer
408 views

Where can I find Apple's standard source list / sidebar icons?

I'm writing an app for OS X (in REALbasic, not Objective-C). I have implemented a source list (i.e. the sidebar in iTunes) in this app. Where on my system can I find the "standard" icons used on a ...
1
vote
2answers
125 views

RealBasic byte to string

In RealBasic, is there a way to convert a byte to a string?
1
vote
1answer
213 views

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 ...
1
vote
1answer
500 views

REALBasic reporting with SQLite3 DB

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

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 ...
1
vote
1answer
217 views

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 ...
1
vote
1answer
63 views

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 ...
1
vote
2answers
335 views

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 ...
1
vote
1answer
37 views

when does occur this crash report?

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 ...
1
vote
1answer
482 views

global array in real basic

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) ...
1
vote
1answer
462 views

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 ...
1
vote
1answer
225 views

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 ...
0
votes
0answers
45 views

Using CryptHashData On Very Large Input

I am trying to MD5 hash user-supplied data (a file) using The Crypto functions in AdvApi32. All is well and good unless the file is very large (hundreds of MB. or larger) in which case I eventually ...
0
votes
1answer
21 views

RealBasic get index of a string

How can i get the index of a string in relbasic. e.g get the index of World in the example bellow Dim str as String = "Hello World" Thanks.
0
votes
1answer
77 views

Second call to GetStdHandle Returns an “invalid” handle

I'm trying to set the text color of a console to a given color, print one line (or more) and then change the color scheme back to what it was. Here's what I have: Function ...
0
votes
2answers
50 views

In RealStudio, how can I intercept pasting of rich text?

I'm trying to create a simple text field for WYSIWYG editing. However, I only want to allow certain types of formatting (e.g. Bold, Italic, Underline and a single heading type but no colors or ...
0
votes
2answers
109 views

Can I write a screen magnifier in RealBasic?

Title says it all. I want to create a screen magnifier in RealBasic but don't see any classes or APIs for reading areas of the screen that I can then render to my window. Anything? Side-question: ...
0
votes
1answer
87 views

ExitWindowsEx fails even after adjusting my privilege token

I'm trying to shutdown Windows programmatically: Function ExitWindows() As Integer Declare Function GetCurrentProcess Lib "Kernel32" () As Integer Declare Function OpenProcessToken Lib "AdvApi32" ...
0
votes
1answer
71 views

Get pid of the process wich killed my application

How could i detect which process killed my application? Do i need to run another instance wich creates a hook on my application or is there an easier way? Thanks:)
0
votes
1answer
66 views

REALBasic - Programmatically create controls

i'm tring to create some label programmatically, the code doesn't return any error but i cannot see any label in my window. dim dr As DatabaseRecord dim sql As String sql = "SELECT * FROM pack WHERE ...
0
votes
0answers
35 views

Looking for an organized list of ActiveX object IDs for embedding

I'm currently developing an application using Real Studio. Vaguely similar to Visual Basic, it provides the means by which to embed ActiveX objects inside an OLE Container. That said, I need an ...
0
votes
1answer
264 views

SetBkColor and SetTextColor Don't set the background and text color for DrawText

Using the following code to write a string to the DesktopWindow's device context works, but the background color and text color remain the same (white on blue): Private Sub writeToScreen(txt As ...
0
votes
2answers
141 views

What language is better for serial programming and working with MySQL database? Python? Realbasic?

I'm doing a project that is serial based and has to update a database when a barcode is being read. Which programming language has better tools for working with a MySQl database and Serial ...
0
votes
4answers
178 views

Is there any RealBasic studio for C language?

Is there any RealBasic studio like for GNU C language, Where i just wrote in 1 minute GUI button and msgBox, took 2 minutes to make it and deploy application, very fast and rapid for cross platform. ...
0
votes
2answers
213 views

Embedding simple terminal/console in RealBasic

I have a shell command that I am running in a RealBasic App, and until now I've just been reading the output, but it requires user input. Is there something I could use to embed something like a ...

1 2