I am developing an application for windows mobile in C#
(visual studio 2008
) and sql server 2008
I use a "select" to display columns in a DataGrid
:
SqlCeDataAdapter da = new SqlCeDataAdapter("SELECT * FROM DATOST", conn);
da.Fill(ds, "DATOST");
dtgLista.DataSource = ds.Tables[0].DefaultView;
and it shows something like this
What I'm trying to do is to add a new column with the word remove
and when it be selected delete the row.
I tried with this
--- and more links I can't write because i need at least 10 reputation to post more than 2 links---
But My app doesn´t work
Any easier idea please?
Thank You