Posted 18 years ago
by bm

Product Version: SyntaxEditor v4.0.256
I am using the simple language addon code and have a slight disconnect on how to extend that code to include my own classes, objects, methods, ete. A good example of what I would like to do is to include IntelliPrompt member list functionality for my mssql database tables.
Example:
Account objAccount = new Account();
objAccount.name = "test";
objAccount.zip = "30309";
How can I make this happen? I am not sure how to capture what the end user typed in after they type '.'. In this example, how can I capture objAccount and then how can I determine what its assignment is and populate the member list?
Thanks for any help.
I am using the simple language addon code and have a slight disconnect on how to extend that code to include my own classes, objects, methods, ete. A good example of what I would like to do is to include IntelliPrompt member list functionality for my mssql database tables.
Example:
Account objAccount = new Account();
objAccount.name = "test";
objAccount.zip = "30309";
How can I make this happen? I am not sure how to capture what the end user typed in after they type '.'. In this example, how can I capture objAccount and then how can I determine what its assignment is and populate the member list?
Thanks for any help.