www.lucersoft.com

   
       Home  |   News  |   Downloads  |   Order  |   Contacts

 

 

Main

Home

Site map

Products

LC Backup

LC Copier

HTML Batch Editor

HTML Batch Editor PRO

Tennis 2001

Freeware

Documentation

HTML Batch Editor PRO

LC Basic

Information

Order

Update Policy

Support

Contacts

Links

 
 
 
 

 
 
 
 
 
 
 
 
 

Continue

Language reference


Syntax

 

Continue


Description:

 

A Continue statement attempts to transfer control to the innermost enclosing while or for statement; this statement, which is called the continue target, then immediately ends the current iteration and begins a new one.  If no while or for statement encloses the continue statement, a error occurs.

 


Examples:

For n=1 to 100
 If (n <> 5)
  Continue
 Endif
MsgBox n
Next

 

This example put up only one message "5"


See also:

 

Break 


A statement break is a part of kernel LC Basic.

 
Last updated: November 2, 2003
Copyright © 2002 Lucersoft

Add to favorites

Back