Inline editing in DataGrid

  • Thread starter Thread starter Eka Gautama
  • Start date Start date
E

Eka Gautama

Hi All,

- Is it possible to do inline editing in DataGrid?
- Also, how to hide the start button? Is possible to have a form which
occupies the whole screen in PPC?

Thanks
 
1) The DataGrid does not support updating directly, however you can simulate
the effect by floating a textbox over the grid to appear as if you are
updating the contents in place.See Alex's code in this post:-
http://www.opennetcf.org/Forums/topic.asp?TOPIC_ID=245

2) Yes it is possible, set these properties on the form:-
FormBorderStyle - None
WindowState - Maximised
ControlBox - False
And make sure you don't have a MenuBar control on the form. Another issue is
that you need to remove the focus from the form and then reapply for the
startmenu and title bar to be hidden, such as displaying a messagebox or
other dialog at start-up.

Peter
 
Back
Top