I have a bunch of params:
InputParam1, InputParam2, InputParam3, etc...
I would like to loop through them instead of writing out code for each one, but am having some issues getting it to work correctly.
Here is what I have so far:
Dim iCount As Integer
Dim objTemp As Object
Dim strTemp As String
For iCount = 1 To 50
objTemp = "InputParam" & iCount.ToString
strTemp = CStr(objTemp)
Next
The major issue with what I have is that I cannot assign the string to the object and just creating the string gives me an error too.