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
Chris
NA
3
0
trying to launch process with dynamic context menuitem
Feb 9 2010 4:50 PM
I've got a program in which I'm using a notifyicon only.
Most of it is drawn at design time, but i have one dropdown that comes from run time.
I can get this to draw the dropdown items and populate with directories and files with a Dropdown_opening event.
The problem is that I'm not able to get it to launch a process (in the form of a window when clicked on a directory or running a program for a file).
Here's a snippet of code that I'm using:
private void myStuffToolStripMenuItem_DropDownOpening(object sender, EventArgs e)
{
DirectoryInfo dir = new DirectoryInfo(@"E:\My Stuff");
foreach(DirectoryInfo name in dir.GetDirectories())
{
//add directories found in folder
myStuffToolStripMenuItem.DropDownItems.Add(name.Name);
}
FileInfo fil = new FileInfo(@"E:\My Stuff");
foreach(FileInfo name in fil.Directory.GetFiles())
{
//add files found as well
myStuffToolStripMenuItem.DropDownItems.Add(name.Name);
}
}
Thank you for any help you can give.
I'm new to programming and learning on my own (with little help from the web/other users), so please be patient.
Reply
Answers (
4
)
Panel Controls
PASSING DATA BETWEEN TWO FORMS BACK AND FORTH