Can DataGridView Emulate a Microsoft Access form ?

Lin100

Well-known member
Joined
Dec 12, 2022
Messages
69
Programming Experience
10+
In DataGridView, is there a way where you could control the individual cell like
events double-click for column 2 and another form would open ?

In DataGridView, is there a way where you could control the individual cell like
put in a new value for column 2, press TAB and the events After-Update is activated
for column 2; and column 3 would equal to column 1 * column 2
(column 3 = column 1 * column 2) ?
 
Yes. Almost anything is possible. The question is how much time (and money) do you want to invest into doing it.
 
1) Is there any code example for question 1 and question 2 ?
2) The equivalent of events double-click in C# would be
CellDoubleClick.
3) Would the The equivalent of events After-Update in C# would be
CellEndEdit or CellValueChanged ?
 
If you look at the documentation for the DataGridView, almost every one of the various methods, events, and properties have examples. (The Program Manager working on the DataGridView was almost OCD about ensuring there would be lots of examples.)
 
Back
Top Bottom