0

我有以下代码:

Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)

    Const WM_SYSCOMMAND As Integer = &H112
    Const SC_SCREENSAVE As Integer = &HF140

    MyBase.WndProc(m)
    If bloqueado = 0 Then
        If m.Msg = WM_SYSCOMMAND AndAlso m.WParam.ToInt32 = SC_SCREENSAVE Then
            Timer2.Start()
            inicio = Now
            pausa = pausa + 1
            AddHandler Application.Idle, AddressOf Application_Idle
        End If
    End If
End Sub

Private Sub Application_Idle(ByVal sender As Object, ByVal e As EventArgs)
    Dim newitem As ListViewItem
    Dim diferença As TimeSpan

    'MsgBox(Now.ToString)'
    Debug.Print(Now.ToString)
    fim = Now
    diferença = fim - inicio
    Timer2.Stop()
    newitem = New ListViewItem
    newitem.Text = pausa
    newitem.SubItems.Add(inicio.ToLongTimeString)
    newitem.SubItems.Add(fim.ToLongTimeString)
    newitem.SubItems.Add(diferença.ToString.Substring(0, 8))
    ListView1.Items.Add(newitem)
    parcial = parcial & pausa & vbTab & vbTab & inicio.ToLongTimeString & vbTab & vbTab & fim.ToLongTimeString _
         & vbTab & vbTab & diferença.ToString.Substring(0, 8) & vbTab & vbTab & "   screensaver" & System.Environment.NewLine
    RemoveHandler Application.Idle, AddressOf Application_Idle
End Sub

基本上第一部分检测屏幕保护程序何时激活并创建 application.idle 事件处理程序,第二部分检测活动时运行一堆代码并删除处理程序。

一切都很好,除了一点:

如您所见,当屏幕保护程序变为活动状态时,我有 inicio = now,当检测到活动时(当屏幕保护程序变为非活动状态时),我有 inicio = now,所以我应该有 2 个不同的时间,但如果我有它,就像我发布的那样,2 日期时间将是相同的。如果您注意到我有一个 msgbox 在评论中显示现在(当屏幕保护程序停止时),如果我将其从评论中删除,则 2 个日期时间将不同且正确(我使用计时器来确保结果)

现在我的问题是:为什么它需要消息框now来更新,为什么它不能在 debug.print 中工作?

有没有办法解决这个问题/更新nowvar,而不必使用消息框(我不希望应用程序有弹出消息)

如果我真的必须为此目的使用 msgbox,有没有办法让它不发送弹出窗口或立即自动单击确定,以便它立即消失?

编辑:

我一直在搜索,我发现了这段代码:

Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
    Public Function IsSNRunning() As Boolean
        IsSNRunning = (FindWindow("WindowsScreenSaverClass", vbNullString) <> 0)
    End Function

    Private Sub Timer3_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick
        If IsSNRunning() Then
            'Screen Saver Is Running
        Else
            Timer3.Stop()
            code
        End If
End Sub

Timer3.Start()在捕获屏幕保护程序开始的部分中使用了 when ,我的想法是如果我在知道屏幕保护程序是否打开时启动计时器,那么当我将 IsSNRunning 设为 false 时,屏幕保护程序停止运行,但它不起作用,任何想法为什么?

4

2 回答 2

1

用 Application.Idle 做任何事情都是徒劳的。您的应用程序不仅会在屏幕保护程序激活后立即进入空闲状态,而且您在运行时也不会停止空闲状态。屏幕保护程序将活动桌面切换到专用的安全桌面,任何正在运行的程序都不会获得任何输入,直到它停用。

可以观察到桌面切换,SystemEvents.SessionSwitch 事件触发。

请注意这样的代码相当缺乏实用性。好奇心是可以的,但总有很多东西要学。屏幕保护程序应位于列表的底部。

于 2013-07-27T10:51:21.103 回答
0

首先,我会感谢你们的帮助,就像你说application.idle的那样不起作用,在你们的帮助下,我得到了这个解决方案,我 VB:

Imports System
Imports Microsoft.Win32
Imports System.Windows.Forms
Imports System.Runtime.InteropServices

<DllImport("user32.dll", CharSet:=CharSet.Auto)> Public Shared Function SystemParametersInfo(uAction As UInteger, _
    uParam As UInteger, ByRef lpvParam As Boolean, fWinIni As Integer) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function
' Check if the screensaver is busy running.'
Public Shared Function IsScreensaverRunning() As Boolean
    Const SPI_GETSCREENSAVERRUNNING As Integer = 114
    Dim isRunning As Boolean = False

    If Not SystemParametersInfo(SPI_GETSCREENSAVERRUNNING, 0, isRunning, 0) Then
        ' Could not detect screen saver status...'
        Return False
    End If

    If isRunning Then
        ' Screen saver is ON.'
        Return True
    End If

    ' Screen saver is OFF.'
    Return False
End Function


Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)

    Const WM_SYSCOMMAND As Integer = &H112
    Const SC_SCREENSAVE As Integer = &HF140

    MyBase.WndProc(m)
    If bloqueado = 0 Then
        If m.Msg = WM_SYSCOMMAND AndAlso m.WParam.ToInt32 = SC_SCREENSAVE Then
            Timer2.Start()
            Timer3.Enabled = True
            Timer3.Start()
            'here we that that the screensaver started running so we start a timer'
        End If
    End If
End Sub

Private Sub Timer3_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick

    If IsScreensaverRunning() Then
        'Screen Saver Is Running'
    Else
        Timer3.Stop()
        Timer3.Enabled = False
        'Screen Saver Is not Running'
    End If

End Sub

因为计时器仅在屏幕保护程序运行时才开始运行,我们知道当您获得 timer3.stop 时,就是屏幕保护程序停止运行的时间

重要的是,不要在计时器停止之前放一个 msgbox,因为它不起作用,弹出窗口会显示并且它不会停止,所以会出现无数的弹出窗口(是的......我犯了那个错误:S)

再次感谢您对我的帮助,并希望它将来对某人有所帮助

于 2013-07-28T00:18:11.460 回答