halu,

i don't know if my subject gets the very title of what i wanted. hehe... i wanted to know about something like assigning structure... i encounter this in C... but this gives me error when i try to apply it in VB... code is like this...
Code:
typedef struct{
	char code[10],lastname[10],firstname[10],mi,address[10];
	int location;
	short status;
}salesman;

main(){
	salesman s={"01","lastname","firstname",'m',"address",1,1};
	printf("%d\n",s.name);
}
is that possible in VB? just want to clarify if vb.net offers this kind of assignment...

something like a structure receiving {data....}

thanx guys...