Results 1 to 3 of 3

Thread: time

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jan 1999
    Posts
    204
    how do i wait 30sec and then make it do somthing i havnt did somthing with time in like a year
    WHat would we do with out Microsoft.
    A lot more.

  2. #2
    Lively Member
    Join Date
    Jun 2000
    Posts
    67
    add a timer control and set the interval to 30000 (thats in miliseconds)

    and then double click the control and enter ur code
    Private Sub DeepCrap
    on error blame microsoft
    if microsoft = screwed then
    blame aol
    end if
    end deep crap

    Ahh VB6 Enterprise Edition

  3. #3
    Guest
    Code:
    Function timeout(interval)
    Current = Timer
    Do While Timer - Current < Val(interval)
    DoEvents
    Loop
    End Function
    
    'timeout 3

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width