CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 2001
    Posts
    1

    capturing mouse click event

    HI,

    On my VB form, i have a command button for which i want that whenever it is clicked, i should call a module. How do i do that?



  2. #2
    Join Date
    May 2001
    Posts
    40

    Re: capturing mouse click event

    in the development environment double click on the command button. Then you should get something like this

    private Sub Command1_Click()
    call yourmodulenamehere
    End sub





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