Delete Contents of text box

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

--
In a tabular Form what would I put in the code of a Command Button to delete
the Contents of [tbInvoiceNo]on that line...............Thanks for any
Help...........Bob






..........Jenny Vance
 
Oops i got it: Thanks

Private Sub Command8_Click()
On Error GoTo Err_cmdDeleteDate_Click


tbInvoiceNo.value = ""

Exit_cmdDeleteDate_Click:
Exit Sub

Err_cmdDeleteDate_Click:
MsgBox Err.Description
Resume Exit_cmdDeleteDate_Click

End Sub
 
Back
Top