Click here to Skip to main content
15,890,506 members
Home / Discussions / C#
   

C#

 
GeneralRe: Show two decimal places in DataGridViewTextBoxCell Pin
Jordanwb31-Jan-09 15:43
Jordanwb31-Jan-09 15:43 
Question[Message Deleted] Pin
hkjghkj131-Jan-09 6:40
hkjghkj131-Jan-09 6:40 
AnswerRe: Problem with image and PictureBox Pin
Najmal31-Jan-09 7:43
Najmal31-Jan-09 7:43 
General[Message Deleted] Pin
hkjghkj131-Jan-09 9:46
hkjghkj131-Jan-09 9:46 
GeneralRe: Problem with image and PictureBox Pin
Christian Graus31-Jan-09 9:48
protectorChristian Graus31-Jan-09 9:48 
Questionrename [Main Report] Pin
Jassim Rahma31-Jan-09 5:54
Jassim Rahma31-Jan-09 5:54 
Questiondelete [Main Report] tab Pin
Jassim Rahma31-Jan-09 5:53
Jassim Rahma31-Jan-09 5:53 
Questiondisable task manager when called.... Pin
Mubeen.asim31-Jan-09 3:51
Mubeen.asim31-Jan-09 3:51 
hellu... i got this codes from microsoft to capture when a key is pressed... i have modified to disable the task manager being called but it dowsnt work.... sohuld i have to tweak the code more.. plz help me..

protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
const int WM_KEYDOWN = 0x100;
const int WM_SYSKEYDOWN = 0x104;

if ((msg.Msg == WM_KEYDOWN) || (msg.Msg == WM_SYSKEYDOWN))
{
switch (keyData)
{
//looking for the task manager combination
case Keys.Control|Keys.Alt|Keys.Delete:
MessageBox.Show("task manager called.");
break;
}
}

return base.ProcessCmdKey(ref msg, keyData);
}
GeneralRe: disable task manager when called.... Pin
Kristian Sixhøj31-Jan-09 3:59
Kristian Sixhøj31-Jan-09 3:59 
GeneralRe: disable task manager when called.... Pin
Mubeen.asim31-Jan-09 8:49
Mubeen.asim31-Jan-09 8:49 
AnswerRe: disable task manager when called.... Pin
Wendelius31-Jan-09 4:20
mentorWendelius31-Jan-09 4:20 
AnswerRe: disable task manager when called.... Pin
Dave Kreskowiak31-Jan-09 4:32
mveDave Kreskowiak31-Jan-09 4:32 
AnswerRe: disable task manager when called.... Pin
Guffa31-Jan-09 5:53
Guffa31-Jan-09 5:53 
GeneralRe: disable task manager when called.... Pin
Mubeen.asim31-Jan-09 8:47
Mubeen.asim31-Jan-09 8:47 
GeneralRe: disable task manager when called.... Pin
Christian Graus31-Jan-09 8:53
protectorChristian Graus31-Jan-09 8:53 
GeneralRe: disable task manager when called.... Pin
Anthony Mushrow31-Jan-09 9:09
professionalAnthony Mushrow31-Jan-09 9:09 
GeneralRe: disable task manager when called.... Pin
Christian Graus31-Jan-09 9:48
protectorChristian Graus31-Jan-09 9:48 
GeneralRe: disable task manager when called.... Pin
Anthony Mushrow31-Jan-09 9:56
professionalAnthony Mushrow31-Jan-09 9:56 
GeneralRe: disable task manager when called.... Pin
Guffa31-Jan-09 9:09
Guffa31-Jan-09 9:09 
GeneralRe: disable task manager when called.... Pin
Mubeen.asim31-Jan-09 9:20
Mubeen.asim31-Jan-09 9:20 
GeneralRe: disable task manager when called.... Pin
Christian Graus31-Jan-09 9:49
protectorChristian Graus31-Jan-09 9:49 
GeneralRe: disable task manager when called.... Pin
Mubeen.asim31-Jan-09 9:56
Mubeen.asim31-Jan-09 9:56 
GeneralRe: disable task manager when called.... Pin
Christian Graus31-Jan-09 10:09
protectorChristian Graus31-Jan-09 10:09 
GeneralRe: disable task manager when called.... Pin
Mubeen.asim31-Jan-09 10:15
Mubeen.asim31-Jan-09 10:15 
GeneralRe: disable task manager when called.... Pin
Christian Graus31-Jan-09 10:29
protectorChristian Graus31-Jan-09 10:29 

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.