Home > Documentation > Syntax > Functions > Runvb
Execute Visual Basic code. The source is located independently and compiled when the project is built. The function is typically referenced with the appropriate namespace and class qualifications.
Definition
runvb(arg1)
Parameters:
- arg1 – string
Function to call.
Returns:
- The return value of the function that was called.
Eg:
runvb("namespace.class.method(args,etc)")
runvb("VB.MyClass.DoThis(123, ""myargval"")")

Leave a comment