filed = Now and Disabled

  • Thread starter Thread starter Downie
  • Start date Start date
D

Downie

I have a datasheet table field that when clicked in the Now() Date is
inserted and the cell becomes disabled?

Just the date population si working!

Private Sub print_start_Click()
Me.print_start = Now
End Sub

The disabling feature isn't?
Private Sub print_start_Click()
Me.print_start = Now And disabled
End Sub

Suggestions??????
 
You will need to SetFocus to something else between those 2 lines.

You will not be able to disable it if it has focus, and there is a fairly
high chance of that if its Click event is executing.
 

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

Back
Top