'How to assign stuff in a textbox to a label Private Sub btnPrint_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPrint.Click lblReceipt.Text = txtName.Text End Sub 'How to clear a textbox and a label & set cursor to a textbox Private Sub btnClear_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClear.Click '---now clear the textbox and label txtName.Text = "" 'Or use: txtName.Clear() lblReceipt.Text = "" 'labels do not have a clear method '---show cursor back in name textbox so they can start over txtName.Focus() End Sub