加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

vb6.0 api 获取和设置计算机名 获取 鼠标位置坐标

发布时间:2020-12-17 08:14:45 所属栏目:百科 来源:网络整理
导读:模块中的声明: Public Declare Function GetComputerName Lib "kernel32" Alias "GetComputerNameA" (ByVal lpBuffer As String,nSize As Long) As Long Public Declare Function SetComputerName Lib "kernel32" Alias "SetComputerNameA" (ByVal lpComput

模块中的声明:

Public Declare Function GetComputerName Lib "kernel32" Alias "GetComputerNameA" (ByVal lpBuffer As String,nSize As Long) As Long
Public Declare Function SetComputerName Lib "kernel32" Alias "SetComputerNameA" (ByVal lpComputerName As String) As Long

Public Declare Function GetCursorPos Lib "user32" (lpPoint As pointapi) As Long

Type pointapi
x As Long
y As Long
End Type

窗体中的代码:

Private Sub Command1_Click() '获取computer name
Dim name As String * 255,length As Long
length = 255
name = String(length,0)
GetComputerName name,length
name = Left(name,InStr(name,Chr(0)) - 1)
Label1.Caption = name
End Sub

Private Sub Command2_Click() '设置computer name
Dim name As String
name = Text1.Text
SetComputerName name
End Sub

Private Sub Timer1_Timer() '随时获得鼠标坐标
Dim point As pointapi
GetCursorPos point
Label1.Caption = "x=" & point.x & "y=" & point.y
End Sub

Timer1.Interval=10

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读