Hi
How can I include in name of my variable value of other variable? I
have following code:
For x = 0 To 10
Dim column As New DataGridTextBox Column
column.MappingN ame = magazyny(x)
column.HeaderTe xt = magazyny_wys(x)
column.Width = 100
TblStyle.GridCo lumnStyles.Add( column)
Next
and what i can do with variable Column?! I need sth like that:
Dim column + x As New DataGridTextBox Column
Or maybe u know other way to add several columns to tablestyle using
For loop
Thx Mrozu
How can I include in name of my variable value of other variable? I
have following code:
For x = 0 To 10
Dim column As New DataGridTextBox Column
column.MappingN ame = magazyny(x)
column.HeaderTe xt = magazyny_wys(x)
column.Width = 100
TblStyle.GridCo lumnStyles.Add( column)
Next
and what i can do with variable Column?! I need sth like that:
Dim column + x As New DataGridTextBox Column
Or maybe u know other way to add several columns to tablestyle using
For loop
Thx Mrozu
Comment