CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 2001
    Location
    The Netherlands, near germany
    Posts
    42

    doubleclick on textbox

    Does anybody know what the code is, if somebody double click (with the mouse) on a textbox he loads a form??

    Remco Ploeg
    [email protected]

  2. #2
    Join Date
    Jul 2001
    Location
    Belgium
    Posts
    39

    Re: doubleclick on textbox

    Try this


    private Sub txtTextbox_DblClick()
    Load frmForm 'if not already loaded
    frmForm.Show
    End Sub




    If anything in this post makes sense it was written by me, if not I don't know who wrote it

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured