Question
When I try to Input two string names and then output them in a label
I get Compile Error Expected:)
My code is:lblQuestion.Caption = (strTestName,intNumberOfQuestions)
What is my syntax proglem?
Printable View
Question
When I try to Input two string names and then output them in a label
I get Compile Error Expected:)
My code is:lblQuestion.Caption = (strTestName,intNumberOfQuestions)
What is my syntax proglem?
Try this:
lblQuestion.Caption = strTestName & " " & CStr(intNumberOfQuestions)