我还有一个vb 问题 想求你帮忙一下 就是 设计一个程序, 从键盘输入任意一个整数,判断其为几位数。

2024-11-27 16:51:17
推荐回答(2个)
回答(1):

Private Sub Command1_Click()
Label1.Caption = Len(Trim(Text1.Text))
End Sub

回答(2):

Label1.Caption = Len(Trim(Text1.Text))