Click here to Skip to main content
15,892,005 members
Home / Discussions / C#
   

C#

 
AnswerRe: .net application without frame Pin
lisan_al_ghaib23-Aug-08 12:19
lisan_al_ghaib23-Aug-08 12:19 
AnswerRe: .net application without frame Pin
Bert delaVega23-Aug-08 12:46
Bert delaVega23-Aug-08 12:46 
AnswerRe: .net application without frame Pin
Guffa23-Aug-08 12:59
Guffa23-Aug-08 12:59 
AnswerRe: .net application without frame Pin
Paul Conrad23-Aug-08 13:13
professionalPaul Conrad23-Aug-08 13:13 
AnswerRe: .net application without frame Pin
Samer Aburabie24-Aug-08 8:32
Samer Aburabie24-Aug-08 8:32 
AnswerRe: .net application without frame Pin
Pete O'Hanlon24-Aug-08 10:27
mvePete O'Hanlon24-Aug-08 10:27 
Questionon minimize go to takbar near clock Pin
help as an alias23-Aug-08 10:41
help as an alias23-Aug-08 10:41 
AnswerRe: on minimize go to takbar near clock Pin
zafersavas23-Aug-08 11:06
zafersavas23-Aug-08 11:06 
Follow these steps:

1) Drag a NotifyIcon control onto the form from the toolbox. Choose an icon and text for the notify icon
2) Add these two event handlers to the code:
<code>// resize event for the form</code>
private void Form1_Resize(object sender, EventArgs e)
{
	if (FormWindowState.Minimized == this.WindowState)
        this.Hide();
}

<code>// double click event for the notify icon</code>
private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
{
	this.Show();
	this.WindowState = FormWindowState.Normal;
}

Good luck
zafer
AnswerRe: on minimize go to takbar near clock Pin
Nirandas23-Aug-08 18:10
Nirandas23-Aug-08 18:10 
AnswerRe: on minimize go to takbar near clock Pin
Hamid_RT23-Aug-08 18:31
Hamid_RT23-Aug-08 18:31 
GeneralRe: on minimize go to takbar near clock Pin
Paul Conrad23-Aug-08 19:24
professionalPaul Conrad23-Aug-08 19:24 
QuestionXML - access "next child".. how? Pin
Joplinazz23-Aug-08 7:52
Joplinazz23-Aug-08 7:52 
AnswerRe: XML - access "next child".. how? Pin
Mbah Dhaim23-Aug-08 8:53
Mbah Dhaim23-Aug-08 8:53 
GeneralRe: XML - access "next child".. how? Pin
Joplinazz23-Aug-08 9:27
Joplinazz23-Aug-08 9:27 
AnswerRe: XML - access "next child".. how? Pin
dybs23-Aug-08 10:24
dybs23-Aug-08 10:24 
GeneralRe: XML - access "next child".. how? Pin
Joplinazz24-Aug-08 2:31
Joplinazz24-Aug-08 2:31 
GeneralRe: XML - access "next child".. how? Pin
dybs24-Aug-08 5:37
dybs24-Aug-08 5:37 
AnswerRe: XML - access "next child".. how? Pin
Samer Aburabie24-Aug-08 8:37
Samer Aburabie24-Aug-08 8:37 
QuestionEmail Sender not sending to gmail,hotmail etc but will send to the domain from it is sent addresses Pin
new2pgrmg23-Aug-08 5:59
new2pgrmg23-Aug-08 5:59 
AnswerRe: Email Sender not sending to gmail,hotmail etc but will send to the domain from it is sent addresses Pin
Mbah Dhaim24-Aug-08 10:42
Mbah Dhaim24-Aug-08 10:42 
AnswerRe: Email Sender not sending to gmail,hotmail etc but will send to the domain from it is sent addresses Pin
#realJSOP25-Aug-08 2:58
mve#realJSOP25-Aug-08 2:58 
QuestionPrinting a Certificate Form Pin
Ian Uy23-Aug-08 4:13
Ian Uy23-Aug-08 4:13 
AnswerRe: Printing a Certificate Form Pin
Abhijit Jana23-Aug-08 4:25
professionalAbhijit Jana23-Aug-08 4:25 
GeneralRe: Printing a Certificate Form Pin
Paul Conrad23-Aug-08 6:07
professionalPaul Conrad23-Aug-08 6:07 
AnswerRe: Printing a Certificate Form Pin
Paul Conrad23-Aug-08 6:10
professionalPaul Conrad23-Aug-08 6:10 

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.