9 Oct 2006 at 19:47 #1 Conrad11 Conrad11 Soldato Joined 12 Jun 2005 Posts 5,361 Hi there, I am doing a little VB.NET and was wondering how i can make an array and not set the size and then use a loop to keep adding things too it. Thanks.
Hi there, I am doing a little VB.NET and was wondering how i can make an array and not set the size and then use a loop to keep adding things too it. Thanks.
9 Oct 2006 at 22:04 #5 Conrad11 Conrad11 Soldato OP Joined 12 Jun 2005 Posts 5,361 Thanks. Couple of quick questions: How do you do a newline in VB.NET and how do you escape a quote in a string so i can have: Code: string = "this great string is "stringy" isn't it" Thanks.
Thanks. Couple of quick questions: How do you do a newline in VB.NET and how do you escape a quote in a string so i can have: Code: string = "this great string is "stringy" isn't it" Thanks.
10 Oct 2006 at 19:42 #8 Conrad11 Conrad11 Soldato OP Joined 12 Jun 2005 Posts 5,361 Thanks. In vb6 you can set 4 variables the same value by this: Code: a, b, c, d = 1 But how would i do this in VB.NET. Is it possible without using 4 different lines. Thanks.
Thanks. In vb6 you can set 4 variables the same value by this: Code: a, b, c, d = 1 But how would i do this in VB.NET. Is it possible without using 4 different lines. Thanks.
11 Oct 2006 at 12:52 #10 Conrad11 Conrad11 Soldato OP Joined 12 Jun 2005 Posts 5,361 Thanks for the reply, but it doesn't appear to work.