Quote:
|
Originally Posted by Psychosis
Private Sub btnClick_Click()
intNumber As Integer
intNumber = intNumber + 1
lblCount.Caption = "Count: " + intNumber
End Sub
|
Maybe it has changed in newer version, but shouldn't it be:
lblCount.Caption = "Count: " & intNumber
Absolutely not sure, I haven't touched VB for a few years.