salut,
chers developpeurs c# je suis plante sur ce probleme ,lors l'exécution un message d' erreur s'affiche
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 void CreateDataTable() { Dt.Columns.Add("نوع الحركة"); Dt.Columns.Add("رقم الفاتورة"); Dt.Columns.Add("تاريخ الفاتورة"); Dt.Columns.Add("البيان"); Dt.Columns.Add("عليه / مدين"); Dt.Columns.Add("له / دائن"); dgvProducts.DataSource = Dt; } void ResizeDGV() { this.dgvProducts.RowHeadersWidth = 30; this.dgvProducts.Columns[0].Width = 90; this.dgvProducts.Columns[1].Width = 100; this.dgvProducts.Columns[2].Width = 350; this.dgvProducts.Columns[3].Width = 90; this.dgvProducts.Columns[4].Width = 80; this.dgvProducts.Columns[5].Width = 80; } public FRM_CustomersTrans() { InitializeComponent(); CreateDataTable(); ResizeDGV(); }
Partager