Questions tagged [realstudio]

Real Studio is the line of software development products from Real Software.

Real Studio is the line of software development products from Real Software. These include:

  • Real Studio Personal Edition
  • Real Studio Professional Edition
  • Real Studio Web Edition
  • Real Studio Enterprise Edition

You should ask questions about Real Studio here on Stack Overflow, but if you have bugs to report, report them using Feedback. You may then want to post the link to your bug report here on Stack Overflow, so others can vote on how important your bug is to them. Real Software takes the votes into account when deciding which bugs to fix first.

21 questions
4
votes
1 answer

GetConsoleScreenBufferInfoEx fails due To an invalid parameter

I am trying to call the GetConsoleScreenBufferInfoEx function from a console application. If it matters, the application is a 32 bit application running on 64 bit Windows 7. The language is RealBasic. I believe I have defined all the structures…
Andrew Lambert
  • 1,869
  • 1
  • 17
  • 31
3
votes
1 answer

curl_formadd returns `CURL_FORMADD_OPTION_TWICE` on first call

I'm trying to construct an HTTP form using libcurl but I can't get it to work properly. Every time I call curl_formadd it returns CURL_FORMADD_OPTION_TWICE. The only information about this error indicates that libcurl thinks I'm trying to add two…
Andrew Lambert
  • 1,869
  • 1
  • 17
  • 31
3
votes
1 answer

Sending SCI_GETTEXT (and others) crashes the application

I am trying to use the Scintilla editor in my RealStudio application. I'm able to load the DLL, create the Scintilla child window and send messages to the window as long as the message parameters do not refer to a string. If I try to get or set a…
Andrew Lambert
  • 1,869
  • 1
  • 17
  • 31
2
votes
1 answer

Exporting to text in xojo

I want to export data from a listbox, Listbox1.AddRow "001", "Orange", "1.00","Arief" Listbox1.AddRow "001", "Apple", "1.00","Arief" Listbox1.AddRow "001", "Banana", "1.00","Arief" Listbox1.AddRow "004", "Orange", "1.00","Arief" …
Rivo
  • 21
  • 1
2
votes
2 answers

REALbasic: Sharing common code between disparate subclasses

I have two separate classes (A = a subclass of BevelButtom, B = a subclass of PushButton). Both A and B implement a number of identical methods in exactly the same way. Since both subclasses' superclasses are different and since RB doesn't support…
ABach
  • 3,743
  • 5
  • 25
  • 33
2
votes
1 answer

Using authentication with Proxy

Sorry for the double post: a friend of mine asked this on the mailing list but no one answered. I would like to know how to correctly use the ProxyAuthenticationRequired event of an HTTPSocket. I mean, how can I pass the login/password if the proxy…
matteo
  • 147
  • 1
  • 1
  • 9
1
vote
2 answers

Realstudio (2011 4.2) Date in Milliseconds

In my project I communicate with a Microsoft SQL-Database where I have a column with DATETIMEs. The date-information in the database is with Milliseconds, that's very important, like 2012-03-03 12:00:00.364 In Java, for example, it's no problem to…
1
vote
1 answer

Enum in realstudio

Please, tell me - how to create an enum in RealStudio( I'm pretty new in this area ). I want to create enum in the global scope for application, and can't find tutorial how to do this(((
kaa
  • 1,265
  • 5
  • 22
  • 39
1
vote
2 answers

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 different fonts.) The issue is if I use an editor…
Mark A. Donohoe
  • 28,442
  • 25
  • 137
  • 286
1
vote
2 answers

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 terminal or a console application that could run a…
None
  • 3,875
  • 7
  • 43
  • 67
1
vote
2 answers

Why does Real Studio Break on the Catch of an Exception?

I have a try-catch block like this: Try Listbox1.RemoveRow(Listbox1.ListIndex) Catch err As OutOfBoundsException MsgBox("Derp") End Try When I run my project in the debugger I get an OutOfBoundsException on the exact line I was trying to catch!…
None
  • 3,875
  • 7
  • 43
  • 67
1
vote
2 answers

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. Me.isFlamingo = true Thanks in advance!
Leticia Meyer
  • 167
  • 1
  • 3
  • 10
1
vote
2 answers

Get value of variable named in a string

Is there any way to get the value of a variable that has been named in a string. For instance: Dim number As Integer = 12 Dim numberCopy As Integer = Convert("number") ' numberCopy will now equal 12 ' Convert is the function to convert the string…
Mark Oxley
  • 380
  • 3
  • 7
1
vote
2 answers

RealBasic byte to string

In RealBasic, is there a way to convert a byte to a string?
Marvin
  • 11
  • 1
1
vote
2 answers

REALBasic reporting with SQLite3 DB

How do I create a report using SQLite3 DB? I'd appreciate just step by step or pseudo-code.
Cocoa Dev
  • 9,361
  • 31
  • 109
  • 177
1
2