我尝试在运行时在面板中添加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。
感谢。
答案 0 :(得分:2)
Panel1.Container
可能错了。试试Panel1.Controls.Add(nl)
。