View Single Post
  #1 (permalink)  
Old 07-01-2009, 03:55 PM
PepSoft PepSoft is offline
Junior Member
 
Join Date: Apr 2007
Location: Catalonia
Posts: 26
Default Dynamic Variable Module

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
Attached Files
File Type: zip DynVar.zip (16.6 KB, 46 views)
Reply With Quote