P paradise Nov 15, 2003 #1 i need to have a label containing the value the user key into the textbox. how do i write a code for it? thanks
i need to have a label containing the value the user key into the textbox. how do i write a code for it? thanks
C Chip Pearson Nov 15, 2003 #2 Try something like Private Sub TextBox1_Change() Me.Label1.Caption = Me.TextBox1.Text End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com
Try something like Private Sub TextBox1_Change() Me.Label1.Caption = Me.TextBox1.Text End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com
M mattis2k Nov 15, 2003 #3 try this Private Sub TextBox1_Change() Label1.Caption = TextBox1.Text End Su