User Controls
I have create one USER CONTROL in my vb.net project
now i want to add that control to my window form.
How can i do this plz.. suggest me ..
thank u.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Shaik AliPosted Feb 22, 2010, 1:30 PM
MyUserControl userCtrl=new MyUserControl();
userCtrl.Dock=DockStyle.Fill; //docking to the parent control
this.controls.add(userCtrl);
Mark it as answered if it solved ur problem
Hirendra SisodiyaPosted Feb 11, 2010, 12:15 AM
Thank You
ChunPosted Sep 2, 2009, 12:35 AM