473,385 Members | 1,925 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

For Next iterations

Hi all,

Is there any 'trick' anyone knows to control a For Next to pass to the next
iteration in ASP VBScript? ..Similar to the 'continue' keyword of C and
C++?

Thanks in advance..

-BB
Jul 19 '05 #1
10 8272
Ah cool. That points me in the right direction...

Kinda makes me feel stupid .. but it works .. :-P

thanks

-BB
"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.29...
Brian Burgess wrote on 29 jul 2003 in
microsoft.public.inetserver.asp.general:
Is there any 'trick' anyone knows to control a For Next to pass to the
next iteration in ASP VBScript? ..Similar to the 'continue' keyword
of C and C++?


For i=1 to 100
continue=false
' do things
if i=17 then continue=true
if not continue then
' do things
end if
Next

can be done simpler.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jul 19 '05 #2
Hey I got a cool way from Walter Zackery/Michael Harris in the VBScript
group...

For Count = 1 to 5
Do
If Count = 3 Then Exit Do
MsgBox Count
Exit Do:Loop
Next

Cool eh? a Do Loop wrapper ..

-BB
"Brian Burgess" <bb********@hotmail.com> wrote in message
news:uj**************@tk2msftngp13.phx.gbl...
Ah cool. That points me in the right direction...

Kinda makes me feel stupid .. but it works .. :-P

thanks

-BB
"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.29...
Brian Burgess wrote on 29 jul 2003 in
microsoft.public.inetserver.asp.general:
Is there any 'trick' anyone knows to control a For Next to pass to the
next iteration in ASP VBScript? ..Similar to the 'continue' keyword
of C and C++?


For i=1 to 100
continue=false
' do things
if i=17 then continue=true
if not continue then
' do things
end if
Next

can be done simpler.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)


Jul 19 '05 #3
I'm sure I don't see the point. The following does exactly the same thing,
is easier to read and understand by others and is logical.

For Count = 1 to 5
If count <> 3 then
'blah blah blah -- can't use a Msgbox in ASP/VBScript
end if
Next
"Brian Burgess" <bb********@hotmail.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hey I got a cool way from Walter Zackery/Michael Harris in the VBScript
group...

For Count = 1 to 5
Do
If Count = 3 Then Exit Do
MsgBox Count
Exit Do:Loop
Next

Cool eh? a Do Loop wrapper ..

-BB
"Brian Burgess" <bb********@hotmail.com> wrote in message
news:uj**************@tk2msftngp13.phx.gbl...
Ah cool. That points me in the right direction...

Kinda makes me feel stupid .. but it works .. :-P

thanks

-BB
"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.29...
Brian Burgess wrote on 29 jul 2003 in
microsoft.public.inetserver.asp.general:

> Is there any 'trick' anyone knows to control a For Next to pass to the > next iteration in ASP VBScript? ..Similar to the 'continue' keyword > of C and C++?
>

For i=1 to 100
continue=false
' do things
if i=17 then continue=true
if not continue then
' do things
end if
Next

can be done simpler.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)



Jul 19 '05 #4
Brian Burgess wrote on 29 jul 2003 in
microsoft.public.inetserver.asp.general:
Hey I got a cool way from Walter Zackery/Michael Harris in the VBScript
group...

For Count = 1 to 5
Do
If Count = 3 Then Exit Do
MsgBox Count
Exit Do:Loop
Next

Cool eh? a Do Loop wrapper ..


Silly American word "cool", and wrong too:

If Count=1 the do-loop will trigger indefinitly,
outputting messageboxes galore,
never even reaching count=2

The "Exit do:" as a label is also nonsense,
"Exit do" does not even use/need a label.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #5
That's what I was thinking when I first saw it, but I think the colon is
being used as a statement separator.
as in

For Count = 1 to 5
Do
If Count=3 then Exit Do
MsgBox Count
Exit Do
Loop
Next

I think that's what they were going for.

Furthermore, what's wrong with "cool?" I also enjoy saying "sit on it" and
I'm not American.
"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.29...
Brian Burgess wrote on 29 jul 2003 in
microsoft.public.inetserver.asp.general:
Hey I got a cool way from Walter Zackery/Michael Harris in the VBScript
group...

For Count = 1 to 5
Do
If Count = 3 Then Exit Do
MsgBox Count
Exit Do:Loop
Next

Cool eh? a Do Loop wrapper ..


Silly American word "cool", and wrong too:

If Count=1 the do-loop will trigger indefinitly,
outputting messageboxes galore,
never even reaching count=2

The "Exit do:" as a label is also nonsense,
"Exit do" does not even use/need a label.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jul 19 '05 #6
In article <#D**************@TK2MSFTNGP09.phx.gbl>, sh*****@hotmail.com
says...
That's what I was thinking when I first saw it, but I think the colon is
being used as a statement separator.
as in

For Count = 1 to 5
Do
If Count=3 then Exit Do
MsgBox Count
Exit Do
Loop
Next

I think that's what they were going for.

Furthermore, what's wrong with "cool?" I also enjoy saying "sit on it" and
I'm not American.


As others have said, this will loop indefinitely, plus you should not
put a MsgBox command in ANY ASP code - EVER.

A better way might be (also as mentioned before)

For Count = 1 to 5
If Count <> 3 then
' Do something when Count is not 3
End If
Next

--

Remove NOT from email address to reply. AntiSpam in action.
Jul 19 '05 #7
well, pardon my silliness.. however, what I have shown is working
correctly. I dont think it is a label in this case.. in fact I dont
believe labels work at all in script, but not sure if I remember that
correctly anyway. Here I think the colon is interpreted as something like
a new line.
So in this case, the Do only executes once for each iteration of the For
loop no matter what, and the If clause telling it if it can exit earlier.

Anyway, I thought it was elegant.

Thanks for the help..

-BB

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.29...
Brian Burgess wrote on 29 jul 2003 in
microsoft.public.inetserver.asp.general:
Hey I got a cool way from Walter Zackery/Michael Harris in the VBScript
group...

For Count = 1 to 5
Do
If Count = 3 Then Exit Do
MsgBox Count
Exit Do:Loop
Next

Cool eh? a Do Loop wrapper ..


Silly American word "cool", and wrong too:

If Count=1 the do-loop will trigger indefinitly,
outputting messageboxes galore,
never even reaching count=2

The "Exit do:" as a label is also nonsense,
"Exit do" does not even use/need a label.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jul 19 '05 #8
I needed a way to immediately go to the next iteration of the For(based on
an If clause) without exiting the For altogether.

I have been able to use the MsgBox when the ASP writes out an HTML '/script'
element by the way .. wanna see?

-BB
"Tom B" <sh*****@hotmail.com> wrote in message
news:O1**************@TK2MSFTNGP12.phx.gbl...
I'm sure I don't see the point. The following does exactly the same thing, is easier to read and understand by others and is logical.

For Count = 1 to 5
If count <> 3 then
'blah blah blah -- can't use a Msgbox in ASP/VBScript
end if
Next
"Brian Burgess" <bb********@hotmail.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hey I got a cool way from Walter Zackery/Michael Harris in the VBScript
group...

For Count = 1 to 5
Do
If Count = 3 Then Exit Do
MsgBox Count
Exit Do:Loop
Next

Cool eh? a Do Loop wrapper ..

-BB
"Brian Burgess" <bb********@hotmail.com> wrote in message
news:uj**************@tk2msftngp13.phx.gbl...
Ah cool. That points me in the right direction...

Kinda makes me feel stupid .. but it works .. :-P

thanks

-BB
"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.29...
> Brian Burgess wrote on 29 jul 2003 in
> microsoft.public.inetserver.asp.general:
>
> > Is there any 'trick' anyone knows to control a For Next to pass to the > > next iteration in ASP VBScript? ..Similar to the 'continue' keyword > > of C and C++?
> >
>
> For i=1 to 100
> continue=false
> ' do things
> if i=17 then continue=true
> if not continue then
> ' do things
> end if
> Next
>
> can be done simpler.
>
> --
> Evertjan.
> The Netherlands.
> (Please change the x'es to dots in my emailaddress)



Jul 19 '05 #9
I have shown in a previous message how/why this is working. But I have a
question concerning MsgBox. In this case it is only demo code of course,
but I do have some code that makes an HTML '/script' element which in turn
uses MsgBox. Is this bad as well? And if so, why?

Thanks..

-BB
"Dan Brussee" <db******@NOTbetterwaycomputing.com> wrote in message
news:MP************************@news-server.nc.rr.com...
In article <#D**************@TK2MSFTNGP09.phx.gbl>, sh*****@hotmail.com
says...
That's what I was thinking when I first saw it, but I think the colon is
being used as a statement separator.
as in

For Count = 1 to 5
Do
If Count=3 then Exit Do
MsgBox Count
Exit Do
Loop
Next

I think that's what they were going for.

Furthermore, what's wrong with "cool?" I also enjoy saying "sit on it" and I'm not American.


As others have said, this will loop indefinitely, plus you should not
put a MsgBox command in ANY ASP code - EVER.

A better way might be (also as mentioned before)

For Count = 1 to 5
If Count <> 3 then
' Do something when Count is not 3
End If
Next

--

Remove NOT from email address to reply. AntiSpam in action.

Jul 19 '05 #10
Ah cool!

Yes understood. This is for PocketPC devices which ONLY have PocketIE
presently but only supports jscript (on the client). So MsgBox does not
work.

... Though it did one time .. very odd.

-BB
"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.29...
Brian Burgess wrote on 29 jul 2003 in
microsoft.public.inetserver.asp.general:
But I have a
question concerning MsgBox. In this case it is only demo code of
course, but I do have some code that makes an HTML '/script' element
which in turn uses MsgBox. Is this bad as well? And if so, why?


In Clientside vbscript it is not bad at all.

[Keeping in mind that this vbscript only works in IE]

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jul 19 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Derek Basch | last post by:
Is there a better way to count iterations that this?: pets = 0 for i in pets: pets += 1 print "pet" + "#" + pets Thanks, Derek Basch
2
by: Steve Taylor | last post by:
Is there some reason why I shouldn't be able to use the same XPathExpression simultaneously in multiple iterations? The test below illustrates the problem. It seems that creating two...
23
by: Mitchell Vincent | last post by:
Is there any way to "skip" iterations in a for loop? Example : for x = 1 to 10 if something = 1 next endif
8
by: jvb | last post by:
Hey all, I figure it's Wednesday, why not put a question up for debate. Beyond personal preference, is there any benefit (performance or otherwise) to using one loop over the other? For example,...
7
by: kathy | last post by:
I have code: std::string s(1,'A'); for(int i=0;i<26;i++) { s = s{0] + 1; } what I expect is get A,B,C...Z. But I only got A,C,E,...
18
by: Derek Basch | last post by:
What is the best way to count nested loop iterations? I can only figure to use an index but that seems kludgy. index = 0 for animal in zoo: for color in animal: index += 1 Thanks, Derek...
27
by: Deephay | last post by:
Greetings all, I have a program that used the realloc() function to change the allocated size of a buffer, the program works with some arguments, but with some other arguments, it will show me...
2
by: Francogrex | last post by:
Hi again, with a new question (beginner have a lot to learn). I am doing an updating algorithm where I have to do 10 iterations and each time need to replace the values of the matrix theta by the...
2
ADezii
by: ADezii | last post by:
If you are executing a code segment for a fixed number of iterations, always use a For...Next Loop instead of a Do...Loop, since it is significantly faster. Each pass through a Do...Loop that...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.