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
Jim Gannon
NA
4
23.9k
running another project from one project buy a click of a button
Jan 22 2010 4:17 PM
running another project from one project buy a click of a button....
looking and trying so far not successful...any help would be greatly appreciated jmg
On a second form I created a button and want to click the button to run the second prpject...
Below is the second form.
namespace ScreenShotApp
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void backtoform1_Click(object sender, EventArgs e)
{
Form1 form1 = new Form1();
form1.Show();
this.Hide();
}
private void label1_Click(object sender, EventArgs e)
{
}
private void button3_Click(object sender, EventArgs e)
{
// This is the button to click to run the other project can't seem to get any answers....Thank You.
}
}
}
Reply
Answers (
1
)
VSTO
how to listen an incoming mail using vsto