Sunday, September 30, 2007

[oopic] Re: Multiple while conditions

--- In oopic@yahoogroups.com, "jim_three_uk" <jimthree@...> wrote:
>
> Hi,
>
> Is it possible to have a While loop execute until a number of
> conditions are true? I can't find reference to it in the manual.
>
> While A < 100 and B == 250 and c != 50
> <statements>
> Wend
>
> Thanks.
>
> Jim
>

The expression is from Chapter 11 of the ooPIC Programmer's Guide then
click Operators then click Logical

while ( (A < 100) AND (B = 250) AND (C <> 50) )

...

wend

The enclosing parentheses are probably not required; I like them...

Richard



Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/oopic/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/oopic/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:oopic-digest@yahoogroups.com
mailto:oopic-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
oopic-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

No comments:

Post a Comment