For Next iterations

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts

  • Brian Burgess
    Guest replied
    Re: For Next iterations

    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." <exjxw.hannivoo rt@interxnl.net > wrote in message
    news:Xns93C7E05 93E4F3eejj99@19 4.109.133.29...[color=blue]
    > Brian Burgess wrote on 29 jul 2003 in
    > microsoft.publi c.inetserver.as p.general:
    >[color=green]
    > > 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?
    > >[/color]
    >
    > 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)[/color]


    Leave a comment:


  • Brian Burgess
    Guest replied
    Re: For Next iterations

    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" <dbrussee@NOTbe tterwaycomputin g.com> wrote in message
    news:MPG.199099 58ff4cce4e9897b 6@news-server.nc.rr.co m...[color=blue]
    > In article <#DTZTjgVDHA.22 24@TK2MSFTNGP09 .phx.gbl>, shuckle@hotmail .com
    > says...[color=green]
    > > 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"[/color][/color]
    and[color=blue][color=green]
    > > I'm not American.
    > >[/color]
    >
    > 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.[/color]


    Leave a comment:


  • Brian Burgess
    Guest replied
    Re: For Next iterations

    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" <shuckle@hotmai l.com> wrote in message
    news:O1x$FPgVDH A.2328@TK2MSFTN GP12.phx.gbl...[color=blue]
    > I'm sure I don't see the point. The following does exactly the same[/color]
    thing,[color=blue]
    > 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" <bburgess66@hot mail.com> wrote in message
    > news:%238110HgV DHA.2544@tk2msf tngp13.phx.gbl. ..[color=green]
    > > 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" <bburgess66@hot mail.com> wrote in message
    > > news:uj6AYAaVDH A.1480@tk2msftn gp13.phx.gbl...[color=darkred]
    > > > Ah cool. That points me in the right direction...
    > > >
    > > > Kinda makes me feel stupid .. but it works .. :-P
    > > >
    > > > thanks
    > > >
    > > > -BB
    > > >
    > > >
    > > > "Evertjan." <exjxw.hannivoo rt@interxnl.net > wrote in message
    > > > news:Xns93C759F C8ED8Ceejj99@19 4.109.133.29...
    > > > > Brian Burgess wrote on 29 jul 2003 in
    > > > > microsoft.publi c.inetserver.as p.general:
    > > > >
    > > > > > Is there any 'trick' anyone knows to control a For Next to pass to[/color][/color]
    > the[color=green][color=darkred]
    > > > > > next iteration in ASP VBScript? ..Similar to the 'continue'[/color][/color]
    > keyword[color=green][color=darkred]
    > > > > > 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)
    > > >
    > > >[/color]
    > >
    > >[/color]
    >
    >[/color]


    Leave a comment:


  • Brian Burgess
    Guest replied
    Re: For Next iterations

    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." <exjxw.hannivoo rt@interxnl.net > wrote in message
    news:Xns93C7D81 0FC039eejj99@19 4.109.133.29...[color=blue]
    > Brian Burgess wrote on 29 jul 2003 in
    > microsoft.publi c.inetserver.as p.general:[color=green]
    > > 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 ..[/color]
    >
    > 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)[/color]


    Leave a comment:


  • Dan Brussee
    Guest replied
    Re: For Next iterations

    In article <#DTZTjgVDHA.22 24@TK2MSFTNGP09 .phx.gbl>, shuckle@hotmail .com
    says...[color=blue]
    > 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.
    >[/color]

    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.

    Leave a comment:


  • Tom B
    Guest replied
    Re: For Next iterations

    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." <exjxw.hannivoo rt@interxnl.net > wrote in message
    news:Xns93C7D81 0FC039eejj99@19 4.109.133.29...[color=blue]
    > Brian Burgess wrote on 29 jul 2003 in
    > microsoft.publi c.inetserver.as p.general:[color=green]
    > > 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 ..[/color]
    >
    > 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)[/color]


    Leave a comment:


  • Evertjan.
    Guest replied
    Re: For Next iterations

    Brian Burgess wrote on 29 jul 2003 in
    microsoft.publi c.inetserver.as p.general:[color=blue]
    > 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 ..[/color]

    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)

    Leave a comment:


  • Tom B
    Guest replied
    Re: For Next iterations

    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" <bburgess66@hot mail.com> wrote in message
    news:%238110HgV DHA.2544@tk2msf tngp13.phx.gbl. ..[color=blue]
    > 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" <bburgess66@hot mail.com> wrote in message
    > news:uj6AYAaVDH A.1480@tk2msftn gp13.phx.gbl...[color=green]
    > > Ah cool. That points me in the right direction...
    > >
    > > Kinda makes me feel stupid .. but it works .. :-P
    > >
    > > thanks
    > >
    > > -BB
    > >
    > >
    > > "Evertjan." <exjxw.hannivoo rt@interxnl.net > wrote in message
    > > news:Xns93C759F C8ED8Ceejj99@19 4.109.133.29...[color=darkred]
    > > > Brian Burgess wrote on 29 jul 2003 in
    > > > microsoft.publi c.inetserver.as p.general:
    > > >
    > > > > Is there any 'trick' anyone knows to control a For Next to pass to[/color][/color][/color]
    the[color=blue][color=green][color=darkred]
    > > > > next iteration in ASP VBScript? ..Similar to the 'continue'[/color][/color][/color]
    keyword[color=blue][color=green][color=darkred]
    > > > > 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)[/color]
    > >
    > >[/color]
    >
    >[/color]


    Leave a comment:


  • Brian Burgess
    Guest replied
    Re: For Next iterations

    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" <bburgess66@hot mail.com> wrote in message
    news:uj6AYAaVDH A.1480@tk2msftn gp13.phx.gbl...[color=blue]
    > Ah cool. That points me in the right direction...
    >
    > Kinda makes me feel stupid .. but it works .. :-P
    >
    > thanks
    >
    > -BB
    >
    >
    > "Evertjan." <exjxw.hannivoo rt@interxnl.net > wrote in message
    > news:Xns93C759F C8ED8Ceejj99@19 4.109.133.29...[color=green]
    > > Brian Burgess wrote on 29 jul 2003 in
    > > microsoft.publi c.inetserver.as p.general:
    > >[color=darkred]
    > > > 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++?
    > > >[/color]
    > >
    > > 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)[/color]
    >
    >[/color]


    Leave a comment:


  • Brian Burgess
    Guest replied
    Re: For Next iterations

    Ah cool. That points me in the right direction...

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

    thanks

    -BB


    "Evertjan." <exjxw.hannivoo rt@interxnl.net > wrote in message
    news:Xns93C759F C8ED8Ceejj99@19 4.109.133.29...[color=blue]
    > Brian Burgess wrote on 29 jul 2003 in
    > microsoft.publi c.inetserver.as p.general:
    >[color=green]
    > > 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++?
    > >[/color]
    >
    > 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)[/color]


    Leave a comment:


  • Brian Burgess
    Guest started a topic For Next iterations

    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


Working...