[VB6]MSFlexGrid使用記錄

- 設定
Components加入MSFlexGrid
Microsoft FlexGrid Control 6.0 (SP6)
C:\Windows\SysWow64\MSFLXGRD.OCX

加入後即在
Component Panel上出現MSFlexGrid的控件 (紅框處)
Form上建立MSFlexGrid控件對控件按右鍵可設置其Property

Common Property
Style Property
 Font Property
 Color Property
 Picture Property
Code中設置Property較有彈性, 故於選單中的屬性怒不設定


- 記錄
  1. ' configuration property of MSFLESGRID1
  2. With MSFlexGrid1
  3. .AllowBigSelection = False
  4. .ColAlignment(-1) = flexAlignCenterCenter
  5. .FixedCols = 0
  6. .FixedRows = 1
  7. .HighLight = flexHighlightNever
  8. .ScrollBars = flexScrollBarVertical
  9. .ScrollTrack = True
  10. End With
  • Property AllowBigSelection As Boolean
Row / Column點選Header, 全選該Rows Columns

  • Property ColAlignment(index As Long) As Integer
指定Columns的文字對齊, -1表設置全部Columns

  • Property FixedCols As Long
  • Property FixedRows As Long
指定Header的數量

  • Property HighLight As HighLightSettings
設定圈選欄位時是否HighLight

  • Property ScrollBars As ScrollBarsSettings
設定ScrollBars的顯示

  • Property ScrollTrack As Boolean
拉動ScrollBars, 是否即時顯示內容


  1. With MSFlexGrid1
  2. ' Set the Dimension for Row & Column
  3. .Cols = 6
  4. .Rows = size + 1 ' Add the Position of Title(idx=0)
  5.  
  6.  
  7.  
  8. ' Fixed Row Position
  9. .TopRow = 1
  10.  
  11.  
  12.  
  13. ' Set the Width of Columns (Balance Width)
  14. For i = 0 To (.Cols - 1)
  15. .ColWidth(i) = .width / .Cols
  16. Next
  17.  
  18.  
  19.  
  20. ' Content of Header
  21. posTitle = 0 ' start from idx=0
  22. .TextMatrix(posTitle, 0) = selVoltage & Space(1) & convBitPos(regBit(cmd, reg))
  23. .TextMatrix(posTitle, 1) = "Voltage(V)"
  24. .TextMatrix(posTitle, 2) = "V(Meas.)"
  25. .TextMatrix(posTitle, 3) = "I(Meas.)"
  26. .TextMatrix(posTitle, 4) = "V-Shift"
  27.  
  28. ' Set the Bold Property for Header
  29. .row = posTitle
  30. For i = 0 To (.Cols - 1)
  31. .col = i
  32. .CellFontBold = True
  33. Next
  34.  
  35.  
  36.  
  37. ' Insert Data
  38. posData = 1 ' start form idx=1
  39. For i = 0 To (size - 1)
  40. .row = i + posData
  41.  
  42. .TextMatrix(i + posData, 0) = IntToBin(a_regData(i), convBitLen(regBit(cmd, reg))) & "b"
  43. .TextMatrix(i + posData, 1) = a_regValue(i)
  44. .TextMatrix(i + posData, 2) = a_regVmeas(i)
  45. .TextMatrix(i + posData, 3) = a_regImeas(i)
  46. .TextMatrix(i + posData, 4) = a_regVshift(i)
  47. ' 背景交替顏色
  48. If i Mod 2 <> 0 Then
  49. For j = 0 To (.Cols - 1)
  50. .col = j
  51. .CellBackColor = &H80FFFF
  52. Next
  53. End If
  54. Next
  55. End With
  56.  
  • Property Cols As Long
  • Property Rows As Long
設定或取得Column / Row的數量

  • Property TopRow As Long
設置顯示的位置

  • Property ColWidth(index As Long) As Long
設置Column的寬度

  • Property Width As Single
整個MSFlexGrid控件的寬度

  • Property TextMatrix(Row As Long, Col As Long) As String
填入/讀取Cell的內容

  • Property CellFontBold As Boolean
設定當前Cell的文字是否為粗體 (須搭配Col/Row指定Cell)

  • Property CellBackColor As OLE_COLOR
設置Cell的背景顏色 (須搭配Col/Row指定Cell)



  1. With MSFlexGrid1
  2. For i = 0 To 10
  3. .AddItem "INDEX_" & i & vbTab & "Test" & vbTab & "by Martin"
  4. Next
  5. End With

  • Sub AddItem(Item As String, [index])
連續寫入資料使用vbTab字元分離不同Columns, Index指定插入哪一個Row


Ref:

留言

這個網誌中的熱門文章

[VB6]使用File Dialog選擇檔案

[VBA]如何藉由使用 Excel 中的 Visual Basic 程序選取儲存格/範圍