I have a huge form with tons of txtboxes, for each txtbox, I create a get function to retrieve the data from user input.
Public ReadOnly Property getTeam1() As String
Get
getTeam1 = txtTeam1.Text & " "
End Get
End Property
When the button is click, I call a function from class data to retrieve the txtbox data. (eg. tempObj.add(getTeam1, getTeam2, etc))
Is there a limit on input parameter? (We're talking about 60+ input parameters) The web didn't generate any error when I run it, but it doesn't seem to take in any data. When I toggle debug points, the compiler told me that there's some kind of error retrieving the data. When I run the same function using 4 parameter input for testing, it ran just fine.
Any suggestions?
Thanks.
Public ReadOnly Property getTeam1() As String
Get
getTeam1 = txtTeam1.Text & " "
End Get
End Property
When the button is click, I call a function from class data to retrieve the txtbox data. (eg. tempObj.add(getTeam1, getTeam2, etc))
Is there a limit on input parameter? (We're talking about 60+ input parameters) The web didn't generate any error when I run it, but it doesn't seem to take in any data. When I toggle debug points, the compiler told me that there's some kind of error retrieving the data. When I run the same function using 4 parameter input for testing, it ran just fine.
Any suggestions?
Thanks.