二、获取鼠标在当前窗口(客户区)的屏幕坐标 そ 立一新项目窗体form1并添加控件文本框Text1、Text2 ぴ诖疤迥?橹惺淙耄邯
Option Explicit
Private Declare Function GetCursorPos Lib "user32"
(lpPoint As POINTAPI)As Long
Private Type POINTAPI
XAs Long Y As Long
End Type
Di mpt As POINTAPI
Di mreturncode As Long
Private Sub Form_Load()
Text1.Text =""
Text2.Text =""
MaxButton =False
MinButton =False
Form1.WindowState =2
End Sub
Private Sub Form_MouseMove(Button As Integer ,
Shift As Integer ,XAs Single ,Y As Single)
'注意pt 结构是按引用传递的
returncode =GetCursorPos(pt)
Text1.Text =pt .X
Text2.Text =pt .Y
End Sub
三、记录Wi ndows 使用时间
建立新项目窗口form1,输入代码:
Private Sub Form_Load()
form1.visible =false
Open app .paht +"memo .txt"For Append As #1
Print #1,"启动windows :"&CStr(Now)
Close #1
End Sub
Private Sub Form_Unload(Cancel As Integer)
Open app .paht +"memo .txt"For Append As #1
Print #1,"关闭windows :"&CStr(Now)
Close #1
End
End Sub
最后将此程序加入启动组即可。