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

Mixed data type array

Status
Not open for further replies.

gcole

Programmer
Aug 2, 2000
390
US
I have a dynamic array with mixed data types. When I load a value it rounds up. How can I avoid this?
 
Hi,
Dim you array as Variant.
Code:
Dim vMyArray() [As Variant]
Since Variant is the default, the "As Variant" is optional. Skip,
metzgsk@voughtaircraft.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top