CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: IDE Question

  1. #1
    Join Date
    Aug 1999
    Posts
    50

    IDE Question

    can you turn off following action?

    1. when the user double clicks on a control on the form, the sub/function is automatically generated and your cursor is placed there?

    tia!


  2. #2
    Join Date
    Aug 2000
    Location
    KY
    Posts
    766

    Re: IDE Question

    no you can't the double click on the control takes you to that controls default property.


  3. #3
    Join Date
    Sep 1999
    Posts
    202

    Re: IDE Question

    >the sub/function is automatically generated
    This won't happen if you doubleclick on shape control. Some users even put shape control on the form to avoid this.

    If you are deleting this 'Sub'/'End Sub' pair of lines, well, you don't have to do this; This empty procedure lines are automatically deleted when you press F5 (Run).


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