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

本文介绍了一段使用Visual Basic编写的代码,该代码通过调用Windows API函数来实现获取计算机名称和设置计算机名称的功能,并且能够实时显示鼠标指针的位置。文章包含具体的API函数声明和窗体事件处理代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

模块中的声明:

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

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值