thread sleep

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

    #1

    thread sleep

    how can i get the current thread to perform a call to
    thread.sleep()

    tia
    DaveP


  • Andreas Mueller

    #2
    Re: thread sleep

    DaveP wrote:
    how can i get the current thread to perform a call to
    thread.sleep()
    >
    tia
    DaveP
    >
    >
    System.Threadin g.Thread.Sleep( 1000);

    HTH,
    Andy

    --
    You can email me by removing the NOSPAM parts below:
    xmen40NOSPAM@gm xNOSPAM.net

    Comment

    • Alberto Poblacion

      #3
      Re: thread sleep

      "DaveP" <dvs_bis@sbcglo bal.netwrote in message
      news:blwJi.513$ hI7.284@newssvr 17.news.prodigy .net...
      how can i get the current thread to perform a call to
      thread.sleep()
      Just write System.Threadin g.Thread.Sleep( milliseconds); This causes the
      current thread to sleep for the specified amount of time.

      Comment

      • DaveP

        #4
        Re: thread sleep

        thanks alot
        i think im lil brain dead today lol

        DaveP
        "Alberto Poblacion" <earthling-quitaestoparaco ntestar@poblaci on.orgwrote
        in message news:OhZBF7f$HH A.3916@TK2MSFTN GP02.phx.gbl...
        "DaveP" <dvs_bis@sbcglo bal.netwrote in message
        news:blwJi.513$ hI7.284@newssvr 17.news.prodigy .net...
        >how can i get the current thread to perform a call to
        >thread.sleep ()
        >
        Just write System.Threadin g.Thread.Sleep( milliseconds); This causes the
        current thread to sleep for the specified amount of time.
        >

        Comment

        Working...