Hey All trying to do a multidimenison array but getting this error
An unhandled exception of type 'System.NullReferenceException' occurred in CompaniesHouseScanner.exe
Additional information: Object reference not set to an instance of an object.
Can you nice people help....
VB Code:
Dim KeyArray(,) As String Dim i As Integer KeyArray(0, 0) = ("Office :") KeyArray(0, 1) = ("Status :") KeyArray(1, 0) = ("status :") KeyArray(1, 1) = ("Company No") For i = 0 To 1 msgbox(KeyArray(i, 1)) next




Reply With Quote