how to make 'WAIT' or PAUSE'

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • 2epro
    New Member
    • Jun 2008
    • 25

    how to make 'WAIT' or PAUSE'

    hwo can i make the application "WAIT" or "PAUSE" for X seconds ?
  • Adam
    Indigo Rose Staff Member
    • May 2000
    • 2149

    #2
    Use Application.Sleep()

    Adam Kapilik

    Comment

    • arb
      Indigo Rose Customer
      • Jul 2007
      • 163

      #3
      Yes but it will puase the whole application, not only the script and thats the problem.

      Comment

      • Imagine Programming
        Indigo Rose Customer
        • Apr 2007
        • 4252

        #4
        use the page's On Timer event... and place the next in On Show:

        Code:
        Page.StartTimer(1000) --one second, change as you need
        Then the script that is placed in the On Timer event will be executed every 1 second...
        Bas Groothedde
        Imagine Programming :: Blog

        AMS8 Plugins
        IMXLH Compiler

        Comment

        • 2epro
          New Member
          • Jun 2008
          • 25

          #5
          Originally posted by Adam View Post
          Use Application.Sleep()

          Adam Kapilik
          thank you adam

          Comment

          Working...
          X