at the moment i've git this code and it works fine
Private Sub Command2_Click( )
Dim clmX As ColumnHeader
Set clmX = ListView1.Colum nHeaders. _
Add(, , "IO", ListView1.Width / 10)
For intI = 1 To 16
strIO = GetINI("IO", "IO" & intI, "?")
If strIO = "input" Then
Set clmX = ListView1.Colum nHeaders. _
Add(, , intI, ListView1.Width / 40)
End If
Next intI
ListView1.View = 3
no meightby a simple question, but is there a way to add values into certain
collomns.
thanks Maarten
Private Sub Command2_Click( )
Dim clmX As ColumnHeader
Set clmX = ListView1.Colum nHeaders. _
Add(, , "IO", ListView1.Width / 10)
For intI = 1 To 16
strIO = GetINI("IO", "IO" & intI, "?")
If strIO = "input" Then
Set clmX = ListView1.Colum nHeaders. _
Add(, , intI, ListView1.Width / 40)
End If
Next intI
ListView1.View = 3
no meightby a simple question, but is there a way to add values into certain
collomns.
thanks Maarten
Comment