My form contains a DBGrid that is link-ed (or Bound-ed) to a DAO Control (Data2). Data2 is a result of a SQL string and the result varies from 0 to n-Rows.
Question-1: What event does it trigger when a single row is selected on the DBGrid?
Question-2: Any idea or a lead on how to extract the specific value ( i.e, specific column) from the selected row?
Normally the following will get the vale of a specific column. I do not know in my case.
Set rst = Data2.RecordSet
X = rst![ColumnName]
Thank you in advance!!!
Question-1: What event does it trigger when a single row is selected on the DBGrid?
Question-2: Any idea or a lead on how to extract the specific value ( i.e, specific column) from the selected row?
Normally the following will get the vale of a specific column. I do not know in my case.
Set rst = Data2.RecordSet
X = rst![ColumnName]
Thank you in advance!!!