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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HELP: How to define an array of 10

Status
Not open for further replies.

redeemasp

Programmer
Jun 1, 2004
63
GB
how do u??

in strings and numbers?

I can define an array with a certain number of elements, e.g. 2 that have numbervar

shared currencyvar array shdSellingNew1 := MakeArray(0,1000);

 
NumberVar Array num;
StringVar Array str;

ReDim num[10];
ReDim str[10];

// This will = 20
Count(num) + Count(str);

-dave
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top