|
-
Apr 19th, 2002, 11:00 AM
#1
-
Apr 19th, 2002, 11:53 AM
#2
Add a new class (to your project
type this
Public Class MyStructures
Public Structure myBlah
Dim item1 As String
Dim item2 As String
Dim item3 As Integer
End Structure
End Class
In your form code type
Dim blah As MyStructures.myBlah
blah.item1 = "Hello"
blah.item2 = "World"
blah.item3 = 3
Console.WriteLine("item1=" & blah.item1)
Console.WriteLine("item2=" & blah.item2)
Console.WriteLine("item3=" & blah.item3)
-
Apr 19th, 2002, 01:49 PM
#3
-
Apr 19th, 2002, 02:52 PM
#4
What are you trying to accomplish? It might be helpful if you posted your code.
-
Apr 19th, 2002, 05:02 PM
#5
havent done anything yet, I was just trying to START a new app and I figured out that I can't make the structure that way
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
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
|