Click here to Skip to main content
15,891,567 members
Home / Discussions / C#
   

C#

 
QuestionGame C # application code written in C # QuickSpark Pin
chiprom30-Jul-10 22:43
chiprom30-Jul-10 22:43 
AnswerRe: Game C # application code written in C # QuickSpark Pin
Estys30-Jul-10 22:59
Estys30-Jul-10 22:59 
AnswerRe: Game C # application code written in C # QuickSpark Pin
Luc Pattyn31-Jul-10 2:29
sitebuilderLuc Pattyn31-Jul-10 2:29 
AnswerRe: Game C # application code written in C # QuickSpark Pin
Abhinav S30-Jul-10 23:40
Abhinav S30-Jul-10 23:40 
AnswerRe: Game C # application code written in C # QuickSpark Pin
LloydA11131-Jul-10 1:02
LloydA11131-Jul-10 1:02 
QuestionEscape key control in c# Pin
Krishna Varadharajan30-Jul-10 21:13
Krishna Varadharajan30-Jul-10 21:13 
AnswerRe: Escape key control in c# Pin
OriginalGriff30-Jul-10 22:30
mveOriginalGriff30-Jul-10 22:30 
AnswerRe: Escape key control in c# Pin
Abhinav S30-Jul-10 23:45
Abhinav S30-Jul-10 23:45 
On the form's key down event, try using this code or something sinilar.

private void Form1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Escape)
this.Hide();
}

The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it.


My latest tip/trick - Silverlight *.XCP files.

Visit the Hindi forum here.

GeneralRe: Escape key control in c# Pin
Krishna Varadharajan31-Jul-10 1:16
Krishna Varadharajan31-Jul-10 1:16 
Questionnewbie XML question that I should have been able to do on my own. Pin
Ronni Marker30-Jul-10 20:05
Ronni Marker30-Jul-10 20:05 
AnswerRe: newbie XML question that I should have been able to do on my own. Pin
Estys30-Jul-10 23:16
Estys30-Jul-10 23:16 
QuestionWho can help on this C# Proj??? Urgent Pin
et.residential30-Jul-10 17:45
et.residential30-Jul-10 17:45 
AnswerRe: Who can help on this C# Proj??? Urgent Pin
PIEBALDconsult30-Jul-10 18:36
mvePIEBALDconsult30-Jul-10 18:36 
GeneralRe: Who can help on this C# Proj??? Urgent Pin
et.residential30-Jul-10 18:44
et.residential30-Jul-10 18:44 
GeneralRe: Who can help on this C# Proj??? Urgent PinPopular
PIEBALDconsult30-Jul-10 18:47
mvePIEBALDconsult30-Jul-10 18:47 
AnswerRe: Who can help on this C# Proj??? Urgent PinPopular
Chuck O'Toole30-Jul-10 18:46
Chuck O'Toole30-Jul-10 18:46 
AnswerRe: Who can help on this C# Proj??? Urgent Pin
Yusuf30-Jul-10 19:05
Yusuf30-Jul-10 19:05 
AnswerRe: Who can help on this C# Proj??? Urgent Pin
Abhinav S30-Jul-10 23:43
Abhinav S30-Jul-10 23:43 
AnswerRe: Who can help on this C# Proj??? Urgent Pin
Searril3-Aug-10 3:29
Searril3-Aug-10 3:29 
GeneralRe: Who can help on this C# Proj??? Urgent Pin
Gerry Schmitz3-Aug-10 20:16
mveGerry Schmitz3-Aug-10 20:16 
QuestionChart Controls in C# Pin
annmarypaul30-Jul-10 17:30
annmarypaul30-Jul-10 17:30 
Questionc# datetime timezone issues Pin
LimitedAtonement30-Jul-10 11:38
LimitedAtonement30-Jul-10 11:38 
AnswerRe: c# datetime timezone issues Pin
PIEBALDconsult30-Jul-10 18:39
mvePIEBALDconsult30-Jul-10 18:39 
Questioniframe in MasterPage Pin
brunoseixas30-Jul-10 9:07
brunoseixas30-Jul-10 9:07 
AnswerRe: iframe in MasterPage Pin
Dave Kreskowiak30-Jul-10 9:47
mveDave Kreskowiak30-Jul-10 9:47 

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.