Dynamic Variable Module

PepSoft

Member
Licensed User
Longtime User
This module have 4 funcions:

SetVar(Name,Value)
Define variable.
If variable exist then change the value.
DynVar.SetVar("MyVariable1",255)
DynVar.SetVar(TextBox1.Text,TextBox2.Text)


GetVar(Name)
Return the value of the variable.
TextBox1.Text=DynVar.GetVar("MyVariable1")


DynVar.DelVar(Name)
Delete the variable


DynVar.ClearAll
Delete all variables

With this module is possible create and work with Dynamic variables.

Sorry for my English

PepSoft
 

Attachments

  • DynVar.zip
    16.6 KB · Views: 305
Top