Is there an event for a datasheet that triggers if any of the cells is clicked?
I tried the Form.click() event, but it is works only if the user clicks on the headings of the datasheet and not inside the cells.
Is there an event for a datasheet that triggers if any of the cells is clicked?
I tried the Form.click() event, but it is works only if the user clicks on the headings of the datasheet and not inside the cells.
Would require code in each control's Click event. What exactly are you trying to accomplish?
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
And you'd probably want to use the Control's Double-Click event...allowing the user to single-click into the Control in order to enter data, if need be.
Linq ;0)>
I have a form and a subform, I want to hide a control in the form every time the user clicks inside the subform ( of course with some other conditions to be checked)
I solved the problem using subform_enter event.
Thank you guys
Interesting and thanks for posting what actually worked for you...