Click here to Skip to main content
15,887,485 members
Home / Discussions / C#
   

C#

 
Questionimport user32.dll in c# [modified] Pin
Vivek Vijayan11-Jul-09 16:54
Vivek Vijayan11-Jul-09 16:54 
AnswerRe: import user32.dll in c# Pin
PIEBALDconsult11-Jul-09 17:54
mvePIEBALDconsult11-Jul-09 17:54 
GeneralRe: import user32.dll in c# Pin
Vivek Vijayan11-Jul-09 18:09
Vivek Vijayan11-Jul-09 18:09 
GeneralRe: import user32.dll in c# Pin
PIEBALDconsult11-Jul-09 18:21
mvePIEBALDconsult11-Jul-09 18:21 
AnswerRe: import user32.dll in c# Pin
dan!sh 11-Jul-09 22:21
professional dan!sh 11-Jul-09 22:21 
GeneralRe: import user32.dll in c# Pin
Vivek Vijayan11-Jul-09 23:09
Vivek Vijayan11-Jul-09 23:09 
GeneralRe: import user32.dll in c# Pin
dan!sh 11-Jul-09 23:41
professional dan!sh 11-Jul-09 23:41 
AnswerRe: import user32.dll in c# [modified] Pin
Lino Chacko12-Jul-09 6:12
Lino Chacko12-Jul-09 6:12 
using System.Runtime.InteropServices;


[DllImport("user32.dll")]
static extern void keybd_event(byte bVk, byte bScan, uint dwFlags,
UIntPtr dwExtraInfo);


 private void btnInvokeStartButton_Click(object sender, EventArgs e)
 {
     const int VK_CONTROL = 17;
     const int VK_ESCAPE  = 27;
     const int VK_LWIN = 91;
     const int VK_RWIN = 92;

     const uint KEYEVENTF_KEYDOWN = 0;
     const uint KEYEVENTF_KEYUP = 2;

//if you just want to invoke Start button use this code

     //    Press the Windows Key
     keybd_event(VK_LWIN, 0, KEYEVENTF_KEYDOWN, (UIntPtr)0);
     // Release the Windows key
     keybd_event(VK_LWIN, 0, KEYEVENTF_KEYUP, (UIntPtr)0);

//if you want to use Ctrl and Esc keys to invoke Start button use

     ////   Press the Ctrl-Esc key
     //keybd_event(VK_CONTROL, 0, KEYEVENTF_KEYDOWN, (UIntPtr)0);
     //keybd_event(VK_ESCAPE, 0, KEYEVENTF_KEYDOWN, (UIntPtr)0);
     //// Release the Ctrl-Esc key
     //keybd_event(VK_CONTROL, 0, KEYEVENTF_KEYUP, (UIntPtr)0);
     //keybd_event(VK_ESCAPE, 0, KEYEVENTF_KEYUP, (UIntPtr)0);

 }


modified on Monday, July 13, 2009 8:38 AM

GeneralRe: import user32.dll in c# Pin
dan!sh 12-Jul-09 7:13
professional dan!sh 12-Jul-09 7:13 
GeneralRe: import user32.dll in c# Pin
Mirko198013-Jul-09 0:20
Mirko198013-Jul-09 0:20 
GeneralRe: import user32.dll in c# Pin
Enver Maroshi13-Jul-09 1:30
Enver Maroshi13-Jul-09 1:30 
GeneralRe: import user32.dll in c# Pin
Mirko198013-Jul-09 2:48
Mirko198013-Jul-09 2:48 
QuestionHow to increase the scope in an if statement [modified] Pin
Nathan Revka11-Jul-09 12:50
Nathan Revka11-Jul-09 12:50 
AnswerRe: How to increase the scope in an if statement Pin
harold aptroot11-Jul-09 13:03
harold aptroot11-Jul-09 13:03 
AnswerRe: How to increase the scope in an if statement Pin
Luc Pattyn11-Jul-09 13:59
sitebuilderLuc Pattyn11-Jul-09 13:59 
AnswerRe: How to increase the scope in an if statement Pin
DaveyM6911-Jul-09 14:21
professionalDaveyM6911-Jul-09 14:21 
QuestionHelp me to convert this code in Java into a C# code Pin
Member 333548911-Jul-09 9:46
Member 333548911-Jul-09 9:46 
AnswerRe: Help me to convert this code in Java into a C# code Pin
OriginalGriff11-Jul-09 10:36
mveOriginalGriff11-Jul-09 10:36 
AnswerRe: Help me to convert this code in Java into a C# code Pin
Member 333548911-Jul-09 10:56
Member 333548911-Jul-09 10:56 
GeneralRe: Help me to convert this code in Java into a C# code Pin
DaveyM6911-Jul-09 11:35
professionalDaveyM6911-Jul-09 11:35 
GeneralRe: Help me to convert this code in Java into a C# code Pin
Member 333548911-Jul-09 16:14
Member 333548911-Jul-09 16:14 
GeneralRe: Help me to convert this code in Java into a C# code Pin
DaveyM6912-Jul-09 7:57
professionalDaveyM6912-Jul-09 7:57 
AnswerRe: Help me to convert this code in Java into a C# code Pin
Nathan Revka11-Jul-09 12:55
Nathan Revka11-Jul-09 12:55 
QuestionSearching a string in a binary file using BinaryReader Pin
SimpleData11-Jul-09 8:08
SimpleData11-Jul-09 8:08 
AnswerRe: Searching a string in a binary file using BinaryReader Pin
Eddy Vluggen11-Jul-09 8:28
professionalEddy Vluggen11-Jul-09 8:28 

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.