TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Prem Anandh J
NA
492
30.6k
Error in C# winform while show a new form
Jan 8 2016 3:26 AM
Hi all,
am developing a
C# Winform Application
.Am using the
MDI form
in my application also i placed a
Tab Control in MDI main form
.When i tried to show a new form as a MDIchild,But it not showing .
private void mnuForm1_Click(object sender, EventArgs e)
{
Form1 frm1= new Form1();
frm1.MdiParent = this;
frm1.Show();
}
am getting the
"A first chance exception of type 'System.ArgumentException' occurred in mscorlib.dll " Error in output window.
If i delete that Tab control form MDI then its working
...
Here,
What's wrong with adding TabControl in MDIform.
Thanks in Advance..
Reply
Answers (
5
)
Send messages to mobile from c# code
Student attendance