Click to See Complete Forum and Search --> : syntax problem


Drew
March 17th, 2001, 09:48 PM
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?

Dusey
March 17th, 2001, 10:22 PM
Try this:

lblQuestion.Caption = strTestName & " " & CStr(intNumberOfQuestions)