Hay All, I'm kind of new to Realbasic, but I've managed to use FTPKit to connect to my server, however if i create a FTPQueue object and add some files to that to upload, only 38bytes is being sent.
My loggedIn() event looks like this
Dim q as FTPQueue = new FTPQueue
q.UploadFile( "/Users/myuser/Desktop/Junk/a.jpeg", "/httpdocs/a.jpeg...
In RealBasic, is there a way to convert a byte to a string?
...
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 show the photos/images on target PC as a slide show in full screen.
Is it possible to do this for multiple images?
...
Hi
I use real basic for programming and I want to export some data to a word file that can be opened with "Open Office" or any other word processing software that can work on MAC OSX, any advise ?
Many Thanks
...
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 sidebar, i.e: things like the "eject" and "battery" icon seen in iTunes when your iPod is plugged in. I've checked the iTunes package conten...
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 apps that need to save state/data.
I have Flash, which can create executables for Mac and Windows, but it doesn't have the easy database ...
Any help would be greatly appreciated!! Here's what is happening:
When I choose #1 Recieving at the main menu that takes me to the "scan code" screen. Ok, so I want to quit and go back to the main menu so I press the F1 key (CRT$). When I go from this screen back to the main menu a couple of time the screen goes blank and the program st...
Hi,
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 me think it's a permission issue, so I tried changing permission, without luck.
The error is:
"An exception of class NilObjectExcepti...
Hi,
I'm developing an application in RealBASIC, but I need the list of interface names to populate a dropdown box.
Parsing ifconfig didn't work (Got eth0, eth1, lo, etc...)
I need the name that is displayed in system preferences (Ethernet, Airport, etc...)
Is this possible in RealBASIC or is there a terminal command I can parse?
Than...
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 using:
DIM f AS FolderItem
DIM t AS TextOutputStream
f = GetFolderItem(fileName)
t = TextOutputStream.Create(f)
t.Write theData
t.Close
But t...
I'm work on a tool for learning purposes, it perform a search with google apis. Using HTTPSocket I get the results of the search in json format and then parse it to dictionary with the json.parser written by CharcoalDesign.co.uk
This is how looks json results:
{"responseData": {
"results": [
{
"GsearchResultClass": "GwebSearch",...