Editbox catch ctrl+c Key input
Posted: Sun May 31, 2009 06:17
Hi all
How can a Editbox can catch ctrl+c Key input
I use the answer in NetWork:
KeyEventArgs *kEvent = (KeyEventArgs*)(&args);
switch (kEvent->codepoint)
{
case 3:
......;
}
but when I try that, the codepoint aslo = -858993460 so it's the wrong answer
I want to ask how to catch ctrl+c Key input
Thank you!
How can a Editbox can catch ctrl+c Key input
I use the answer in NetWork:
KeyEventArgs *kEvent = (KeyEventArgs*)(&args);
switch (kEvent->codepoint)
{
case 3:
......;
}
but when I try that, the codepoint aslo = -858993460 so it's the wrong answer
I want to ask how to catch ctrl+c Key input
Thank you!