'MSFlexGrid赋值的方法
MSFlexGrid1.TextMatrix(0,1) = "老师" MSFlexGrid1.TextMatrix(1,2) = "学生" MSFlexGrid1.TextMatrix(2,3) = "校长" MSFlexGrid1.TextMatrix(3,4) = "班主任" MSFlexGrid1.TextMatrix(4,5) = "教务主任"
MSFlexGrid1.AddItem 2 MSFlexGrid1.AddItem 4 MSFlexGrid1.AddItem 6 MSFlexGrid1.AddItem 8
``MSFLEXGRID 中如何取的某个单元格的数据
Private Sub MSFlexGrid1_Click() MsgBox MSFlexGrid1.TextMatrix(MSFlexGrid1.Row,MSFlexGrid1.Col),vbOKOnly,"提示消息" End Sub
MSFlexGrid1.Row,表格中的当前行 MSFlexGrid1.Col,表格中的当前列
'初始化MSFlexGrid
Dim i As Integer MSFlexGrid1.Rows = 0 For i = 0 To 10 MSFlexGrid1.AddItem "AA" + Str(i)
'For i = 0 To 10 MSFlexGrid1.Col = 1 MSFlexGrid1.Row = i MSFlexGrid1.Text = CStr(i)
MSFlexGrid1.Col = 2 MSFlexGrid1.Row = i MSFlexGrid1.Text = CStr(i) & CStr(i)
MSFlexGrid1.Col = 3 MSFlexGrid1.Row = i MSFlexGrid1.Text = CStr(i) & CStr(i) & CStr(i)
Next i
'实现MSFlexGrid控件,单行背景为浅灰,双行为兰色
Dim j As Integer With MSFlexGrid1 .AllowBigSelection = True ' 设置网格样式 .FillStyle = flexFillRepeat For j = 0 To .Rows - 1 .Row = j: .Col = .FixedCols .ColSel = .Cols() - .FixedCols - 1 If j Mod 2 = 0 Then .CellBackColor = &HC0C0C0 ' 浅灰 Else .CellBackColor = vbBlue ' 兰色 End If Next j End With
'在MsFlexGrid控件单元格中插入背景图形
Set MSFlexGrid1.CellPicture = LoadPicture("f:tempsnow.bmp")
'MSFlexGrid控件如何移到最后一行
MSFlexGrid1.TopRow = MSFlexGrid1.Rows - 1
'隐藏第一行 'Private Sub Command1_Click1() 'MSFlexGrid1.RowHeight(1) = 0 'End Sub
'隐藏第一列 'Private Sub Command_Click2() 'MSFlexGrid1.ColWidth(1) = 0 'End Sub
在MSFlexGrid上点击右键,选择属性,选择"选择模式",自己任选 点击得到行代码 msgrid1.Col就是你选择的列号 msgrid1.Row 就是你选择的行号 msgrid1.text就是你选择单元格的内容。
>> 将文本赋值给MsFlexGrid的单元格 MsFlexGrid.TextMatrix(3,1)=”Hello”
>> 在MsFlexGrid控件单元格中插入背景图形 Set MsFlexGrid.CellPicture=LoadPicture(“C:temp1.bmp”)
>>选中某个单元 MsFlexGrid.Row=1 MsFlexGrid.Col=1
>>用粗体格式化当前选中单元 MsFlexGrid.CellFontBold=True
>> 添加新的一行 使用AddItem方法,用Tab字符分开不同单元格的内容 dim row as string row=”AAA”&vbtab&”bbb” MsFlexFrid1.addItem row
>>怎样来实现MSFlexGrid控件单数行背景为白色,双数的行背景为蓝色? Dim i As Integer With MSFlexGrid1 .AllowBigSelection = True ’ 设置网格样式 .FillStyle = flexFillRepeat For i = 0 To .Rows - 1 .Row = i: .Col = .FixedCols .ColSel = .Cols() - .FixedCols - 1 If i Mod 2 = 0 Then .CellBackColor = &HC0C0C0 ’ 浅灰 Else .CellBackColor = vbBlue ’ 兰色 End If Next i End With
>> MSFlexGrid控件如何移到最后一行 MSFlexGrid1.TopRow = MSFlexGrid1.Rows – 1
>>如何判断msflexgrid有无滚动条 Declare Function GetScrollRange Lib "user32" (ByVal hWnd As Long,ByVal nBar As Long,lpMinPos As Long,lpMaxPos As Long) As Long Public Const SB_HORZ = &H0 Public Const SB_VERT = &H1
Public Function VsScroll(MshGrid As MSHFlexGrid) As Boolean ’判断水平滚动条的可见性 Dim i As Long VsScroll = False i = GetScrollRange(MshGrid.hWnd,SB_HORZ,lpMinPos,lpMaxPos) If lpMaxPos <> lpMinPos Then VsScroll = True End Function
Public Function HeScroll(MshGrid As MSHFlexGrid) As Boolean ’判断垂直滚动条的可见性 Dim i As Long HeScroll = False i = GetScrollRange(MshGrid.hWnd,SB_VERT,lpMaxPos) If lpMaxPos <> lpMinPos Then HeScroll = True End Function
>>程序运行时,想动态增加MSFlexgrid的列数 在第2列后插入一列: Private Sub Form_Load() Me.MSHFlexGrid1.Cols = 5 MSHFlexGrid1.Rows = 2 For i = 0 To Me.MSHFlexGrid1.Cols - 1 Me.MSHFlexGrid1.TextMatrix(0,i) = i Me.MSHFlexGrid1.TextMatrix(1,i) = i Next End Sub
Private Sub Command1_Click() Me.MSHFlexGrid1.Cols = Me.MSHFlexGrid1.Cols + 1 Me.MSHFlexGrid1.ColPosition(5) = 3 End Sub
>> 请教MSFlexGrid中的对齐功能的使用 设置MSFlexGrid1.ColAlignment(index)=n
>>得到MSFlexGrid控件中当前选中的一行 msflexgrid1.rowsel就是当前选中行
>> 如何通过代码调节列宽度 msflexgrid1.colwidth(i)=4000
-------------------------------------------------------------------------------------- 'OutDataToText '将MsFlexGrid控件中显示的内容输出到文本文件 Public Sub OutDataToText(Flex As MSFlexGrid) Dim s As String Dim i As Integer Dim j As Integer Dim k As Integer Dim strTemp As String On Error GoTo Ert Me.MousePointer = 11 On Error Resume Next DoEvents Dim FileNum As Integer FileNum = FreeFile Open "d:aa.txt" For Output As #FileNum With Flex k = .Rows For i = 0 To k - 1 strTemp = "" For j = 0 To .Cols - 1 DoEvents strTemp = strTemp & .TextMatrix(i,j) & "," Next j Print #FileNum,Left(strTemp,Len(strTemp) - 1) Next i End With Close #FileNum Me.MousePointer = 0 MsgBox "导出成功" Ert: MsgBox Err.Description Me.MousePointer = 0 End Sub 增加 MsFlexGrid 的编辑功能
概述 MsFlexGrid 控件没有提供文本编辑的功能,下面的例子演示了如何利用一个TextBox 实现编辑当前网格的功能。
在按下一个键后, 就把TextBox 移动到当前的位置, 并激活。 在键入回车或移动到其他网格时,
就把TextBox 中的内容放到网格中。
实现步骤 1 打开 VB6, 开启一个新的工程。
2 在菜单“工程” 中选择 “部件”, 在列表中选中 “Microsoft FlexGrid Control ..”
3 放一个 MsFlexGrid 控件和一个TextBox 控件(Text1)到 Form1。 修改MsFlexGrid 控件的名称为 Grid1,
设置Grid1 的行,列 为 4, 固定行,列为 0。 设置 Text1 的 Visiable 为 False, BorderStyle 为
None(0)。
4 在Form1 的代码中增加声明:
Const ASC_ENTER = 13 '回车 Dim gRow As Integer Dim gCol As Integer
5 增加代码到 Grid_KeyPress 过程:
Private Sub Grid1_KeyPress(KeyAscii As Integer) ' Move the text box to the current grid cell: Text1.Top = Grid1.CellTop + Grid1.Top Text1.Left = Grid1.CellLeft + Grid1.Left ' Save the position of the grids Row and Col for later: gRow = Grid1.Row gCol = Grid1.Col ' Make text box same size as current grid cell: Text1.Width = Grid1.CellWidth - 2 * Screen.TwipsPerPixelX Text1.Height = Grid1.CellHeight - 2 * Screen.TwipsPerPixelY ' Transfer the grid cell text: Text1.Text = Grid1.Text ' Show the text box: Text1.Visible = True Text1.ZOrder 0 ' 把 Text1 放到最前面! Text1.SetFocus ' Redirect this KeyPress event to the text box: If KeyAscii <> ASC_ENTER Then SendKeys Chr$(KeyAscii) End If End Sub
6 增加代码到 Text1_KeyPress 过程:
Private Sub Text1_KeyPress(KeyAscii As Integer) If KeyAscii = ASC_ENTER Then Grid1.SetFocus ' Set focus back to grid,see Text_LostFocus. KeyAscii = 0 ' Ignore this KeyPress. End If End Sub
7 增加代码到 Text1_LostFocus 过程:
Private Sub Text1_LostFocus() Dim tmpRow As Integer Dim tmpCol As Integer ' Save current settings of Grid Row and col. This is needed only if ' the focus is set somewhere else in the Grid. tmpRow = Grid1.Row tmpCol = Grid1.Col ' Set Row and Col back to what they were before Text1_LostFocus: Grid1.Row = gRow Grid1.Col = gCol Grid1.Text = Text1.Text ' Transfer text back to grid. Text1.SelStart = 0 ' Return caret to beginning. Text1.Visible = False ' Disable text box. ' Return row and Col contents: Grid1.Row = tmpRow Grid1.Col = tmpCol End Sub
8 好了。 按 F5 开始测试。 您可以自由地在 Grid 中移动, 按回车可以开始或结束编辑。
使用MsFlexGrid控件的几个函数
在VB处理数据显示的时候,使用表格是一种好的方法,虽然DataGrid可以与数据源绑定,但是总有美中不足,就是
外观不好看,所以有时应用MsFlexGrid显示数据还是一种比较好的方法,以下几个函数是用来控制MsFlexGrid的程序
(本人语言表达能力有限,还请见谅)
''MsFlexGrid操作函数
''合并列 Public Function MergeCol(GridObj As Object,ByVal StartCol As Long,ByVal EndCol As Long,ByVal
ColValue As String,ByVal CurrentRow As Long) As Boolean If StartCol > EndCol Or StartCol > GridObj.Cols Or CurrentRow > GridObj.Rows Then MsgBox "对不起,行列设置错误!",App.Title MergeCol = False Exit Function End If
For I = StartCol To EndCol GridObj.MergeCol(I) = True GridObj.TextArray(faIndex(GridObj,CurrentRow,I)) = ColValue GridObj.ColAlignment(I) = flexAlignCenterCenter Next I
GridObj.MergeRow(CurrentRow) = True
MergeCol = True
End Function
''合并行 Public Function MergeRow(GridObj As Object,ByVal StartRow As Long,ByVal EndRow As Long,ByVal
RowValue As String,ByVal CurrentCol As Long) As Boolean If StartRow > EndRow Or StartRow > GridObj.Rows Or CurrentCol > GridObj.Cols Then MsgBox "对不起,行列设置错误!",App.Title MergeRow = False Exit Function End If
For I = StartRow To EndRow GridObj.MergeRow(I) = True GridObj.TextArray(faIndex(GridObj,I,CurrentCol)) = RowValue GridObj.ColAlignment(CurrentCol) = flexAlignCenterCenter
Next I GridObj.MergeCol(CurrentCol) = True MergeRow = True
End Function
''转换索引 Public Function faIndex(GridObj As Object,ByVal row As Integer,ByVal col As Integer) As Long If row > GridObj.Rows Or row < 0 Or col > GridObj.Cols Or col < 0 Then MsgBox "对不起,行列设置错误!",App.Title faIndex = -1
Exit Function End If
faIndex = row * GridObj.Cols + col
End Function
''插入行 Public Function SetItem(GridObj As Object,ByVal col As Integer,ByVal
SetValue As String) As Boolean If row > GridObj.Rows Or row < 0 Or col > GridObj.Cols Or col < 0 Then MsgBox "对不起,行列设置错误!",App.Title SetItem = False Exit Function End If GridObj.TextArray(faIndex(GridObj,row,col)) = SetValue
SetItem = True End Function
''得到单元格值 Public Function GetItem(GridObj As Object,ByVal col As Integer) As String
If row > GridObj.Rows Or row < 0 Or col > GridObj.Cols Or col < 0 Then MsgBox "对不起,行列设置错误!",App.Title GetItem = "" Exit Function End If GetItem = GridObj.TextArray(faIndex(GridObj,col)) End Function
在msflexgrid控件中每一个cell格的内容是不可以由用户直接编辑的但是我们可以通过一些小技 巧来方便的实现这编辑功能来扩展msflexgrid的应用(在实际应用中这是很常用的功能)。
你只需按下面的做即可轻松实现编辑msflexgrid控件数据的功能
例在窗体上放一文本框txtvalue,和一msflexgrid控件grid
‘文本框控件的keypress事件 private sub txtvalue_keypress(keyascii as integer) ‘放入一些处理过程,如只需输入数字时的处理
dim i i=1 end sub
private sub txtvalue_change() grid.text = txtvalue.text end sub
'在grid的entercell事件中加入下例代码 private sub grid_entercell() txtvalue.text = grid.text txtvalue.selstart = 0 txtvalue.sellength = len(txtvalue.text) end sub
'当用户输入数据时直接调用文本框的keypress事件 private sub grid_keypress(keyascii as integer) txtvalue_keypress keyascii end sub
ok,这样一个可编辑的msflexgrid控件就完成了,简单吧!!
Private Sub fgrid1_click() '单击MSFlexGrid sphy = Trim(FGrid1.TextMatrix(FGrid1.Row,0)) delrecord End Sub
Private Sub fgrid1_RowColChange()'用上下键在MSFlexGrid上选择 sphy = Trim(FGrid1.TextMatrix(FGrid1.Row,0)) delrecord End Sub
Private Sub DeleteRecord()'删除 Dim I As Integer ' Dim Ssql As String Dim response As String response = MsgBox("真的删除当前记录?",vbInformation + vbYesNo,"警告") If response = vbYes Then Ssql = "delete from login where loginname='" & sphy & "'" gcnLeaguers.Execute (Ssql) MsgBox "删除成功!",vbInformation + vbOKOnly,"系统提示" End If Exit Sub End Sub 删除后可能还要刷新一下,你试试吧
MSHFlexGrid1.SelectionMode = flexSelectionByRow 还是 Private Sub Form_Load() With MSHFlexGrid1 .FixedCols = 0 .Cols = 2 .Rows = 0 .AddItem "1" & vbTab & "11" .AddItem "2" & vbTab & "22" .AddItem "3" & vbTab & "33" End With End Sub
Private Sub MSHFlexGrid1_RowColChange() Static intPrevRow As Long If MSHFlexGrid1.Row <> intPrevRow Then intPrevRow = MSHFlexGrid1.Row Dim i As Long For i = 0 To MSHFlexGrid1.Cols - 1 MsgBox MSHFlexGrid1.TextMatrix(intPrevRow,i) Next End If End Sub
原理 当用户点击msflexgrid中的某个cell格要输入数据时,产生entercell事件,在这里我们对文本 框进行初始化,输入当前cell格中的内容,并且选中所有文本。当用户要按下按键进行输入时,就直 接调用txtvalue的事件,由文本框来处理.
处理的结果同grid的当前cell同步,使用户编辑cell格就象使用文本框一样方便。
网格单元格中文字的多行显示很简单,只要把WordWarp属性改为True就可以了。
1.VB6自带MSHFlexGrid只支持2048条记录显示,这个问题通过装VB6 的SP6解决. 2.TopRow属性的使用,这个属性可以使用代码移动MSHFlexGrid的行显示,如要做一个从上至下的滚动显示,使用这个属性解决起来非常方便 3.使用选码高亮即选中显示某一行,如要选中第三行,可以使用代码: MSHFlexGrid1.Row = 3 MSHFlexGrid1.TopRow =3 myMSHFlexGrid.ColSel = MSHFlexGrid1.Cols - 1
MSHFlexGrid中单击某一行变色,如何实现?
Option Explicit Public j As Long Private Sub RowColor(i As Long,j As Long) 'i代表现在点的这一行 Dim n As Long 'n代表列 With Me.MSHFlexGrid1 For n = 1 To .Cols - 1 .Row = i .Col = n .CellBackColor = &HC0FFFF If j > 0 And i <> j Then .Row = j .CellBackColor = &HFFFFFF End If Next n j = i End With End Sub Private Sub Form_Load() With Me.MSHFlexGrid1 .Cols = 5 .Rows = 6 End With End Sub Private Sub MSHFlexGrid1_Click() Call RowColor(Me.MSHFlexGrid1.Row,j) Debug.Print j End Sub
(编辑:李大同)
【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!
|