double-click in vb 6.0.....

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sumuka
    New Member
    • Oct 2007
    • 38

    double-click in vb 6.0.....

    Hello everyone,

    How do i achieve left double click in vb 6 . The user has to left double click on the flex grid's cell and the msgbox is to be displayed .
    So how can i do this.

    Thanks in anticipation,
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    try to handle this event.
    [code=vb]
    Private Sub MSFlexGrid1_Dbl Click()
    MsgBox "Hello sumuka ! The solution is here ."
    End Sub
    [/code]

    Comment

    • sumuka
      New Member
      • Oct 2007
      • 38

      #3
      Originally posted by debasisdas
      try to handle this event.
      [code=vb]
      Private Sub MSFlexGrid1_Dbl Click()
      MsgBox "Hello sumuka ! The solution is here ."
      End Sub
      [/code]


      Thank you so much ....
      It's working beautifully.... .
      Thanks for your reply .

      Regards,

      Comment

      Working...