SAMPLES - STANDARD MODULES
IMPORTANT: These modules required REALbasic 5.5 or higher. To use these modules, download them to your
hard drive by right clicking on them and selecting "Save Target As..." or
"Save Link As...". Once downloaded, import them into REALbasic for use by
selecting "Import..." from the "File" menu. Select the module to
import and click OK. |
Name: | Description: | Required: | |
modVisualBasic.xml | This is a MUST HAVE module for REALbasic if you are coming from Visual Basic 5, 6, or .NET. This module gives you access to many commonly used VB functions that don't exist in REALbasic and make the transition from VB to REALbasic just a little easier. |
Nothing (Some functions only work on Win32) |
|
modCOMDLG32.xml | This is a collection of functions that make it quick and easy to display common dialogs (i.e. - Open File, Save File, Select Folder, Select Color, Print, etc) within your application. |
modVisualBasic.xml (Some functions only work on Win32) |
|
modCommon.xml | This module is a combination of all of the common functions and Windows API's that I use most often. I kept having to add them every time I created a new project, so I figured I'd save myself some time by creating a reusable module that can be used in any program. |
Nothing (Some functions only work on Win32) |
|
Debug.xml | This "module" adds a "Debug" window to your project once it is imported. This debug window can be used to write out information at run-time just like in Visual Basic. You can make use of it via familiar method calls like: Debug.Print "String" Making use of this module will make debugging your projects much easier. |
Nothing (Some functions only work on Win32) |
|
InputBox.xml | The current version of REALbasic (5.5.3) does not have an "InputBox" function to compliment the "MsgBox" function that IS available. So this gives it to you by simply adding the "InputBox" window to your project (see sample code for proper use). |
Nothing | |