VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Editing Flexgrid at runtime

by bairaboena prabhakar (1 Submission)
Category: Windows System Services
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Tue 23rd October 2001
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Editing Flexgrid at runtime

Rate Editing Flexgrid at runtime




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




Download this snippet    Add to My Saved Code

Editing Flexgrid at runtime Comments

No comments have been posted about Editing Flexgrid at runtime. Why not be the first to post a comment about Editing Flexgrid at runtime.

Post your comment

Subject:
Message:
0/1000 characters