求助...
WIN7下怎么实现类似QQ 右下角弹出广告的提示窗口XP中 以下代码还管用(包括注释段),到了WIN7 一点效果都没有, WHY?????
有什么解决方案吗
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
'If Me.Opacity < 1 Then
' Me.Opacity += 0.05
'End If
If Me.Location.Y > (Screen.PrimaryScreen.WorkingArea.Height - Me.Height) Then
Me.Location = New Point(Screen.PrimaryScreen.WorkingArea.Width - Me.Width, Me.Location.Y - Me.Height / 10.0)
End If
End Sub
补充:.NET技术 , VB.NET