請問各位大大,我想在自製表單中能夠使用SLEEP函式
語法如下:
#If VBA6 Then
Declare Sub Sleep Lib "kernel32" (Optional ByVal dwMilliseconds As Long = 1000) 'For 32 Bit Systems
#Else
Declare PtrSafe Sub Sleep Lib "kernel32" (Optional ByVal dwMilliseconds As Long = 1000) 'For 64 Bit Systems
#End If
但當我宣告後要執行,他寫
[attach]21995[/attach]
請問我該如何除錯呢??作者: jackyq 時間: 2015-9-15 23:33
add Private
Private Declare Sub .........作者: lichang 時間: 2015-9-16 00:24