03-19-2008, 02:02 PM
i want to build the example with qm:
Drag and drop DataGrid in VB.NET 2005 windows application, vb.net samples and tutorials
can the DataGridView be used in qm (can't find it) ?
and what about the Database class used there ?
thanks
Drag and drop DataGrid in VB.NET 2005 windows application, vb.net samples and tutorials
can the DataGridView be used in qm (can't find it) ?
and what about the Database class used there ?
DT1 = New DataTable
DT2 = New DataTable
'The First Table has four columns
DT1.Columns.Add("Name", Type.GetType("System.String"))
DT1.Columns.Add("Designation", Type.GetType("System.String"))
DT1.Columns.Add("Department", Type.GetType("System.String"))
DT1.Columns.Add("Salary", Type.GetType("System.String"))
'Second has only two
DT2.Columns.Add("Name", Type.GetType("System.String"))
DT2.Columns.Add("Designation", Type.GetType("System.String"))
thanks