Click here to Skip to main content
15,914,444 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: What's the meaning of ^ in VS2005.NET??? Pin
Ming Luo10-Jul-07 8:12
Ming Luo10-Jul-07 8:12 
GeneralRe: What's the meaning of ^ in VS2005.NET??? Pin
iddqd51510-Jul-07 8:37
iddqd51510-Jul-07 8:37 
Questiondeclaration classe and methodes c++ cli Pin
abbd10-Jul-07 6:13
abbd10-Jul-07 6:13 
Questionhow to keep on this program executing when I put it at the backgound? Pin
bloodwinner9-Jul-07 23:20
bloodwinner9-Jul-07 23:20 
AnswerRe: how to keep on this program executing when I put it at the backgound? Pin
Christian Graus10-Jul-07 1:35
protectorChristian Graus10-Jul-07 1:35 
QuestionMatlab/C communication Pin
gregdachs9-Jul-07 15:09
gregdachs9-Jul-07 15:09 
AnswerRe: Matlab/C communication Pin
Christian Graus9-Jul-07 15:14
protectorChristian Graus9-Jul-07 15:14 
QuestionKeyboard send Message Pin
WonYG9-Jul-07 14:43
WonYG9-Jul-07 14:43 
LRESULT OnTest(HWND hMetin, WPARAM wParam, LPARAM lParam)
{
hMetin = FindWindow(NULL, "metin");
Sleep(5000);
//Mouse move
SetCursorPos(100, 200);
Sleep(500);
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, GetMessageExtraInfo());
Sleep(500);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, GetMessageExtraInfo());
Sleep(500);

//This code is Keybd source of send Message
SendMessage(hMetin, WM_CHAR, 'd', 0); Sleep(100);

SendMessage(hMetin, WM_KEYDOWN, 'd', 0); Sleep(100);
SendMessage(hMetin, WM_KEYUP, 'd', 0); Sleep(100);

SendMessage(hMetin, WM_KEYDOWN, 'd', 0); Sleep(100);
SendMessage(hMetin, WM_CHAR, 'd', 0); Sleep(100);
SendMessage(hMetin, WM_KEYUP, 'd', 0); Sleep(100);

return 0;
}

------
Hi..
I am working Macro-Program of a online game.all function is success,but keymessage can't.But Text type is possible.In the online game is impossible to send the keyboard message.It maybe different the keymessage that send a device
and C++.
Ah..and To work the Network game,It's very a difficult problem.
Thanks in advance

and Now i am living in Korea ^^

Hi..
I like a C++
AnswerRe: Keyboard send Message Pin
Christian Graus9-Jul-07 15:36
protectorChristian Graus9-Jul-07 15:36 
AnswerRe: Keyboard send Message Pin
Hamid_RT10-Jul-07 9:09
Hamid_RT10-Jul-07 9:09 
QuestionCxImage library Pin
Bieras9-Jul-07 7:50
Bieras9-Jul-07 7:50 
AnswerRe: CxImage library Pin
Mark Salsbery9-Jul-07 8:51
Mark Salsbery9-Jul-07 8:51 
GeneralRe: CxImage library Pin
Bieras9-Jul-07 10:59
Bieras9-Jul-07 10:59 
GeneralRe: CxImage library Pin
Mark Salsbery9-Jul-07 11:10
Mark Salsbery9-Jul-07 11:10 
QuestionWhat's the equivalent to C# static classes? Pin
mid=57417-Jul-07 6:36
mid=57417-Jul-07 6:36 
AnswerRe: What's the equivalent to C# static classes? Pin
Mark Salsbery7-Jul-07 7:27
Mark Salsbery7-Jul-07 7:27 
GeneralRe: What's the equivalent to C# static classes? Pin
mid=57417-Jul-07 7:34
mid=57417-Jul-07 7:34 
GeneralRe: What's the equivalent to C# static classes? Pin
Mark Salsbery7-Jul-07 8:04
Mark Salsbery7-Jul-07 8:04 
GeneralRe: What's the equivalent to C# static classes? Pin
mid=57417-Jul-07 8:08
mid=57417-Jul-07 8:08 
GeneralRe: What's the equivalent to C# static classes? Pin
Mark Salsbery7-Jul-07 9:07
Mark Salsbery7-Jul-07 9:07 
Questionunresolved external symbol error when using template function Pin
patrick.steal7-Jul-07 1:40
patrick.steal7-Jul-07 1:40 
QuestionC++/CLI Pin
Subodh Borker7-Jul-07 1:15
Subodh Borker7-Jul-07 1:15 
AnswerRe: C++/CLI Pin
Bartosz Bien13-Jul-07 6:57
Bartosz Bien13-Jul-07 6:57 
QuestionTo add fields on a table Pin
mikobi6-Jul-07 21:47
mikobi6-Jul-07 21:47 
AnswerRe: To add fields on a table Pin
Christian Graus7-Jul-07 1:18
protectorChristian Graus7-Jul-07 1:18 

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.