Page 1 of 1

Countdown ไม่สามารถ Stopการทำงาน แต่สามารถ Start ได้

Posted: Fri Jun 17, 2016 6:26 pm
by Tanasan
ในปุ่ม CommandButton1 ของผมใน Sheet"CL-MONITOR(1)" และ "CL-MONITORING"
ผมใช้ปุ่มเดียวในการทำให้ฟั่งชั่น Countdown ของผมนั้นทำงาน
แต่พอผมกด สามารถ StartCountdown ได้ครับ แต่พอกดอีกทีไม่ยอมหยุดทำงานฟั่งชั่นนี้

หมายเหตุ แต่ถ้าแยกปุ่ม Commandbutton เป็น2ปุ่ม สามารถหยุดได้

ไม่ทราบว่า ฟั่งชั่นกันทำงานนี้ สามารถใช้ร่วมกันในปุ่มเดียวกันได้หรือไม่ครับ
รบกวนด้วยครับ

ที่ Module2

Code: Select all

Dim TimerActive As Boolean

Sub StartTimer()
    Start_Timer
End Sub

Private Sub Start_Timer()
    'TimerActive = True
    Application.OnTime Now() + TimeValue("00:00:01"), "Timer"
End Sub

Private Sub Stop_Timer()
    'TimerActive = False
    On Error Resume Next
    Application.OnTime Now() + TimeValue("00:00:01"), "Timer", , False
End Sub

Sub Timer()
If Sheet3.Range("C50") = 10 Then change
If Sheet3.Range("C50") = 20 Then change1
Sheet3.Range("C50").Value = Sheet3.Range("C50") + 1
Start_Timer
End Sub


Sub StopTimer()
Stop_Timer
End Sub

Sub change()
Sheets("CL-MONITOR(1)").Select
End Sub


Sub change1()
Sheets("CL-MONITORING(2)").Select
clear
End Sub

Sub clear()
Sheet3.Range("C50").clear
End Sub

DATA ANDONG BOARD CL3 REV4 - Copy.xlsm

Re: Countdown ไม่สามารถ Stopการทำงาน แต่สามารถ Start ได้

Posted: Fri Jun 17, 2016 7:06 pm
by snasui
:D ต้องแยกปุ่มกัน Start กับ Stop จะเรียกพร้อมกันไม่ได้ครับ

หากต้องการจะเรียกจากปุ่มเดียวก็จะต้องเขียนให้โปรแกรมทราบว่า เมื่อไดจะ Call Start เมื่อใดจะ Call Stop ครับ

Re: Countdown ไม่สามารถ Stopการทำงาน แต่สามารถ Start ได้

Posted: Sat Jun 18, 2016 11:44 am
by Tanasan
snasui wrote::D ต้องแยกปุ่มกัน Start กับ Stop จะเรียกพร้อมกันไม่ได้ครับ

หากต้องการจะเรียกจากปุ่มเดียวก็จะต้องเขียนให้โปรแกรมทราบว่า เมื่อไดจะ Call Start เมื่อใดจะ Call Stop ครับ

คือผมก็ใช่ปุ่มเดียวกัน
ใน Sheet ที่ชื่อว่า "CL-MONITOR(1)"
Private Sub CommandButton1_Click()

With CommandButton1
If .Caption = "RUNING" Then
ActiveSheet.CommandButton1.Caption = "STOP"
ActiveSheet.CommandButton1.BackColor = RGB(255, 0, 0)
ActiveSheet.CommandButton1.Font.Size = 9
ActiveSheet.CommandButton1.Font.Name = "Arial"
Title_Show
displayonsheet1
displayonsheet2
StopTimer

Worksheets("CL-MONITORING(2)").CommandButton1.Font.Size = 9
Worksheets("CL-MONITORING(2)").CommandButton1.Caption = "STOP"
Worksheets("CL-MONITORING(2)").CommandButton1.BackColor = RGB(255, 0, 0)
ElseIf .Caption = "STOP" Then
ActiveSheet.CommandButton1.Caption = "RUNING"
ActiveSheet.CommandButton1.BackColor = RGB(0, 255, 0)
ActiveSheet.CommandButton1.Font.Size = 9
ActiveSheet.CommandButton1.Font.Name = "Arial"
Title_Hide
displayclosesheet1
displayclosesheet2
StartTimer

Worksheets("CL-MONITORING(2)").CommandButton1.Caption = "RUNING"
Worksheets("CL-MONITORING(2)").CommandButton1.BackColor = RGB(0, 255, 0)
Worksheets("CL-MONITORING(2)").CommandButton1.Font.Size = 9
End If
End With
End Sub
ที่เรียกใช้ module "StopTimer" กับ "StartTimer"
ที่ผมเขียนโปรแกรมไว้ หรือว่าผิดเงื่อนไข หรอ ครับ

Re: Countdown ไม่สามารถ Stopการทำงาน แต่สามารถ Start ได้

Posted: Sat Jun 18, 2016 12:45 pm
by snasui
:D ตัวอย่างการปรับ Code ครับ

ใน Module2 ปรับ Code ให้เป็น Public โดยลบ Private ออก ตามด้านล่าง

Code: Select all

Sub Start_Timer()
    'TimerActive = True
    Application.OnTime Now() + TimeValue("00:00:01"), "Timer"
End Sub

Sub Stop_Timer()
    'TimerActive = False
    On Error Resume Next
    Application.OnTime Now() + TimeValue("00:00:01"), "Timer", , False
End Sub
ตัวอย่างการปรับ Code ที่ชีต CL-MONITORING(2)

Code: Select all

Private Sub CommandButton1_Click()
   With CommandButton1
            If .Caption = "RUNING" Then
                Call Module2.Stop_Timer
                ActiveSheet.CommandButton1.Caption = "STOP"
                ActiveSheet.CommandButton1.BackColor = RGB(255, 0, 0)
                ActiveSheet.CommandButton1.Font.Size = 9
                ActiveSheet.CommandButton1.Font.Name = "Arial"
                Title_Show
                displayonsheet1
                displayonsheet2
                         
                Worksheets("CL-MONITOR(1)").CommandButton1.Font.Size = 9
                Worksheets("CL-MONITOR(1)").CommandButton1.Caption = "STOP"
                Worksheets("CL-MONITOR(1)").CommandButton1.BackColor = RGB(255, 0, 0)
                
             ElseIf .Caption = "STOP" Then
                Call Module2.Start_Timer
                ActiveSheet.CommandButton1.Caption = "RUNING"
                ActiveSheet.CommandButton1.BackColor = RGB(0, 255, 0)
                ActiveSheet.CommandButton1.Font.Size = 9
                ActiveSheet.CommandButton1.Font.Name = "Arial"
                Title_Hide
                displayclosesheet1
                displayclosesheet2
                 
                Worksheets("CL-MONITOR(1)").CommandButton1.Caption = "RUNING"
                Worksheets("CL-MONITOR(1)").CommandButton1.BackColor = RGB(0, 255, 0)
                Worksheets("CL-MONITOR(1)").CommandButton1.Font.Size = 9
               
            End If
    End With
End Sub

Re: Countdown ไม่สามารถ Stopการทำงาน แต่สามารถ Start ได้

Posted: Sat Jun 18, 2016 1:35 pm
by Tanasan
snasui wrote::D ตัวอย่างการปรับ Code ครับ

ใน Module2 ปรับ Code ให้เป็น Public โดยลบ Private ออก ตามด้านล่าง

Code: Select all

Sub Start_Timer()
    'TimerActive = True
    Application.OnTime Now() + TimeValue("00:00:01"), "Timer"
End Sub

Sub Stop_Timer()
    'TimerActive = False
    On Error Resume Next
    Application.OnTime Now() + TimeValue("00:00:01"), "Timer", , False
End Sub
ตัวอย่างการปรับ Code ที่ชีต CL-MONITORING(2)

Code: Select all

Private Sub CommandButton1_Click()
   With CommandButton1
            If .Caption = "RUNING" Then
                Call Module2.Stop_Timer
                ActiveSheet.CommandButton1.Caption = "STOP"
                ActiveSheet.CommandButton1.BackColor = RGB(255, 0, 0)
                ActiveSheet.CommandButton1.Font.Size = 9
                ActiveSheet.CommandButton1.Font.Name = "Arial"
                Title_Show
                displayonsheet1
                displayonsheet2
                         
                Worksheets("CL-MONITOR(1)").CommandButton1.Font.Size = 9
                Worksheets("CL-MONITOR(1)").CommandButton1.Caption = "STOP"
                Worksheets("CL-MONITOR(1)").CommandButton1.BackColor = RGB(255, 0, 0)
                
             ElseIf .Caption = "STOP" Then
                Call Module2.Start_Timer
                ActiveSheet.CommandButton1.Caption = "RUNING"
                ActiveSheet.CommandButton1.BackColor = RGB(0, 255, 0)
                ActiveSheet.CommandButton1.Font.Size = 9
                ActiveSheet.CommandButton1.Font.Name = "Arial"
                Title_Hide
                displayclosesheet1
                displayclosesheet2
                 
                Worksheets("CL-MONITOR(1)").CommandButton1.Caption = "RUNING"
                Worksheets("CL-MONITOR(1)").CommandButton1.BackColor = RGB(0, 255, 0)
                Worksheets("CL-MONITOR(1)").CommandButton1.Font.Size = 9
               
            End If
    End With
End Sub

ขอบคุณมากเลยครับ ได้แล้ว
แต่ผมมีข้อสงสัยบางอย่างครับ
คือถ้าแล้วนำ

Code: Select all

Call Module2.Start_Timer
ไปใส่ไว้บรรทัดล่างสุดใน loop if ทำไมถึงไม่ทำงานหรอครับ

Code: Select all

 ElseIf .Caption = "STOP" Then
                ActiveSheet.CommandButton1.Caption = "RUNING"
                ActiveSheet.CommandButton1.BackColor = RGB(0, 255, 0)
                ActiveSheet.CommandButton1.Font.Size = 9
                ActiveSheet.CommandButton1.Font.Name = "Arial"
                Title_Hide
                displayclosesheet1
                displayclosesheet2
                Worksheets("CL-MONITOR(1)").CommandButton1.Caption = "RUNING"
                Worksheets("CL-MONITOR(1)").CommandButton1.BackColor = RGB(0, 255, 0)
                Worksheets("CL-MONITOR(1)").CommandButton1.Font.Size = 9
               Call Module2.Start_Timer
            End If

Re: Countdown ไม่สามารถ Stopการทำงาน แต่สามารถ Start ได้

Posted: Sat Jun 18, 2016 1:55 pm
by snasui
:D การจะวางไว้ที่บรรทัดใดแล้วได้หรือไม่ได้ผมไม่ได้ทดสอบโดยละเอียดครับ เพียงแต่เห็นว่าความต้องการหลักคือต้องการที่จะกำหนดการจับเวลาหรือหยุดจับเวลา ดังนั้น จึงยกมาให้ทำงานเสียก่อน

โค้ดที่แนบมาเป็นการจัดการกับ Object ของ Worksheet อีกหลาย ๆ อย่างอาจจะกระทบกับการ Start และ Stop Timer ได้ หากไว้บรรทัดท้าย ๆ อาจจะต้องใช้ DoEvents เข้าไปช่วยเพื่อให้ทำงานได้ตรงกับที่ต้องการครับ

Re: Countdown ไม่สามารถ Stopการทำงาน แต่สามารถ Start ได้

Posted: Wed Jun 22, 2016 7:51 am
by Tanasan
snasui wrote::D การจะวางไว้ที่บรรทัดใดแล้วได้หรือไม่ได้ผมไม่ได้ทดสอบโดยละเอียดครับ เพียงแต่เห็นว่าความต้องการหลักคือต้องการที่จะกำหนดการจับเวลาหรือหยุดจับเวลา ดังนั้น จึงยกมาให้ทำงานเสียก่อน

โค้ดที่แนบมาเป็นการจัดการกับ Object ของ Worksheet อีกหลาย ๆ อย่างอาจจะกระทบกับการ Start และ Stop Timer ได้ หากไว้บรรทัดท้าย ๆ อาจจะต้องใช้ DoEvents เข้าไปช่วยเพื่อให้ทำงานได้ตรงกับที่ต้องการครับ

ขอบพระคุณมากครับ