Click here to Skip to main content
15,920,438 members
Home / Discussions / C#
   

C#

 
GeneralRe: ListView Pin
Gary Kirkham1-Apr-05 5:27
Gary Kirkham1-Apr-05 5:27 
GeneralRe: ListView Pin
Dave Kreskowiak1-Apr-05 8:10
mveDave Kreskowiak1-Apr-05 8:10 
Generalwrite only one bit to file Pin
Kiki991-Apr-05 4:23
Kiki991-Apr-05 4:23 
GeneralRe: write only one bit to file Pin
Dave Kreskowiak1-Apr-05 5:20
mveDave Kreskowiak1-Apr-05 5:20 
GeneralRe: write only one bit to file Pin
yoaz1-Apr-05 10:14
yoaz1-Apr-05 10:14 
GeneralMinimizing a Console App to the NotifyIcon area of the taskbar Pin
mdavis931-Apr-05 3:53
mdavis931-Apr-05 3:53 
GeneralRe: Minimizing a Console App to the NotifyIcon area of the taskbar Pin
yoaz1-Apr-05 12:23
yoaz1-Apr-05 12:23 
GeneralRe: Minimizing a Console App to the NotifyIcon area of the taskbar Pin
mdavis931-Apr-05 17:46
mdavis931-Apr-05 17:46 
When the application is minimized, how can I remove it from the taskbar.. so the icon in the NotifyIcon is the only thing showing that the program is running... and then how do I open the console back up? Also.. What would be the correct syntax to close the Icon?

Here's the start of my "Main" section:

public static void Main (string[] args)
{
	NotifyIcon ni = new NotifyIcon();
	ni.Icon = new System.Drawing.Icon("C:/Icon.ico");
	ni.Visible = true;
	// Irc server to connect
	if ( Disconnecting )
	{
		ni.Dispose();
		ni.Visible = false;
		writer.Close();
		stream.Close();
		irc.Close();
		stream.Close();
	}


Thanks for the help.. it's greatly valued!
GeneralRe: Minimizing a Console App to the NotifyIcon area of the taskbar Pin
yoaz2-Apr-05 9:35
yoaz2-Apr-05 9:35 
GeneralRe: Minimizing a Console App to the NotifyIcon area of the taskbar Pin
mdavis932-Apr-05 11:20
mdavis932-Apr-05 11:20 
GeneralRe: Minimizing a Console App to the NotifyIcon area of the taskbar Pin
yoaz4-Apr-05 11:06
yoaz4-Apr-05 11:06 
GeneralRe: Minimizing a Console App to the NotifyIcon area of the taskbar Pin
mdavis935-Apr-05 0:47
mdavis935-Apr-05 0:47 
GeneralRe: Minimizing a Console App to the NotifyIcon area of the taskbar Pin
yoaz5-Apr-05 9:32
yoaz5-Apr-05 9:32 
GeneralRe: Minimizing a Console App to the NotifyIcon area of the taskbar Pin
mdavis936-Apr-05 2:53
mdavis936-Apr-05 2:53 
Question"This file is being used by another process", can I know the name of process? Pin
abcxyz821-Apr-05 3:44
abcxyz821-Apr-05 3:44 
AnswerRe: "This file is being used by another process", can I know the name of process? Pin
Colin Angus Mackay1-Apr-05 3:58
Colin Angus Mackay1-Apr-05 3:58 
GeneralRe: "This file is being used by another process", can I know the name of process? Pin
abcxyz821-Apr-05 4:40
abcxyz821-Apr-05 4:40 
GeneralRe: "This file is being used by another process", can I know the name of process? Pin
Dave Kreskowiak1-Apr-05 5:14
mveDave Kreskowiak1-Apr-05 5:14 
GeneralWindows Forms Timer Pin
totig1-Apr-05 3:07
totig1-Apr-05 3:07 
GeneralRe: Windows Forms Timer Pin
Nicholas Cardi1-Apr-05 3:53
Nicholas Cardi1-Apr-05 3:53 
QuestionEmbedded DLL? Pin
pmasknguyen1-Apr-05 3:04
pmasknguyen1-Apr-05 3:04 
AnswerRe: Embedded DLL? Pin
Nicholas Cardi1-Apr-05 3:50
Nicholas Cardi1-Apr-05 3:50 
GeneralRe: Embedded DLL? Pin
pmasknguyen1-Apr-05 5:10
pmasknguyen1-Apr-05 5:10 
GeneralRe: Embedded DLL? Pin
Nicholas Cardi1-Apr-05 5:35
Nicholas Cardi1-Apr-05 5:35 
GeneralRe: Embedded DLL? Pin
leppie1-Apr-05 8:41
leppie1-Apr-05 8:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.