Okay so Im trying to do this:
Public C As Integer
Public Functions As String
For C = 0 To Ubound(Functions)
'Do code and stuff
Next
and it compiles nicely but when i run it it flags the line that calls Ubound() (the definition of the For loop or whatever it's called) and it says:
Quote:
System.ArgumentNullException
Value cannot be null
|
I kind of know what this means but I just started using VB.NET because Im used to C and PHP mostly (OSS LAMP stuff) so can somebody tell me how i can fix this problem? thanks.