Click here to Skip to main content
15,908,020 members
Home / Discussions / C#
   

C#

 
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 
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 
Copy the following method into your form.
protected override void WndProc(ref Message m)
{
    if (m.Msg == 0x0112) // WM_SYSCOMMAND
        if (((int)m.WParam & 0xFFF0) == 0xF020) // SC_MINIMIZE
            return; // Don't process the minimize message

    base.WndProc(ref m);
}



"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook

www.troschuetz.de

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 
AnswerRe: Calculating execution time less than 1 tick Pin
Nicholas Butler21-Oct-06 23:47
sitebuilderNicholas Butler21-Oct-06 23:47 
GeneralRe: Calculating execution time less than 1 tick Pin
Dave Kreskowiak22-Oct-06 2:24
mveDave Kreskowiak22-Oct-06 2:24 

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.