Delete Contents of text box

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
 
B

Bob

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top