Results 1 to 26 of 26

Thread: Time countdown, urgent [resolved]

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Mar 2004
    Location
    England
    Posts
    29

    Resolved Time countdown, urgent [resolved]

    Hey everyone, i've been seearching for a while now for a countdown timer but i was not able to find any.
    I need to build a countdown timer, starting from 35 minutes to 0
    and when time is up (when theres 0minutes) open a mesage box, telling the user that the time is up.
    please help me...urgent
    Last edited by Adrian_struggel; May 2nd, 2005 at 05:00 AM.

  2. #2
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Time countdown, urgent

    35 minutes is beyond the max limit of the timer control so you need to count in increments in order to extend it.

    Add a timer control to your form. Set its interval to something like 21000, one tenth of 35 minutes.

    VB Code:
    1. Option Explicit
    2.  
    3. Private intCounter As Integer
    4.  
    5. Private Sub Form_Load()
    6.     intCounter = 2100000 '35 minutes
    7.     Timer1.Interval = 21000 'one one hundreth of 35 minutes
    8.     Timer1.Enabled = True
    9. End Sub
    10.  
    11. Private Sub Timer1_Timer()
    12.     intCounter = intCounter - 21000
    13.     If intCounter = 0 Then
    14.         Timer1.Enabled = False
    15.         MsgBox "Times up"
    16.     End If
    17. End Sub
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  3. #3
    Elite Hacker Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,349

    Re: Time countdown, urgent

    Timers are not realtime, RobDog888. It is slow, inacurate, and inconsistant. Not to mention on computers with XP, timers go 10 times faster than usual.

    Here ya go. This will do it in realtime too:

    VB Code:
    1. Option Explicit
    2.  
    3. Private Declare Function QueryPerformanceCounter Lib "Kernel32" (lpPerformanceCount As Currency) As Long
    4. Private Declare Function QueryPerformanceFrequency Lib "Kernel32" (lpPerformanceCount As Currency) As Long
    5.  
    6. Private Ticks_Per_Second As Currency
    7. Private Start_Time As Currency
    8.  
    9. Private Elapsed_Time As Single
    10. Private Milliseconds As Single
    11.  
    12. Private Running As Boolean
    13.  
    14. Private Function Hi_Res_Timer_Initialize() As Boolean
    15.  
    16.     If QueryPerformanceFrequency(Ticks_Per_Second) = 0 Then
    17.  
    18.         Hi_Res_Timer_Initialize = False
    19.  
    20.     Else
    21.    
    22.         QueryPerformanceCounter Start_Time
    23.      
    24.         Hi_Res_Timer_Initialize = True
    25.      
    26.     End If
    27.  
    28. End Function
    29.  
    30. Private Function Get_Elapsed_Seconds() As Single
    31.    
    32.     Dim Last_Time As Currency
    33.    
    34.     Dim Current_Time As Currency
    35.    
    36.     Dim Seconds As Single
    37.    
    38.     Last_Time = Current_Time - 1
    39.  
    40.     QueryPerformanceCounter Current_Time
    41.    
    42.     Seconds = (Current_Time - Last_Time) / Ticks_Per_Second
    43.    
    44.     Get_Elapsed_Seconds = Seconds
    45.    
    46. End Function
    47.  
    48. Private Sub Main_Loop()
    49.    
    50.     AutoRedraw = True
    51.    
    52.     Running = True
    53.  
    54.     Hi_Res_Timer_Initialize
    55.  
    56.     Milliseconds = Get_Elapsed_Seconds
    57.    
    58.     Do While Running = True
    59.        
    60.         DoEvents
    61.        
    62.         '60 seconds * 35 = 2100 seconds = 35 mintues
    63.        
    64.         Elapsed_Time = 2100 - (Get_Elapsed_Seconds - Milliseconds)
    65.        
    66.         If Elapsed_Time <= 0 Then
    67.  
    68.              Elapsed_Time = 0      
    69.  
    70.              MsgBox "Time Is Up", vbExclamation
    71.  
    72.              Running = False      
    73.      
    74.         End If
    75.  
    76.         Label1.Caption = Str(Elapsed_Time)
    77.        
    78.         QueryPerformanceCounter Start_Time
    79.        
    80.     Loop
    81.    
    82.     Unload Me
    83.    
    84. End Sub
    85.  
    86. Private Sub Form_Activate()
    87.  
    88.     Main_Loop
    89.  
    90. End Sub
    91.  
    92. Private Sub Form_Unload(Cancel As Integer)
    93.  
    94.     Running = False
    95.  
    96. End Sub

  4. #4
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Time countdown, urgent

    True, and I know you have proved it, but just starting out with the basics so as not to confuse the poster. Besides
    its not stated that it need pin point accuarcy.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  5. #5

    Thread Starter
    Junior Member
    Join Date
    Mar 2004
    Location
    England
    Posts
    29

    Re: Time countdown, urgent

    hey guys thanks a lot...ur the best...which one is better...the second one looks long..which one should i use

  6. #6
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Time countdown, urgent

    Depends on your needs. If you want/need milisecond accuracy then use Jacobs. If not then mine is fine.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  7. #7

    Thread Starter
    Junior Member
    Join Date
    Mar 2004
    Location
    England
    Posts
    29

    Re: Time countdown, urgent

    na its not neccessary to have milisecond accuracy, so i will use yours robdog88,
    thanks..a lot..to both of you..
    really appriciate it

  8. #8

    Thread Starter
    Junior Member
    Join Date
    Mar 2004
    Location
    England
    Posts
    29

    Re: Time countdown, urgent

    hey robdog, i got a "overflow" error. whats the problem

  9. #9
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Time countdown, urgent

    No prob. but I also wanted to ask if you needed to display the timer position/value as it counts down?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  10. #10

    Thread Starter
    Junior Member
    Join Date
    Mar 2004
    Location
    England
    Posts
    29

    Re: Time countdown, urgent

    the problem seems to be in the intCounter = 2100000 '35 minutes

  11. #11

    Thread Starter
    Junior Member
    Join Date
    Mar 2004
    Location
    England
    Posts
    29

    Re: Time countdown, urgent

    oo yer..i need to display it in a label named lblTimer...
    thnks
    if u can..sory for bothering u...thanks

  12. #12
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Time countdown, urgent

    Change it to a Long. Integer is only 32767.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  13. #13
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Time countdown, urgent

    Then we nly need to change the Interval to something a bit more shorter.

    VB Code:
    1. Option Explicit
    2.  
    3. Private intCounter As Long
    4.  
    5. Private Sub Form_Load()
    6.     intCounter = 2100000 '35 minutes
    7.     Timer1.Interval = 1000 'one second
    8.     Timer1.Enabled = True
    9. End Sub
    10.  
    11. Private Sub Timer1_Timer()
    12.     intCounter = intCounter - 1000
    13.     lblTimer.Caption = intCounter
    14.     If intCounter = 0 Then
    15.         Timer1.Enabled = False
    16.         MsgBox "Times up"
    17.     End If
    18. End Sub
    Last edited by RobDog888; May 1st, 2005 at 12:54 PM.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  14. #14

    Thread Starter
    Junior Member
    Join Date
    Mar 2004
    Location
    England
    Posts
    29

    Re: Time countdown, urgent

    i dont really see the countdown. its not displaying anything in the lbltimer...what could be the prblem

  15. #15

    Thread Starter
    Junior Member
    Join Date
    Mar 2004
    Location
    England
    Posts
    29

    Re: Time countdown, urgent

    ooo yer yer..sory...forgot to change the interval in the timer properties.
    i see it now..
    is there anyway i can format the way it is displayed..
    cos now its just a long number ther.
    can i isplay it as in mm:ss
    minutes : seconds

  16. #16
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Time countdown, urgent

    Yes, but we need to convert it from miliseconds to hh:mm:ss etc. Be back.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  17. #17
    Elite Hacker Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,349

    Re: Time countdown, urgent

    Yeah same in mine too.

    Mine was counting down from 2100 seconds (35 min)

  18. #18

    Thread Starter
    Junior Member
    Join Date
    Mar 2004
    Location
    England
    Posts
    29

    Re: Time countdown, urgent

    okey, thanks a lot robdog ur the best

  19. #19
    Elite Hacker Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,349

    Re: Time countdown, urgent

    Here ya go incase you wanna use my code. It now shows the elapsed time in hours, minutes, and seconds

    VB Code:
    1. Option Explicit
    2.  
    3. Private Declare Function QueryPerformanceCounter Lib "Kernel32" (lpPerformanceCount As Currency) As Long
    4. Private Declare Function QueryPerformanceFrequency Lib "Kernel32" (lpPerformanceCount As Currency) As Long
    5.  
    6. Private Ticks_Per_Second As Currency
    7. Private Start_Time As Currency
    8.  
    9. Private Elapsed_Time As Single
    10. Private Milliseconds As Single
    11.  
    12. Private Hours As Single
    13. Private Minutes As Single
    14. Private Seconds As Single
    15.  
    16. Private Running As Boolean
    17.  
    18. Private Function Hi_Res_Timer_Initialize() As Boolean
    19.  
    20.     If QueryPerformanceFrequency(Ticks_Per_Second) = 0 Then
    21.  
    22.         Hi_Res_Timer_Initialize = False
    23.  
    24.     Else
    25.    
    26.         QueryPerformanceCounter Start_Time
    27.      
    28.         Hi_Res_Timer_Initialize = True
    29.      
    30.     End If
    31.  
    32. End Function
    33.  
    34. Private Function Get_Elapsed_Seconds() As Single
    35.    
    36.     Dim Last_Time As Currency
    37.    
    38.     Dim Current_Time As Currency
    39.    
    40.     Dim Seconds As Single
    41.    
    42.     Last_Time = Current_Time - 1
    43.  
    44.     QueryPerformanceCounter Current_Time
    45.    
    46.     Seconds = (Current_Time - Last_Time) / Ticks_Per_Second
    47.    
    48.     Get_Elapsed_Seconds = Seconds
    49.    
    50. End Function
    51.  
    52. Private Sub Main_Loop()
    53.    
    54.     AutoRedraw = True
    55.    
    56.     Running = True
    57.  
    58.     Hi_Res_Timer_Initialize
    59.  
    60.     Milliseconds = Get_Elapsed_Seconds
    61.    
    62.     Do While Running = True
    63.        
    64.         DoEvents
    65.        
    66.         '60 seconds * 35 = 2100 seconds = 35 mintues
    67.        
    68.         Elapsed_Time = 2100 - (Get_Elapsed_Seconds - Milliseconds)
    69.        
    70.         Hours = Int((Elapsed_Time / 3600))
    71.        
    72.         Minutes = Int((Elapsed_Time / 60)) Mod 60
    73.        
    74.         Seconds = Elapsed_Time Mod 60
    75.        
    76.  
    77.        
    78.         If Elapsed_Time <= 0 Then
    79.  
    80.              Elapsed_Time = 0
    81.  
    82.              MsgBox "Time Is Up", vbExclamation
    83.  
    84.              Running = False
    85.      
    86.         End If
    87.  
    88.         Label1.Caption = Str(Hours) & ":" & Str(Minutes) & ":" & Str(Seconds)
    89.        
    90.         QueryPerformanceCounter Start_Time
    91.        
    92.     Loop
    93.    
    94.     Unload Me
    95.    
    96. End Sub
    97.  
    98. Private Sub Form_Activate()
    99.  
    100.     Main_Loop
    101.  
    102. End Sub
    103.  
    104. Private Sub Form_Unload(Cancel As Integer)
    105.  
    106.     Running = False
    107.  
    108. End Sub

  20. #20

    Thread Starter
    Junior Member
    Join Date
    Mar 2004
    Location
    England
    Posts
    29

    Re: Time countdown, urgent

    Jacob Roman, appriciate ur help....i am in my first year of A-level..
    and begginer to VB...ur code looks a bit too advanced...i dont understand it...and the teacher is going to be suspicios..and know that i have deffenetly not done one bit of it.....robdog's one..looks more ok, and i might get away with it..

  21. #21
    Elite Hacker Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,349

    Re: Time countdown, urgent

    It's not that advanced at all, unless you never worked with API's before. If you want, I can put comments in for you to show you what the code does.

    Here is what these API's do:

    The QueryPerformanceFrequency returns Ticks per second from the internal clock in the computer. The internal clock by the way is reseted every time the computer has rebooted.

    The QueryPerformanceCounter returns the elaped time from the internal clock.

    Hope this helps.

  22. #22
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Time countdown, urgent

    I got my coffee now and I see the JR is picking up quite nicely

    Heres what I got.

    VB Code:
    1. Private Sub Timer1_Timer()
    2.     Dim lTemp As Long
    3.     Dim lTemp2 As Long
    4.     intCounter = intCounter - 1000
    5.     lTemp = intCounter
    6.     lTemp = lTemp / 1000 'convert to seconds
    7.     lTemp2 = lTemp
    8.     lTemp = (lTemp / 60) Mod 60 'Minutes
    9.     lTemp2 = (lTemp2 Mod 60) 'Seconds
    10.     lblTimer.Caption = lTemp & ":" & lTemp2
    11.     If intCounter = 0 Then
    12.         Timer1.Enabled = False
    13.         MsgBox "Times up"
    14.     End If
    15. End Sub
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  23. #23

    Thread Starter
    Junior Member
    Join Date
    Mar 2004
    Location
    England
    Posts
    29

    Re: Time countdown, urgent

    thanks robdog, works perfect...only it starts from 35:60...but dont matter...looks convincing..
    lol...thanks both of you

  24. #24
    Elite Hacker Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,349

    Re: Time countdown, urgent

    Why thank you RobDog888. If I were you though, I'd add a couple variables in called Minutes and Seconds and replace these lines

    VB Code:
    1. Minutes = (lTemp / 60) Mod 60 'Minutes
    2.     Seconds = (lTemp2 Mod 60) 'Seconds
    3.     lblTimer.Caption = Minutes & ":" & Seconds

    Makes the code a little more readable. Remeber not to use his code in a computer with XP cause it would go 10 times faster than usual. Mine is compatible with all Windows OS's starting from Windows 95 and up.

  25. #25
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Time countdown, urgent

    I was thinking of making it better reading but I got a headach this morning. Need more coffee
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  26. #26
    Elite Hacker Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,349

    Re: Time countdown, urgent

    Speaking of which, I think I better get me some coffee myself. Thanks for the idea. While you are at it, fix the code a bit cause he has a problem:

    Quote Originally Posted by Adian_stuggel
    thanks robdog, works perfect...only it starts from 35:60...but dont matter...looks convincing..
    lol...thanks both of you

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