Simple scripting language using classes. Uses callbyname function to run a classes methods. This allows for very fast parsing, because there is no IF Then or Case statements. Create a class module with the functions that you want in your scripting 'language'. Then you can simply send a string of text into the class' parse function to get the name of the function and the values to be operated on. After you have gotten the name, use CallByName with the vbMethod operator. This is a quick class (OOP) example. To keep it simple, I didn't include properties, only public and private variables.
File List:
Project1.vbp
1Kb
Project1.vbw
84b
clsScript.cls
2Kb
frmMain.frm
2Kb
Similar code
Create objects without registration
(Popularity: ) : This is not my code it is a code made by [rm_code]. This code will allow you to create objects without registering the dll or ocx first! You simply call CreateObjectFromFile and the code will turn it into an object. ... General Card/Card-Deck Class an example
(Popularity: ) : The Classes Card.java and Carddeck.java can be used to create applications with playing cards. I created a BlackJack game for an example Auto Generate Form Code
(Popularity: ) : This code automatically generates form code. This is a very simple example illustrating concept only. Browse to the form with textboxes on it and click on the convert button. Add the auto generated coded form to the project(remember to save) ... Constructors In VB5-6
(Popularity: ) : Here is the project that will allow you to simulate constructors in VB. Meant for ActiveX DLL/EXE use. In your DLL you have to add Class ant set it as “GlobalMultiUse” (in EXE I think it’s better to se to ...