Academic Tutorials



English | French | Portugese | German | Italian
Google

Home Source Codes E-Books Downloads Contact Us About Us

VB.NET
Introduction to VB.NET
Visual Basic Scripts
Variables and Data Types
Arrays and Collections
Arithmetic and String Operations
Relational and Logical Operations
Math and String Functions
Date and Time Functions
Display Formats
Subprograms
Functions
The If Statement
The If...Else Statement
The Else...If Statement
The Select...Case Statement
The For...Next Statement
The For Each...Next Statement
The While...End While Statement
The Do...Loop Statement

HTML Tutorials
HTML Tutorial
XHTML Tutorial
CSS Tutorial
TCP/IP Tutorial
XML Tutorials
XML Tutorial
XSL Tutorial
XSLT Tutorial
DTD Tutorial
Schema Tutorial
XForms Tutorial
XSL-FO Tutorial
XML DOM Tutorial
XLink Tutorial
XQuery Tutorial
XPath Tutorial
XPointer Tutorial
RDF Tutorial
SOAP Tutorial
WSDL Tutorial
RSS Tutorial
WAP Tutorial
Web Services Tutorial
Browser Scripting
JavaScript Tutorial
VBScript Tutorial
AJAX Tutorial
DHTML Tutorial
HTML DOM Tutorial
WMLScript Tutorial
E4X Tutorial
Server Scripting
ASP Tutorial
PHP Tutorial
PERL Tutorial
SQL Tutorial
ADO Tutorial
.NET (dotnet)
Microsoft.Net
XML Web Services
ASP.Net
.Net Mobile
C# : C Sharp
ADO.NET
VB.NET
Multimedia
SVG Tutorial
Flash Tutorial
Media Tutorial
SMIL Tutorial
Web Building
Web Browsers
Web Hosting
W3C Tutorial
Web Building
Web Quality
Web Semantic
Web Careers
Java Tutorials
Java Tutorial
JSP Tutorial
Servlets Tutorial
Struts Tutorial
EJB Tutorial
JMS Tutorial
JMX Tutorial
Programming Langauges
C Tutorial
C++ Tutorial
Visual Basic Tutorial
Data Structures Using C
Soft Skills
Communication Skills
Time Management
Project Management
Team Work
Leadership Skills
Corporate Communication
Negotiation Skills


The For...Next Statement
Previous Next


  1. There are certain processing situations, however, that require a set of statements to be executed repeatedly --until a certain condition is met to iterate over and over again.


  2. You might, for instance,until you find a matching value you need to look through the items in an array, one at a time.


  3. The code to effect this search needs to execute again and again and each time indexing to the next element in the array.



The For...Next Loop

To iterate a set of statements, visual Basic provides this ability with the For...Next statement whose general format is shown below.

For counter = start value To end value

...statements

Next


  • To keep track of iterations through the enclosed statements,a For...Next loop establishes a counter.


  • It is given a start value and an end value -- integer values -- to control the number of times the statements are executed and the counter incremented by 1 each time through the loop.


  • The code below, for example, executes the statements in the For...Next loop 10 times.
  • Dim i As Integer
    For i = 1 To 10

    ...statements

    Next

    Variable i is defined as the counter and the counter is initialized to 1 when the loop is first entered. After the statements are executed for the first time and the Next statement is encountered, program control returns to the matching For statement. The counter is incremented by 1 and a test is made to see if the counter has yet reached the end value 10 or not. If not, the statements are executed a second time, and control again returns to the For statement where is tested against the end value and the counter is incremented again. This processing continues until finally the counter reaches the end value and also the loop comes to an end and then, program control "skips over" the loop and continues in sequence with the statement following Next.

    In the above example, end value and start value are given literal integer values. More likely, in the script start value, and especially end value, are assigned through variables set elsewhere.

    The following script is a simple illustration of a For...Next loop and the user enters an integer value that is used as the ending value for the loop.The loop displays the sequence of integers to the ending value,beginning with 1,

    Sub Make_Numbers (Src As Object, Args As EventArgs)

    If IsNumeric(EndValue.Text) Then

    Dim i As Integer
    For i = 1 To EndValue.Text
    Numbers.Text &= i & " "
    Next

    End If

    End Sub

    <asp:TextBox id="EndValue" Size="1" MaxLength="2" runat="server"/>
    <asp:Button Text="Make Numbers" OnClick="Make_Numbers" runat="server"/>
    <asp:Label id="Numbers" EnableViewState="False" runat="server"/>



    Iterating Arrays

    For iterating the elements in an array,the For...Next loop provides an ideal mechanism. To increment through the array's indexes,the counter can be set up, pointing in sequence to each element from the first through the last. Returning to a previous example, the following array contains the first five letters of the Greek alphabet. To display,a loop is set up , in turn, each of these five letters.

    Sub Get_Greek (Src As Object, Args As EventArgs)

    Dim Letters() As String = {"alpha","beta","gamma","delta","epsilon"}
    Dim i As Integer
    For i = 0 To Letters.Length - 1
    GreekOut.Text &= Letters(i) & " "
    Next

    End Sub

    <asp:Button Text="Get Greek" OnClick="Get_Greek" runat="server"/>
    <asp:Label id="GreekOut" EnableViewState="False" runat="server"/>



    Share And Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
    • blinkbits
    • BlinkList
    • blogmarks
    • co.mments
    • connotea
    • del.icio.us
    • De.lirio.us
    • digg
    • Fark
    • feedmelinks
    • Furl
    • LinkaGoGo
    • Ma.gnolia
    • NewsVine
    • Netvouz
    • RawSugar
    • Reddit
    • scuttle
    • Shadows
    • Simpy
    • Smarking
    • Spurl
    • TailRank
    • Wists
    • YahooMyWeb

    Previous Next

    Keywords: while loop statement, switch case statement, group by statement, for loop statement, select case statement, sql server statement, order by statement, pl sql statement, java statement, value statement, values statement, vision statement, sql statement, oracle statement, function statement, switch statement, command statement


    HTML Quizes
    HTML Quiz
    XHTML Quiz
    CSS Quiz
    TCP/IP Quiz
    XML Quizes
    XML Quiz
    XSL Quiz
    XSLT Quiz
    DTD Quiz
    Schema Quiz
    XForms Quiz
    XSL-FO Quiz
    XML DOM Quiz
    XLink Quiz
    XQuery Quiz
    XPath Quiz
    XPointer Quiz
    RDF Quiz
    SOAP Quiz
    WSDL Quiz
    RSS Quiz
    WAP Quiz
    Web Services Quiz
    Browser Scripting Quizes
    JavaScript Quiz
    VBScript Quiz
    AJAX Quiz
    DHTML Quiz
    HTML DOM Quiz
    WMLScript Quiz
    E4X Quiz
    Server Scripting Quizes
    ASP Quiz
    PHP Quiz
    PERL Quiz
    SQL Quiz
    ADO Quiz
    .NET (dotnet) Quizes
    Microsoft.Net Quiz
    XML Web Services Quiz
    ASP.Net Quiz
    .Net Mobile Quiz
    C# : C Sharp Quiz
    ADO.NET Quiz
    VB.NET Quiz
    Multimedia Quizes
    SVG Quiz
    Flash Quiz
    Media Quiz
    SMIL Quiz
    Web Building  Quizes
    Web Browsers Quiz
    Web Hosting Quiz
    W3C Quiz
    Web Building Quiz
    Web Quality Quiz
    Web Semantic Quiz
    Web Careers Quiz
    Java Quizes
    Java Quiz
    JSP Quiz
    Servlets Quiz
    Struts Quiz
    EJB Quiz
    JMS Quiz
    JMX Quiz
    Programming Langauges Quizes
    C Quiz
    C++ Quiz
    Visual Basic Quiz
    Data Structures Using C Quiz
    Soft Skills Quizes
    Communication Skills Quiz
    Time Management Quiz
    Project Management Quiz
    Team Work Quiz
    Leadership Skills Quiz
    Corporate Communication Quiz
    Negotiation Skills Quiz

    Privacy Policy
    Copyright © 2003-2008 Vyom Technosoft Pvt. Ltd., All Rights Reserved.