1
Answer

hw to create countersale form in inventory sys c# windowsapp

harsh shinde

harsh shinde

8y
304
1
I need to create a single form where i can handle more than 10 customer at the time of billing in inventory system using c# asp.net windows application.Counter sale means multiple salesmen can handle multiple customers on single computer. Can anybody help me?

Attachment: countersale.zip

Answers (1)
0
Jaganathan Bantheswaran

Jaganathan Bantheswaran

NA 21.9k 2.2m 13y
Hi,

In xxxx.xaml.cs,

1) Create a DataTable object to which than we will bind the GridView
DataTable dt=new DataTable();

2) IF you need two columns than create two DataColumn object
DataColumn dCol1=new DataColumn(FirstC, typeof(System.String)); // string FirstC="column1?
DataColumn dCol2=new DataColumn(SecondC, typeof(System.String)); // string SecondC="column2?

Add it to the table

dt.Columns.Add(dCol1);
dt.Columns.Add(dCol2);

3)Run the loop for as many rows you want to add.

// say you want to add two rows

for(int i=0;i<2;i++)
{
DataRow row1 = dt.NewRow();
row1 [FirstC] = "One";
row1 [SecondC] ="Two"
dt.Rows.Add(row1 );

}

Now iterate through each datacolumn and create a BoundField foreach column

foreach (DataColumn col in dt.Columns)
{
BoundField bField = new BoundField
bField.DataField = col.ColumnName;
bField.HeaderText = col.ColumnName;
GridView1.Columns.Add(bField);
}
GridView1.DataSource = dt;
//Bind the datatable with the GridView.
GridView1.DataBind();