本文介绍了设置其他形式的另一个控制值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好
我打电话给另一个名为frmSearch的表格.
Hi to all
I call to another form with name frmSearch.
frmSearch fsearch = new frmSearch("formName", this);
fsearch.Show();
public frmSearch(string formName, Form _form)
{
switch (formName)
{
case "client":
_form.txtBoxclient.Text = value; //Error can not find control
break;
case "provider":
_form.txtBoxprovidet.Text = value; //Error can not find control
}
函数frmSearch(string formName, Form _for)
可以接收任何形式,例如(frmManagementFile, frmClient,....)
在vb.net中,此功能运行良好.
如何仅使用一种方法public frmSearch(string formName, Form _form)
即可修改不同形式的控件的值?
致谢并感谢s
the function frmSearch(string formName, Form _for)
can receive any forms for example(frmManagementFile, frmClient,....)
In vb.net this funcionality run well.
How to i can modify the value of control of diferent forms with only one method public frmSearch(string formName, Form _form)
?
Regards and thank''s
推荐答案
这篇关于设置其他形式的另一个控制值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!