You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. Registering will also remove advertisements. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!
If you have any problems with the registration process or your account login, please contact contact us.
Use the Base Skinnable App to skin your own programs using the same skin format as RR. Open the Visual Basic App in Visual Basic - all the code is commented so no FAQ required really.
There really isn't much you need to do with the base plugin:
-Design your skin
-Define your buttons/labels in a .skin file
-Open the Base PLugin
-Name your project in frmCOM (as the Comments tells you to)
-Add any button codes from your skin/software in the select statement of the EXEC function
-Add any label codes from your skin/software in the select statement of the LabelInfo function
That's about it for a simple application... And to be clear, the plugin you make can be used in RR or stand alone..
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
Please don't make any software available, without looking over at least the modules of the software..
This is what you find in the 'Exec' function:
'************************************
'* Commands NOT used for navigation *
'************************************
Case "mycommand1"
'Add here any custom commands..
Case "mycommand2"
'Add here any custom commands..
Label codes are defined in the 'labelinfo' function somewhat like the buttons..
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
I tried to have indicators (both RR and for my app)...
I've copied pasted some code from RR source code to the base plugin.. (GetIndicator function).... But NO luck!!
Should there be another way?