Labels Question

S

Simon

Hello all,

Using VB, how can I change the text in a label that's linked to a control?

The label name is: lblAddItem

-Simon
 
R

Ricky Hicks Access MVP

Use the .Caption property ...

Me.lblAddItem.Caption = "What Ever Here"

R. Hicks
 
Top