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
Vijeesh VP
NA
9
642
Need help in how to call a method group from other form
Jan 29 2017 12:59 AM
Form1
public void radMenuItemViewReminder_Click(object sender, EventArgs e)
{
if (Convert.ToInt16(radMenuItemViewReminder.Tag) == 0)
{
radMenuItemViewReminder.Tag = 1;
frmReminder frmRem = new frmReminder();
frmRem.MdiParent = this;
frmRem.senderTag = (RadButtonItem)radMenuItemViewReminder;
frmRem.Show();
}
}
Form2
private void btnReminder_Click(object sender, EventArgs e)
{
frmMain mainObj = new frmMain();
btnReminder.Click += new EventHandler(mainObj.radMenuItemViewReminder_Click);
}
Please help me How to call Form1 event in form2 given event
Reply
Answers (
1
)
Passing Class from Click event to function.
MVC model first approach with entity framework