双击flexcell属性
双击Flexcell表格里的某一条数据,把这条数据加载到另一个窗口中的Flexcell表格里,怎么实现 ,谢谢
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