New to WinForm from Asp.Net

  • Thread starter Thread starter Guest
  • Start date Start date
how to create a data form like Access column form? (not in a grid) should I
create seperated button for update, delete, insert?
 
Most developers probably use a Save button for both update and insert (a
button for Update and Insert tends to confuse the average user). On a
typical form, I might have Delete, Edit, Cancel, New, Save buttons. Of
course, you might have events firing from other controls and not need most
if any of those buttons. For example, some developers prefer to have grid or
keystroke events fire all of their updates depending upon what action the
user takes in the grid.
 
Thanks for the information.

It seems extra clicking on buttons will slow down massive data entry
task.... not sure if there is a good way to solve it...
 
Back
Top