Click here to Skip to main content
15,905,963 members
Home / Discussions / C#
   

C#

 
GeneralRe: Deployment to Quick Launch Toolbar Pin
Heath Stewart2-May-04 6:20
protectorHeath Stewart2-May-04 6:20 
QuestionFull Screen / Change Reso? Pin
Acidon1-May-04 12:05
Acidon1-May-04 12:05 
AnswerRe: Full Screen / Change Reso? Pin
Meysam Mahfouzi1-May-04 16:37
Meysam Mahfouzi1-May-04 16:37 
GeneralRe: Full Screen / Change Reso? Pin
Acidon1-May-04 17:37
Acidon1-May-04 17:37 
GeneralRe: Full Screen / Change Reso? Pin
Heath Stewart2-May-04 6:19
protectorHeath Stewart2-May-04 6:19 
GeneralRe: Full Screen / Change Reso? Pin
Acidon2-May-04 9:35
Acidon2-May-04 9:35 
GeneralHandling a car in a 2d game Pin
Snowjim1-May-04 9:07
Snowjim1-May-04 9:07 
GeneralRe: Handling a car in a 2d game Pin
leppie1-May-04 9:17
leppie1-May-04 9:17 
GeneralRe: Handling a car in a 2d game Pin
leppie1-May-04 9:28
leppie1-May-04 9:28 
Generalfiles needed by application Pin
mookeroo1-May-04 4:00
mookeroo1-May-04 4:00 
GeneralRe: files needed by application Pin
leppie1-May-04 5:45
leppie1-May-04 5:45 
GeneralRe: files needed by application Pin
Heath Stewart2-May-04 6:14
protectorHeath Stewart2-May-04 6:14 
GeneralRe: files needed by application Pin
mookeroo2-May-04 12:30
mookeroo2-May-04 12:30 
GeneralLock the mouse to my application Pin
Member 8094091-May-04 2:08
Member 8094091-May-04 2:08 
GeneralRe: Lock the mouse to my application Pin
Hesham Amin1-May-04 3:27
Hesham Amin1-May-04 3:27 
GeneralRe: Lock the mouse to my application Pin
osto1-May-04 13:50
osto1-May-04 13:50 
GeneralRe: Lock the mouse to my application Pin
Heath Stewart2-May-04 6:11
protectorHeath Stewart2-May-04 6:11 
GeneralWindows Messag handling in C# Pin
Vini Deep1-May-04 0:21
Vini Deep1-May-04 0:21 
Hi,

Is there any C# equivalent for SDK function 'MsgWaitForMultipleObjects()'? I want to implement this following c++ code in c#. Which is the right path to follow.
bool CMyClass::MyFun()
{
 unsigned  threadID;
 DWORD     waitResult;
 MSG       msg;
   

 writeSuccess = false;
 hThread = (HANDLE)_beginthreadex(NULL, 0,writeThread, NULL,0,&threadID);

 if (!hThread)
  return false;

 waitResult = MsgWaitForMultipleObjects(1, &hThread, FALSE, INFINITE, QS_ALLINPUT);
 while (waitResult != WAIT_OBJECT_0)
 {
  if (waitResult == WAIT_OBJECT_0 + 1)
   while (PeekMessage(&msg, NULL,0,0,PM_REMOVE))
   {
    TranslateMessage(&msg);
    DispatchMessage(&msg);
   }
  if (waitResult == WAIT_FAILED)
  {
   //An error occured, we need to handle it here
   break;
  }
   
  waitResult = MsgWaitForMultipleObjects(1, &hThread, FALSE, INFINITE, QS_ALLINPUT);
 }
 CloseHandle(hThread);

 hThread = NULL;

 return writeSuccess;
}


I have read about the IMessageFilter interface of Microsoft.Win32 namespace. Is this the right way to proceed on this.

Kindly advise.


Vini
GeneralRe: Windows Messag handling in C# Pin
scadaguy1-May-04 8:33
scadaguy1-May-04 8:33 
GeneralWeb Service from Java Pin
Member 1697730-Apr-04 19:35
Member 1697730-Apr-04 19:35 
GeneralRe: Web Service from Java Pin
Mazdak30-Apr-04 19:57
Mazdak30-Apr-04 19:57 
GeneralRe: Web Service from Java Pin
Heath Stewart2-May-04 6:09
protectorHeath Stewart2-May-04 6:09 
GeneralCapturing mouse movement while transparent Pin
bennyrascal30-Apr-04 19:18
bennyrascal30-Apr-04 19:18 
GeneralRe: Capturing mouse movement while transparent Pin
Heath Stewart2-May-04 6:05
protectorHeath Stewart2-May-04 6:05 
GeneralRe: Capturing mouse movement while transparent Pin
bennyrascal2-May-04 19:39
bennyrascal2-May-04 19:39 

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.