Introduction
If you often use removable USB devices like a flash drive, you are probably already familiar with the “Safely Remove Hardware” icon that sits in the system tray.
The problem for many people is that the icon is tiny, and clicking it just right to bring up the menu is a pain.
So that only
I create a application for windows to safely remove the USB from Computer by simply pressing "F10" key.
Its requires background run.
Using the code
The code that runs the application until the user terminated manually.
No sleep()
or other timer function has been used:
void Exit_Click(object sender, EventArgs e)
{
Application.Exit();
}
System.Diagnostics.Process.Start("");
public void Display()
{
ni.MouseClick += new MouseEventHandler(ni_MouseClick);
ni.Icon = Resources.SystemTrayApp;
ni.Text = "Easy USB Remover";
ni.Visible = true;
ni.ContextMenuStrip = new ContextMenus().Create();
}
Points of Interest
I would like to thank codeproject.com . Because i just embed my idea into C# code which i got in there only.
and also I thank U. Manikandan who is the initiator of this project!
Here is the project running snaps.
History
- 23/11/2013: Easy USB Remover v1.0 created.