Results 1 to 4 of 4

Thread: What are the steps to execute Visual basic program?

  1. #1
    Join Date
    Mar 2010
    Posts
    456

    What are the steps to execute Visual basic program?

    Hey friends, I wanted to what are the steps to execute Visual basic program? I think that if I came to know what are the basic steps for execution o a program then I can easily execute a program. I have practiced the programs on my books but I haven’t done it practically. So, I decided to do it on visual studio. But, the problem is that I am not able to do it. So, anybody who has any idea or solution regarding this query than please let me know.

  2. #2
    Join Date
    May 2009
    Posts
    511

    Re: What are the steps to execute Visual basic program?

    You can execute one statement of code and then pause the execution. This is known as stepping through code. You can step through code at break time. When you are stepping through code, the current statement is highlighted in the Code window. Stepping through code can only be done if a procedure is being executed. If none of the procedures is in execution, an event should occur so that a procedure is triggered.

  3. #3
    Join Date
    May 2009
    Posts
    527

    Re: What are the steps to execute Visual basic program?

    For example, clicking a command button. There are two important stepping commands as follows: Step Into: You can step into by choosing Step into from Debug menu, by click the Step Into button in the Debug toolbar or by pressing F9 on the keyboard. This command executes the current statement and then pauses the execution. If the current statement is a call to a procedure, it will be executed and the first line of that procedure will be the next line to be executed. Step Over.

  4. #4
    Join Date
    Apr 2009
    Posts
    488

    Re: What are the steps to execute Visual basic program?

    You can step over by choosing Step Over from Debug menu, by click the Step Over button in the Debug toolbar or by pressing Shift + F9 on the keyboard. Step Over is similar to Step Into except in the case of statements which call procedures. If you step over a statement which calls a procedure, all the statements in that procedure will be executed and the next line to be executed will be the statement following the call to that procedure.

Similar Threads

  1. How to eliminate the bugs in a program of visual basic?
    By sRIPRIYA in forum Software Development
    Replies: 4
    Last Post: 03-01-2011, 10:46 PM
  2. Basic steps to keep Computer safe
    By Balamohan in forum Networking & Security
    Replies: 5
    Last Post: 27-12-2009, 04:34 AM
  3. Calculator program using visual basic
    By Panchu in forum Software Development
    Replies: 3
    Last Post: 24-11-2009, 07:19 PM
  4. Is it possible to execute ASP.Net code without Visual Studio?
    By Pikachoo in forum Software Development
    Replies: 3
    Last Post: 09-02-2009, 11:43 PM
  5. Visual Basic 2005 or Visual Basic 6
    By Aasha in forum Software Development
    Replies: 5
    Last Post: 15-01-2009, 06:56 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,711,709,656.20338 seconds with 17 queries