Hi to all.
[CODE=vb]
Public Type hogan_cumn_buff
Idtype As String * 2
Idno As String * 16
Maincountry As String * 6
Residence As String * 2
Hometel As String * 8
Hometelext As String * 4
Pagerno As String * 8
Pagerext As String * 4
Officetel As String * 8
Officetelext As String * 4
Mobileno As String * 12
Action As String * 1
Remarks(1 To 40) As String
End Type
[/CODE]
In this type I have to assign a value by default, but I know it's not possible. Is there any way to assign a value?
Thanks
[CODE=vb]
Public Type hogan_cumn_buff
Idtype As String * 2
Idno As String * 16
Maincountry As String * 6
Residence As String * 2
Hometel As String * 8
Hometelext As String * 4
Pagerno As String * 8
Pagerext As String * 4
Officetel As String * 8
Officetelext As String * 4
Mobileno As String * 12
Action As String * 1
Remarks(1 To 40) As String
End Type
[/CODE]
In this type I have to assign a value by default, but I know it's not possible. Is there any way to assign a value?
Thanks
Comment