双击flexcell属性
双击Flexcell表格里的某一条数据,把这条数据加载到另一个窗口中的Flexcell表格里,怎么实现 ,谢谢
双击Flexcell的同时获取栏位的位置,
病读取Flexcell资料串中资料索引,
再将文本框移动至该位置,
再失焦的同时将文本里的值,
储存写入到Flexcell资料索引中,
并显示到UI上,示例代码百度到处都是
Option Explicit Private Sub Form_Load() Grid1.Cell(1, 1).Text = "AAA" Grid1.ReadOnly = True Form2.Show End Sub Private Sub Grid1_DblClick() Dim a As Integer, b As Integer With Grid1 a = .MouseRow: b = .MouseCol Form2.Grid1.Cell(a, b).Text = .Cell(a, b).Text End With End Sub