D
Derek Martin
Thanks in advance:
Dim thisperson(7) As Array
Dim validcheck As Boolean = False
thisperson = getperson(usernametextbox.Text, pinnumbertextbox.Text)
....
private function getperson(byval username as string, byval pinnumber as
string)
....
dim returnarray(7)
....
return returnarray
Error: Invalid cast exception is being thrown on thisperson = ... after it
executes the function...what am I missing here????
Thanks!
Derek
Dim thisperson(7) As Array
Dim validcheck As Boolean = False
thisperson = getperson(usernametextbox.Text, pinnumbertextbox.Text)
....
private function getperson(byval username as string, byval pinnumber as
string)
....
dim returnarray(7)
....
return returnarray
Error: Invalid cast exception is being thrown on thisperson = ... after it
executes the function...what am I missing here????
Thanks!
Derek