当前位置:编程学习 > VB >>

让窗体居中

答案:
让窗体居中
在主窗体的Form_load()中的最前面加入下列代码:
Dim X0 As long
Dim Y0 As Long

'让窗体居中
X0 = Screen.Width
Y0 = Screen.Height
X0 = (X0 - Me.Width) / 2
Y0 = (Y0 - Me.Height) / 2
Me.Move X0, Y0

上一个:KeyCode常数用法
下一个:有关Tray系统盒的VB API函数

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,