vb中在文本框中输入一点的坐标(x,y),怎样把输入的数据中分离出坐标x,y然后对他们进行判断正负
2个回答
展开全部
'你输入的必须是x,y。不能加括号哦。
dim a()
a=split(text1.text,",")
if a(0)>0 then msgbox "x值为正!"
if a(0)<0 then msgbox "X值为负!"
if a(0)=0 then msgbox "X值为零!"
if a(1)>0 then msgbox "y值为正!"
if a(1)<0 then msgbox "y值为负!"
if a(1)=0 then msgbox "y值为零!"
dim a()
a=split(text1.text,",")
if a(0)>0 then msgbox "x值为正!"
if a(0)<0 then msgbox "X值为负!"
if a(0)=0 then msgbox "X值为零!"
if a(1)>0 then msgbox "y值为正!"
if a(1)<0 then msgbox "y值为负!"
if a(1)=0 then msgbox "y值为零!"
展开全部
dim a()
a=split(text1.text,",")
if a(0)>0 then msgbox "x值为正!"
elseif a(0)<0 then msgbox "X值为负!"
else:msgbox "X值为零!"
end if
if a(1)>0 then msgbox "y值为正!"
elseif a(1)<0 then msgbox "y值为负!"
else:msgbox "y值为零!"
end if
a=split(text1.text,",")
if a(0)>0 then msgbox "x值为正!"
elseif a(0)<0 then msgbox "X值为负!"
else:msgbox "X值为零!"
end if
if a(1)>0 then msgbox "y值为正!"
elseif a(1)<0 then msgbox "y值为负!"
else:msgbox "y值为零!"
end if
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询