PDA

Click to See Complete Forum and Search --> : Total Newbie Question


vbuser1976
Mar 12th, 2001, 09:51 AM
Hi again everyone!

I just wanted to know if you can create a user-defined data type using VB script. If so, how is it done? Can you change the data type to like "AS integer"? Or do each field have to be variant? Some examples would be greatly appreciated. I hope this doesn't sound confusing.

Thanks in advance.

Cander
Mar 12th, 2001, 10:08 AM
Can you? Yes
How? The same way you do it in VB

Type name
first
last
middle
End Type

Data type as integer? No. Variants only

vbuser1976
Mar 12th, 2001, 10:09 AM
That answered my question. Thank you very much.