vb中,在inputbox输入框里输入坐标值形式(x,y),接下来怎样分别把x和y分离出来显示在两个文本框里呢? 5
1个回答
2012-03-12 · 知道合伙人软件行家
关注
展开全部
Input = InputBox("请输入坐标(x,y): ")
If (Input<>"") And (Not InStr(",",Input)) Then
MyArray = Split(Input, ",")
MsgBox MyArray(0) & " . " & MyArray(1)
End If
If (Input<>"") And (Not InStr(",",Input)) Then
MyArray = Split(Input, ",")
MsgBox MyArray(0) & " . " & MyArray(1)
End If
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询