Editing Flexgrid at runtime
Editing Flexgrid at runtime
Rate Editing Flexgrid at runtime
(1(1 Vote))
Private Sub Form_Load()
txt.Visible = False
End Sub
Private Sub mfg_EnterCell()
txt.Visible = True
txt.Text = mfg.Text
txt.Top = mfg.Top + mfg.CellTop
txt.Width = mfg.CellWidth
txt.Left = mfg.Left + mfg.CellLeft
txt.Height = mfg.CellHeight
txt.SetFocus
End Sub
Private Sub mfg_LeaveCell()
mfg.Text = txt.Text
End Sub
Editing Flexgrid at runtime Comments
No comments yet — be the first to post one!
Post a Comment