B 
		
								
				
				
			
		Brian
I have a structure that contains an array of type string.
public structure MyStruc
dim MyString as string
end structure
in vb 6 I would have done something like this
public type MyStruc
Dim MyString as string *6
end type.
how can i limit the MyString to just 6 characters.
				
			public structure MyStruc
dim MyString as string
end structure
in vb 6 I would have done something like this
public type MyStruc
Dim MyString as string *6
end type.
how can i limit the MyString to just 6 characters.
