Visual Studio 2005 里面关于 textbox获取checkbox的值问题 !!求救!!
我想在from1.vb里面的一个TextBox1里获取在from2.vb里选中的checkbox的值如何实现例如:from2.vb里面有选项checkbox1,check...
我想在from1.vb里面的一个TextBox1里获取在from2.vb里选中的checkbox的值
如何实现
例如:
from2.vb里面有选项checkbox1,checkbox2,checkbox3
我选中了checkbox1和checkbox2的值,然后按Button提交,这两个值就会输入到from.vb里的textbox里面 展开
如何实现
例如:
from2.vb里面有选项checkbox1,checkbox2,checkbox3
我选中了checkbox1和checkbox2的值,然后按Button提交,这两个值就会输入到from.vb里的textbox里面 展开
2个回答
展开全部
这个不是很简单么?
你在form2.button的代码中,加入设定form1.textbox.text的语句不就可以了。textbox控件在定义(或声明)的时候,应该都是public的,在别的窗体也可以直接访问的。
public sub Button_Click(handle,e) 'handles ...handles这部分就不写了
dim str as string = ""
if(checkbox1.checked) then
str = str & checkbox1.text
end if
if(checkbox2.checked) then
str = str & checkbox2.text
end if
if(checkbox3.checked) then
str = str & checkbox3.text
end if
form1.textbox.text= str
end sub
你在form2.button的代码中,加入设定form1.textbox.text的语句不就可以了。textbox控件在定义(或声明)的时候,应该都是public的,在别的窗体也可以直接访问的。
public sub Button_Click(handle,e) 'handles ...handles这部分就不写了
dim str as string = ""
if(checkbox1.checked) then
str = str & checkbox1.text
end if
if(checkbox2.checked) then
str = str & checkbox2.text
end if
if(checkbox3.checked) then
str = str & checkbox3.text
end if
form1.textbox.text= str
end sub
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询