添加控件运行时的未处理异常

时间:2013-11-28 19:41:58

标签: vb.net

我尝试在运行时在面板中添加Textbox但是我收到错误:

An unhandled exception of type 'System.NullReferenceException' occurred in Judge.exe
Additional information: Object reference not set to an instance of an object.

我的代码是:

Dim nl As New TextBox
AddHandler nl.LostFocus, AddressOf lost_focus
nl.Focus()
Panel1.Container.Add(nl)

我使用sub来添加它,我从其他形式调用它 和它的UserControl。

感谢。

1 个答案:

答案 0 :(得分:2)

Panel1.Container可能错了。试试Panel1.Controls.Add(nl)