程序一开始就用了timer1.enable=true
然后开始循环
do until 条件
      循环体
loop
Private Sub Timer1_Timer()
……
end sub
timer1_timer()事件不响应

解决方案 »

  1.   

    设置静态变量t
    比如说定时器每隔一秒钟触发一次
    每一次t+1
    循环中加入对t的判断
    if t>5 then exit sub
      

  2.   

    你若使用 DoEvents() 一切就解决了!!!!!
      

  3.   

    如下例,按command2可以停止循环.dim bStop as booleanprivate sub Command1_click()   bStop=False
       do
          ......
          doevents
       loop until bStopend subprivate sub Command2_click()   bStop=Trueend sub
      

  4.   

    to blackcecn(星际浪子)
    我说的就是定时器触发不了
      

  5.   

    to bardo(巴顿)
    我试试
      

  6.   

    to wesely(无奈太多)
    如果是自动控制呢
      

  7.   

    Option Explicit'************************************************************************************
    '定时控制
    '************************************************************************************
    Private Type FILETIME
        dwLowDateTime As Long
        dwHighDateTime As Long
    End TypePrivate Const WAIT_ABANDONED& = &H80&
    Private Const WAIT_ABANDONED_0& = &H80&
    Private Const WAIT_FAILED& = -1&
    Private Const WAIT_IO_COMPLETION& = &HC0&
    Private Const WAIT_OBJECT_0& = 0
    Private Const WAIT_OBJECT_1& = 1
    Private Const WAIT_TIMEOUT& = &H102&Private Const INFINITE = &HFFFF
    Private Const ERROR_ALREADY_EXISTS = 183&Private Const QS_HOTKEY& = &H80
    Private Const QS_KEY& = &H1
    Private Const QS_MOUSEBUTTON& = &H4
    Private Const QS_MOUSEMOVE& = &H2
    Private Const QS_PAINT& = &H20
    Private Const QS_POSTMESSAGE& = &H8
    Private Const QS_SENDMESSAGE& = &H40
    Private Const QS_TIMER& = &H10
    Private Const QS_MOUSE& = (QS_MOUSEMOVE _
                                Or QS_MOUSEBUTTON)
    Private Const QS_INPUT& = (QS_MOUSE _
                                Or QS_KEY)
    Private Const QS_ALLEVENTS& = (QS_INPUT _
                                Or QS_POSTMESSAGE _
                                Or QS_TIMER _
                                Or QS_PAINT _
                                Or QS_HOTKEY)
    Private Const QS_ALLINPUT& = (QS_SENDMESSAGE _
                                Or QS_PAINT _
                                Or QS_TIMER _
                                Or QS_POSTMESSAGE _
                                Or QS_MOUSEBUTTON _
                                Or QS_MOUSEMOVE _
                                Or QS_HOTKEY _
                                Or QS_KEY)Private Declare Function CreateWaitableTimer Lib "kernel32" _
        Alias "CreateWaitableTimerA" ( _
        ByVal lpSemaphoreAttributes As Long, _
        ByVal bManualReset As Long, _
        ByVal lpName As String) As Long
        
    Private Declare Function OpenWaitableTimer Lib "kernel32" _
        Alias "OpenWaitableTimerA" ( _
        ByVal dwDesiredAccess As Long, _
        ByVal bInheritHandle As Long, _
        ByVal lpName As String) As Long
        
    Private Declare Function SetWaitableTimer Lib "kernel32" ( _
        ByVal hTimer As Long, _
        lpDueTime As FILETIME, _
        ByVal lPeriod As Long, _
        ByVal pfnCompletionRoutine As Long, _
        ByVal lpArgToCompletionRoutine As Long, _
        ByVal fResume As Long) As Long
        
    Public Declare Function CancelWaitableTimer Lib "kernel32" ( _
        ByVal hTimer As Long)
        
    Public Declare Function CloseHandle Lib "kernel32" ( _
        ByVal hObject As Long) As Long
        
    Private Declare Function WaitForSingleObject Lib "kernel32" ( _
        ByVal hHandle As Long, _
        ByVal dwMilliseconds As Long) As Long
        
    Private Declare Function MsgWaitForMultipleObjects Lib "user32" ( _
        ByVal nCount As Long, _
        pHandles As Long, _
        ByVal fWaitAll As Long, _
        ByVal dwMilliseconds As Long, _
        ByVal dwWakeMask As Long) As Long
        
    Private Declare Function GetLastError Lib "kernel32" () As Long
    Public Sub Wait(lNumberOfSeconds As Long)
        Dim ft As FILETIME
        Dim lBusy As Long
        Dim lRet As Long
        Dim dblDelay As Double
        Dim dblDelayLow As Double
        Dim dblUnits As Double
        
        Dim ErrCode As Long
        
        On Error GoTo HELL
        
        hTimer = CreateWaitableTimer(0, True, App.EXEName & "Timer")
        
        If Err.LastDllError = ERROR_ALREADY_EXISTS Then
            
            ErrCode = GetLastError()
            If ErrCode <> 0 Then
                WriteErrLog Nothing, "Modinitial.Wait", 418, "Sysrem Error, Code: " & ErrCode
                Err.Clear
            End If
            ' If the timer already exists, it does not hurt to open it
            ' as long as the person who is trying to open it has the
            ' proper access rights.
        Else
            ft.dwLowDateTime = -1
            ft.dwHighDateTime = -1
            lRet = SetWaitableTimer(hTimer, ft, 0, 0, 0, 0)
        End If
        
        ' Convert the Units to nanoseconds.
        dblUnits = CDbl(&H10000) * CDbl(&H10000)
        dblDelay = CDbl(lNumberOfSeconds) * 1000 * 10000
        
        ' By setting the high/low time to a negative number, it tells
        ' the Wait (in SetWaitableTimer) to use an offset time as
        ' opposed to a hardcoded time. If it were positive, it would
        ' try to convert the value to GMT.
        ft.dwHighDateTime = -CLng(dblDelay / dblUnits) - 1
        dblDelayLow = -dblUnits * (dblDelay / dblUnits - _
            Fix(dblDelay / dblUnits))
        
        If dblDelayLow < CDbl(&H80000000) Then
            ' &H80000000 is MAX_LONG, so you are just making sure
            ' that you don't overflow when you try to stick it into
            ' the FILETIME structure.
            dblDelayLow = dblUnits + dblDelayLow
        End If
        
        ft.dwLowDateTime = CLng(dblDelayLow)
        lRet = SetWaitableTimer(hTimer, ft, 0, 0, 0, False)
        
        Do
            ' QS_ALLINPUT means that MsgWaitForMultipleObjects will
            ' return every time the thread in which it is running gets
            ' a message. If you wanted to handle messages in here you could,
            ' but by calling Doevents you are letting DefWindowProc
            ' do its normal windows message handling---Like DDE, etc.
            lBusy = MsgWaitForMultipleObjects(1, hTimer, False, _
                INFINITE, QS_ALLINPUT&)
            DoEvents
        Loop Until lBusy = WAIT_OBJECT_0
        
        ' Close the handles when you are done with them.
        CloseHandle hTimer
        
        Exit Sub
        
    HELL:
     
      ErrCode = GetLastError()
       Err.Clear
      Resume Next
      
    End Sub
      

  8.   

    你说的自动控制是?如果是定时,就把bStop=True放在timer1_timer那里,
    也可以放在某一个事件的处理函数里,如 adoRst_FetchComplete(...)
      

  9.   

    是定时,但是timer1_timer()不响应啊
    具体程序功能是这样的:控制串口收发数据。所以循环体是不断的读取串口的数据,停止条件是收到的数据符合要求。但是我不想用mscomm的oncomm事件,因为那样速度很慢,没有直接读串口快
      

  10.   

    to bardo(巴顿)
    这么长的程序我可要慢慢看
      

  11.   

    不要看,
    你直接调用Wait()
    调一次,它走一次,这还不简单吗?
      

  12.   

    “循环体是不断的读取串口的数据,停止条件是收到的数据符合要求”,可以用循环而不用Timer,只要 Sleep 1000 或者 Doevents 就行了。bStop=False
    do 
      Call ReadCom(byteData)                   '读com口
      Doevents                                 '让出控制权,以防假死机
      if byteData = ???  then bStop=True       '判断条件
    loop until bStop
      

  13.   

    如果一定要用Timer,你看看是不是没设好Interval。
    没什么理由不响应Timer事件的。
      

  14.   

    在你的循环中,循环一次读取一次系统时间,然后与前面保存的系统时间比较。如果超过了规定的时间,比如2秒,就中止循环。
    读取系统时间可以用timer
    举个例子来说:dim Ntime as long
    Ntime=timer
    do 
      Call ReadCom(byteData)                  '读com口
      if Timer - ntime>=200  or  byteData = ???   then exit do
    loop until bStop
      

  15.   

     To:Wesely(无奈太多) 你可以将断点设在循环语句上,但是不按F5或是F8继续执行,等待就可发现定时器不响应