用vb如何把输出的数字在指定位置显示
1个回答
展开全部
下面的代码是在窗体的中心位置显示数字12345
Dim s As String
s = "12345"
CurrentX = (ScaleWidth - TextWidth(s)) \ 2
CurrentY = (ScaleHeight - TextHeight(s)) \ 2
Print s
下面的代码是在窗体的左下角显示数字88888
Dim s As String
s = "88888"
CurrentX = 0
CurrentY = ScaleHeight - TextHeight(s)
Print s
下面的代码是在窗体的(600, 450)的位置显示字符hello
Dim s As String
s = "helllo"
CurrentX = 600
CurrentY = 450
Print s
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询