Detecting selection change in datasheet form in Access

245 Views Asked by At

Is there event in Access that detects change of column selection on the same row in datasheet view?

1

There are 1 best solutions below

0
On

Not in pure datasheet view, but you can create a form and apply datasheet view. And then, all controls bounded to the table got the property TextBox.OnLostFocus. Read more about it:

TextBox.OnLostFocus Property (Access)

There, you can play and design code to detect when user changes column.