If you are new in REALbasic and if you have supported REALbasic City you probably like to know how can you use RBC Classes in your applications. This tutorial will show you step by step how can this be done. Watch it, learn it, enjoy it!
To use RBC Classes you must download it on hard drive and then simple drag and drop it to your REALbasic Project Tab. Now it’s ready to use in your application.

By every RBC Class article available at REALbasic City is a little tutorial showing you how to access all option available in those classes. For example when we like to use our RBCSize Class we go to REALbasic Code Editor and when we like to get something from it we can enter:
1 2 3 4 5 | Dim rbcs As New RBCSize rbcs.Size("/Users/qbap/Downloads/", 1) // (folder or file location, 0 = size in bytes or 1 = size in kB) MsgBox Str(rbcs.Data) + " kB" //convert Integer value to String and display a MsgBox info |
Of course using other Classes in REALbasic looks that same. If it’s a button class etc. when you will add it to Project Tab you will see it in Window GUI Builder Tab in All Controls. Now you can simply drag and drop it to the Window1 Class and use it like other Controls.
