Click here to Skip to main content
15,891,423 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am working on an Invoice Application, I have placed Data Grid in my Invoice Form to insert information about Particulars, Quantity etc....

I want make my data grid in a such a way that it should only accept the data form the user and save it to the database, and does not show any earliest feed data.

If I can't use the Data Grid for this Achievement, so please help to know the control which I can use to get the data from the user other than TextBox.
Posted

If I understood corectly, you just want user to enter new data, and you don't want to show previously entered data?

In that case you probably want FormView control.
 
Share this answer
 
for not filling a datagrid automatically u just have to delete this

C#
private void Form1_Load(object sender, EventArgs e)
        {          
  this >>>>--     this.datoTableAdapter.Fill(this.DataSet.Datos_de_estudiantes);

        }


by this ur datagrid will just accepting data not showing
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900