Click to See Complete Forum and Search --> : How do you show something in a label?


Drew
March 17th, 2001, 07:38 PM
I want to show a row of letters in a label when the form loads.

So It would be lblLabel. Something " ABCDE"
What would the something be and all of this would go under the
Private Sub Form_Load()

or

Private Sub Form_GotFocus()

If I was Inputting a string from a sequential file how would this look?
Open strFileName For Input As #intFileNum
Input #intFileNum, strTestName

Then would I put?

lblLabel. something strTestName

phil m
March 17th, 2001, 08:46 PM
label1.caption ="abc"

command1 is also caption. caommand1.caption ="abc"

In fact everything but text boxes = caption.

text1.text = "abc"

Good luck

Phil