Click here to Skip to main content
15,923,273 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to send SMS Pin
Nader Elshehabi25-Sep-06 4:26
Nader Elshehabi25-Sep-06 4:26 
QuestionMultiple pages printing in single sheet is not working fine Pin
kumar.bs25-Sep-06 2:12
kumar.bs25-Sep-06 2:12 
AnswerRe: Multiple pages printing in single sheet is not working fine Pin
Guffa25-Sep-06 2:41
Guffa25-Sep-06 2:41 
GeneralRe: Multiple pages printing in single sheet is not working fine Pin
kumar.bs25-Sep-06 2:53
kumar.bs25-Sep-06 2:53 
Questionhow to track label control with keyboard Pin
Parshant Verma25-Sep-06 1:56
Parshant Verma25-Sep-06 1:56 
AnswerRe: how to track label control with keyboard Pin
MCSD-Gandalf25-Sep-06 2:51
MCSD-Gandalf25-Sep-06 2:51 
Questionkey press event Pin
Parshant Verma25-Sep-06 1:32
Parshant Verma25-Sep-06 1:32 
AnswerRe: key press event Pin
baerten25-Sep-06 1:42
baerten25-Sep-06 1:42 
Hi
You can add for each component of the form a key_Down Event for example :

the form is called xxx

private: System::Void xxx_KeyDown(System::Object * sender, System::Windows::Forms::KeyEventArgs * e)
{
if(e->get_KeyCode() == 27 ) { // If the key ESC
... // Traitement
}
if (e.KeyChar == (char)Keys.Return) { // ENTER Key
... // Traitement
}
}



QuestionRe: key press event Pin
Parshant Verma25-Sep-06 1:54
Parshant Verma25-Sep-06 1:54 
AnswerRe: key press event Pin
Ed.Poore25-Sep-06 2:10
Ed.Poore25-Sep-06 2:10 
AnswerRe: key press event Pin
Stefan Troschuetz25-Sep-06 3:20
Stefan Troschuetz25-Sep-06 3:20 
Questionconvert date and time Pin
Yustme25-Sep-06 1:30
Yustme25-Sep-06 1:30 
AnswerRe: convert date and time Pin
User 665825-Sep-06 1:36
User 665825-Sep-06 1:36 
GeneralRe: convert date and time Pin
Yustme25-Sep-06 1:43
Yustme25-Sep-06 1:43 
AnswerRe: convert date and time Pin
eggsovereasy25-Sep-06 3:29
eggsovereasy25-Sep-06 3:29 
GeneralRe: convert date and time Pin
User 665825-Sep-06 4:39
User 665825-Sep-06 4:39 
Questiontab control Pin
Parshant Verma25-Sep-06 0:45
Parshant Verma25-Sep-06 0:45 
QuestionC# - System.Windows.Automation with Java, Java Access Bridge with WindowsAccessBridge.dll Pin
gagy37925-Sep-06 0:31
gagy37925-Sep-06 0:31 
AnswerRe: C# - System.Windows.Automation with Java, Java Access Bridge with WindowsAccessBridge.dll Pin
John5025-Jul-15 20:31
John5025-Jul-15 20:31 
GeneralRe: C# - System.Windows.Automation with Java, Java Access Bridge with WindowsAccessBridge.dll Pin
vishnukamath31-Oct-17 20:08
vishnukamath31-Oct-17 20:08 
QuestionFinding the number of Occurance of a string Pin
praveenqwe24-Sep-06 23:53
praveenqwe24-Sep-06 23:53 
AnswerRe: Finding the number of Occurance of a string Pin
Christian Graus25-Sep-06 0:01
protectorChristian Graus25-Sep-06 0:01 
AnswerRe: Finding the number of Occurance of a string Pin
Ed.Poore25-Sep-06 0:38
Ed.Poore25-Sep-06 0:38 
GeneralRe: Finding the number of Occurance of a string Pin
asishpatnaik25-Sep-06 1:08
asishpatnaik25-Sep-06 1:08 
GeneralRe: Finding the number of Occurance of a string Pin
Ed.Poore25-Sep-06 1:30
Ed.Poore25-Sep-06 1:30 

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.