Click here to Skip to main content
15,921,226 members
Home / Discussions / C#
   

C#

 
GeneralRe: Converting from autocad dwg file to both PDF and Image Pin
Thiha Soe Htet -1140164212-May-16 1:23
Thiha Soe Htet -1140164212-May-16 1:23 
Question.Net Framework 4.0 and upper Pin
gautamkhatri42810-May-16 18:57
gautamkhatri42810-May-16 18:57 
AnswerRe: .Net Framework 4.0 and upper Pin
Mycroft Holmes10-May-16 20:23
professionalMycroft Holmes10-May-16 20:23 
AnswerRe: .Net Framework 4.0 and upper Pin
Kornfeld Eliyahu Peter10-May-16 21:05
professionalKornfeld Eliyahu Peter10-May-16 21:05 
AnswerRe: .Net Framework 4.0 and upper Pin
koolprasad200310-May-16 23:16
professionalkoolprasad200310-May-16 23:16 
GeneralClickOnce : Unknown Publisher Pin
Jaimesh.241110-May-16 0:55
Jaimesh.241110-May-16 0:55 
Rant[REPOST] ClickOnce : Unknown Publisher Pin
Richard Deeming10-May-16 1:16
mveRichard Deeming10-May-16 1:16 
GeneralRe: [REPOST] ClickOnce : Unknown Publisher Pin
Jaimesh.241110-May-16 1:35
Jaimesh.241110-May-16 1:35 
AnswerRe: ClickOnce : Unknown Publisher Pin
Pete O'Hanlon10-May-16 1:49
mvePete O'Hanlon10-May-16 1:49 
GeneralRe: ClickOnce : Unknown Publisher Pin
Jaimesh.241110-May-16 1:54
Jaimesh.241110-May-16 1:54 
GeneralRe: ClickOnce : Unknown Publisher Pin
Pete O'Hanlon10-May-16 2:26
mvePete O'Hanlon10-May-16 2:26 
GeneralRe: ClickOnce : Unknown Publisher Pin
Jaimesh.241110-May-16 2:34
Jaimesh.241110-May-16 2:34 
GeneralRe: ClickOnce : Unknown Publisher Pin
Pete O'Hanlon10-May-16 3:02
mvePete O'Hanlon10-May-16 3:02 
QuestionBest method to automate website filling in Google Chrome Pin
srikrishnathanthri8-May-16 23:26
srikrishnathanthri8-May-16 23:26 
AnswerRe: Best method to automate website filling in Google Chrome Pin
Richard MacCutchan8-May-16 23:56
mveRichard MacCutchan8-May-16 23:56 
GeneralRe: Best method to automate website filling in Google Chrome Pin
srikrishnathanthri9-May-16 0:02
srikrishnathanthri9-May-16 0:02 
GeneralRe: Best method to automate website filling in Google Chrome Pin
Richard MacCutchan9-May-16 0:18
mveRichard MacCutchan9-May-16 0:18 
Answer[REPOST] Best method to automate website filling in Google Chrome Pin
Richard Deeming9-May-16 1:55
mveRichard Deeming9-May-16 1:55 
QuestionReports in Visual studio 2012 -Display footer on last page Pin
Member 124156218-May-16 23:13
Member 124156218-May-16 23:13 
QuestionMultilingua virtual keyboard Pin
kelkeel7-May-16 19:44
kelkeel7-May-16 19:44 
AnswerRe: Multilingua virtual keyboard Pin
Peter_in_27807-May-16 21:00
professionalPeter_in_27807-May-16 21:00 
GeneralRe: Multilingua virtual keyboard Pin
kelkeel7-May-16 22:00
kelkeel7-May-16 22:00 
AnswerRe: Multilingua virtual keyboard Pin
OriginalGriff7-May-16 22:22
mveOriginalGriff7-May-16 22:22 
GeneralRe: Multilingua virtual keyboard Pin
kelkeel7-May-16 23:21
kelkeel7-May-16 23:21 
Hey buddy! Thanks.
Here is what I have tried. It's not working though except that it sends Ö and close the program. However, when I comment out this.Close(), the program does not put the above character on ms word. Is there anything I'm not doing right? I intent to use switch & cases if I can get it working this way.

C#
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
         {
              if (keyData == Keys.Escape)
              {
                   this.Close();
                   SendKeys.Send("Ö");
                   return true;
              }
              else
              {
                   return base.ProcessCmdKey(ref msg, keyData);
              }
         }

GeneralRe: Multilingua virtual keyboard Pin
OriginalGriff7-May-16 23:32
mveOriginalGriff7-May-16 23:32 

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.