CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Feb 2014
    Posts
    4

    VB 6 using break points and steping

    How can i manually test my codes using break points and steping in vb6?
    Thanks in advance

  2. #2
    Join Date
    Mar 2002
    Location
    Croatia
    Posts
    275

    Re: VB 6 using break points and steping

    With F9 put breakpoint on a line in source code where you want your program to stop.
    With F8 execute to next line.

  3. #3
    Join Date
    Feb 2014
    Posts
    4

    Re: VB 6 using break points and steping

    thanks ....

  4. #4
    Join Date
    Jul 2008
    Location
    WV
    Posts
    5,362

    Re: VB 6 using break points and steping

    and F5 execute to the next break point

    Shift+F8 step over- useful to prevent stepping through sub routine calls as needed

    You can also set a break point by clicking in the left margin of the line you want to set your break point on
    Always use [code][/code] tags when posting code.

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