|
-
September 16th, 2008, 09:21 PM
#1
[RESOLVED] Syntax of Public Type
Hello Guys, How can I convert this code into vb.net 2005
Public Type UserInfo
UserName As String
RealName As String
UserLevel As Integer
End Type
Thanks Guys
-
September 17th, 2008, 03:25 AM
#2
Re: Syntax of Public Type
Just change it to this:
Code:
Structure UserInfo
UserName As String
RealName As String
UserLevel As Integer
End Structure
You can refer to this link for more info:
http://msdn.microsoft.com/en-us/library/6s6zzdks.aspx
Burningslash12 - Visual Basic 2005
"We may rise and fall, but in the end, we'll meet our fate together..."
-
September 17th, 2008, 03:52 AM
#3
Re: Syntax of Public Type
-
September 17th, 2008, 03:55 AM
#4
Re: [RESOLVED] Syntax of Public Type
Burningslash12 - Visual Basic 2005
"We may rise and fall, but in the end, we'll meet our fate together..."
-
September 18th, 2008, 02:51 AM
#5
Re: [RESOLVED] Syntax of Public Type
hehehe! Newbies lang kasi ako. Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|