Click here to Skip to main content
15,907,913 members
Home / Discussions / C#
   

C#

 
Questionpass variables Pin
m.m._200722-Oct-06 7:02
m.m._200722-Oct-06 7:02 
AnswerRe: pass variables Pin
Michael P Butler22-Oct-06 7:19
Michael P Butler22-Oct-06 7:19 
AnswerRe: pass variables Pin
shabonaa22-Oct-06 16:45
shabonaa22-Oct-06 16:45 
QuestionDataTable.Select find rows within a specified column is null Pin
pcflasch22-Oct-06 6:21
pcflasch22-Oct-06 6:21 
AnswerRe: DataTable.Select find rows within a specified column is null Pin
Guffa22-Oct-06 6:34
Guffa22-Oct-06 6:34 
GeneralRe: DataTable.Select find rows within a specified column is null Pin
pcflasch22-Oct-06 7:32
pcflasch22-Oct-06 7:32 
QuestionCancel minimize problem Pin
Alocto22-Oct-06 4:40
Alocto22-Oct-06 4:40 
AnswerRe: Cancel minimize problem Pin
thegloomyclown22-Oct-06 6:14
thegloomyclown22-Oct-06 6:14 
I believe this should do the trick, just use the Forms Resize event since it is called when the Form is minimised.

private void Form1_Resize(object sender, System.EventArgs e)
{
     if (this.WindowState == FormWindowState.Minimized)
     {
          this.Visible = false;
          notifyIcon1.Visible = true;
     }
}

GeneralRe: Cancel minimize problem Pin
Alocto22-Oct-06 7:26
Alocto22-Oct-06 7:26 
GeneralRe: Cancel minimize problem Pin
Stefan Troschuetz22-Oct-06 21:28
Stefan Troschuetz22-Oct-06 21:28 
QuestionShowDialog() problem Pin
thegloomyclown22-Oct-06 0:45
thegloomyclown22-Oct-06 0:45 
AnswerRe: ShowDialog() problem Pin
Alocto22-Oct-06 4:52
Alocto22-Oct-06 4:52 
GeneralRe: ShowDialog() problem Pin
thegloomyclown22-Oct-06 5:17
thegloomyclown22-Oct-06 5:17 
GeneralRe: ShowDialog() problem Pin
Alocto22-Oct-06 7:22
Alocto22-Oct-06 7:22 
GeneralRe: ShowDialog() problem Pin
thegloomyclown22-Oct-06 9:18
thegloomyclown22-Oct-06 9:18 
Questionhow to get Hardware Id in c#2005 ? Pin
hdv21222-Oct-06 0:06
hdv21222-Oct-06 0:06 
AnswerRe: how to get Hardware Id in c#2005 ? Pin
pbeesley198922-Oct-06 1:00
pbeesley198922-Oct-06 1:00 
Questionwant ask about dropdownlist method Pin
iyoko21-Oct-06 22:46
iyoko21-Oct-06 22:46 
AnswerRe: want ask about dropdownlist method Pin
Michael P Butler22-Oct-06 8:34
Michael P Butler22-Oct-06 8:34 
Questionadd to IE [modified] Pin
m_mor21-Oct-06 22:23
m_mor21-Oct-06 22:23 
QuestionHow can I use an Java Applet in C#? Pin
Orchid8521-Oct-06 21:30
Orchid8521-Oct-06 21:30 
Questionwindows drive Pin
Nafiseh Salmani21-Oct-06 20:52
Nafiseh Salmani21-Oct-06 20:52 
AnswerRe: windows drive Pin
thegloomyclown22-Oct-06 0:53
thegloomyclown22-Oct-06 0:53 
AnswerRe: windows drive Pin
Stefan Troschuetz22-Oct-06 1:02
Stefan Troschuetz22-Oct-06 1:02 
QuestionCalculating execution time less than 1 tick Pin
islheg21-Oct-06 18:50
islheg21-Oct-06 18:50 

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.