在vb中如何编程让一个文本框在运行时相对程序不运行之前向右移动

2024-11-30 23:04:29
推荐回答(3个)
回答1:

在开始运行的程序模块里加上以下代码:Text1.Move Text1.Left + 100

回答2:

Text1.Move Text1.Left + 100

回答3:

Text1.Left = Text1.Left + 50
移动数字可以改变,要看你的需要