Questions tagged [realbasic]

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

REALbasic is a strongly-typed, object-oriented version of the BASIC programming language whose flagship feature is probably its rich support for cross-platform application development. It supports Microsoft Windows, Mac OS X, most 32-bit versions of Linux, and web applications.

It was developed and is currently marketed commercially by Xojo of Austin, Texas. Versions since 2013 have been called Xojo.

The language supports single inheritance and interfaces, class methods and properties, automatic memory management via reference counting, operator overloading, delegates, introspection, and namespaces. The built-in framework also offers an extensive set of functionality, which helps to make rapid application development possible.

The primary development environment for REALbasic is REAL Studio, marketed by the same company.

106 questions
1
vote
2 answers

.NET WebSocket Client Control

I am trying to write a very simple WebSocket client with VB.NET but couldn't find a ready-to-use webSocket control. There is one control that does exactly what I am looking for: IP*Works! WS from nSoftware, but unfortunately they charge a fortune…
Jack M.
  • 3,676
  • 5
  • 25
  • 36
1
vote
2 answers

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…
1
vote
1 answer

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…
1
vote
1 answer

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?
orange
  • 341
  • 1
  • 4
  • 11
1
vote
2 answers

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…
1
vote
1 answer

Pictures using Postgres and Xojo

I have converted from a MySQL database to Postgres. During the conversion, the picture column in Postgres was created as bytea. This Xojo code works in MySQL but not Postgres. Dim mImage as Picture mImage = rs.Field("Picture").PictureValue Any…
kipsoft
  • 359
  • 4
  • 16
1
vote
1 answer

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 Error Number: 0 Error Message: Stack…
Pentium10
  • 204,586
  • 122
  • 423
  • 502
1
vote
1 answer

REALBasic/Xojo NilObjectException When Calling Class Method From Property

I'm writing a console application used for UDP-based chat. I have a class called App whose Super is ConsoleApplication (the "main" class) and a UDPInterface class whose Super is EasyUDPSocket. In the App class, there is a property called UDP whose…
1
vote
2 answers

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 (edit: dead link) Using camModel(1) compiles and runs but it doesn't return…
jason
  • 13
  • 3
1
vote
1 answer

Populating folders in hierarchical listbox

I'm populating a hierarchical listbox with folders and files. I fill my listbox with these lines of code: For i As Integer = 1 To General.GetBlocksFolder.count If General.GetBlocksFolder.Item(i).Directory Then …
Mathias Maes
  • 461
  • 1
  • 6
  • 17
1
vote
3 answers

Can I store an SQLite database within another SQLite database?

I am actually using an old version of Realbasic (2008) and have been using VB Script to back up several small databases as Zip files. I now find that thnis method doesn't work On Windows 8 and is also not cross-platform. As I would like the backup…
Alan McTavish
  • 121
  • 1
  • 8
1
vote
3 answers

Delete a character from string realbasic

I have a virtual keyboard created in RealBasic. When I press letters, numbers I append it to a textfield all its ok but, how do I delete characters from that textfield from current cursor position when I press "Delete" button from virtual…
Mihai Totoianu
  • 41
  • 1
  • 1
  • 3
1
vote
4 answers

XOJO simple file copy

Very basic thing I am trying to accomplish. A have a source of a file (image) stored as string (simple path). I want to copy that file to custom destination. to be more precise to a folder name image which is located in the application root. I have…
EnterpriseXL
  • 467
  • 8
  • 19
1
vote
3 answers

XOJO delete a record from SQLite database

I am using Xojo 2013 Version 1. I am trying to delete a record from a SQLite database. But I am failing miserably. Instead of deleting the record, it duplicates it for some reason. Here is the code that I use: command = "DELETE * from names where ID…
EnterpriseXL
  • 467
  • 8
  • 19
1
vote
1 answer

Try Catch statement realBasic

I am trying to wrap up simple statement within try catch. Problem is that all examples that I was able to find talk about the errors which are predefined. I need a generic error, similar to try/catch in C#.
EnterpriseXL
  • 467
  • 8
  • 19