Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Converting Types

Status
Not open for further replies.

EscapeUK

Programmer
Jul 7, 2000
438
GB
How do I convert the following

Varient into long
String into loln
Varient into integer
String into integer

long into String
long into varient
integer into String
lnteger into varient

integer into long
long into integer
 
cLng(Varient) converts Varient into long
cLng(String) converts String into long
cInt(Varient) converts Varient into integer
cInt(String) converts String into integer

cStr(Long) converts long into String
cVar(Long) converts long into varient
cStr(Integer) converts integer into String
cVar(Integer) converts lnteger into varient

cLng(Integer) converts integer into long
cInt(Long) converts long into integer
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top