请各位前辈帮我看看为什么不对
我利用MSHFlexGrid控件让表的第四行第四列的表格显示信息Private Sub Form_Load()
MSHFlexGrid.Row = 4
MSHFlexGrid.Cols = 4
MSHFlexGrid.Text = "流量"
End Sub
为什么显示错误
2016-05-12 12:09
2016-05-12 13:13
2016-05-12 13:42
2016-05-12 16:43
2016-05-12 16:43
程序代码:DataGridView1.Columns(0).HeaderText = "类型" DataGridView1.Columns(0).ReadOnly = True …… DataGridView1.Rows(i).Cells(1).Value = "m/s"
2016-05-12 17:12
程序代码:MSHFlexGrid1.Clear
MSHFlexGrid1.Visible = True
With MSHFlexGrid1
.Cols = 5
.Rows = 2
.TextMatrix(0, 0) = "ID"
.TextMatrix(0, 1) = "名称"
.TextMatrix(0, 2) = "型号"
.TextMatrix(0, 3) = "批次"
.TextMatrix(0, 4) = "生产时间"
.TextMatrix(1, 0) = 1
.TextMatrix(1, 1) = "ABCD"
.TextMatrix(1, 2) = "A01-2"
.TextMatrix(1, 3) = "160421"
.TextMatrix(1, 4) = "2016-4-21"
.ColWidth(0) = 600
.ColWidth(1) = 1200
.ColWidth(2) = 1000
.ColWidth(3) = 800
.ColWidth(4) = 1000
End With

2016-05-12 18:05

2016-05-14 15:29