ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 4691|回复: 0

[VBA程序开发] 利用文本框实现编辑MsFlexGrid 控件上的单元格

[复制链接]

TA的精华主题

TA的得分主题

发表于 2006-3-26 20:35 | 显示全部楼层 |阅读模式
MsFlexGrid 控件没有提供文本编辑的功能,下面的例子演示了如何利用一个TextBox 实现编辑当前网格的功能。 在按下一个键后, 就把TextBox 移动到当前的位置, 并激活。 在键入回车或移动到其他网格时, 就把TextBox 中的内容放到网格中。 实现步骤 1 打开 VB5, 开启一个新的工程。 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 中移动, 按回车可以开始或结束编辑。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-24 05:06 , Processed in 0.022579 second(s), 8 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表