Search results

  1. T

    [Visual Basic] amazingly dumb question, but confusing.

    It sounds like you are trying to set a label to a number. You can't do that. A label is a control. You need to set the text property of the label to the number. For example, don't do this, it won't work. label1 = 9 but instead, do this: label1.text = 9
Top