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

Managed C++/CLI

 
AnswerRe: games Pin
Vega0230-Oct-06 9:55
Vega0230-Oct-06 9:55 
QuestionInputing data from .txt to array. Pin
Ramper29-Oct-06 15:58
Ramper29-Oct-06 15:58 
AnswerRe: Inputing data from .txt to array. Pin
Jun Du30-Oct-06 14:15
Jun Du30-Oct-06 14:15 
QuestionCan someone help me with sound control? Pin
crystal0049029-Oct-06 5:26
crystal0049029-Oct-06 5:26 
AnswerRe: Can someone help me with sound control? Pin
Mark Salsbery29-Oct-06 17:46
Mark Salsbery29-Oct-06 17:46 
Questioncan u help me Pin
scorpioninstyle28-Oct-06 9:08
scorpioninstyle28-Oct-06 9:08 
AnswerRe: can u help me Pin
Christian Graus28-Oct-06 11:27
protectorChristian Graus28-Oct-06 11:27 
QuestionLinux Active Process List Pin
feritunal27-Oct-06 22:52
feritunal27-Oct-06 22:52 
if i press F4, i see active process list in linux keyboard. Please help.

static int emulate_raw(struct vc_data *vc, unsigned int keycode,
unsigned char up_flag)
{
if (keycode > 255 || !x86_keycodes[keycode])
return -1;

switch (keycode) {
case KEY_PAUSE:
put_queue(vc, 0xe1);
put_queue(vc, 0x1d | up_flag);
put_queue(vc, 0x45 | up_flag);
return 0;
case KEY_HANGUEL:
if (!up_flag) put_queue(vc, 0xf1);
return 0;
case KEY_HANJA:
if (!up_flag) put_queue(vc, 0xf2);
return 0;
}

if (keycode == KEY_SYSRQ && sysrq_alt) {
put_queue(vc, 0x54 | up_flag);
return 0;
}

if (x86_keycodes[keycode] & 0x100)
put_queue(vc, 0xe0);

put_queue(vc, (x86_keycodes[keycode] & 0x7f) | up_flag);

if (keycode == KEY_SYSRQ) {
put_queue(vc, 0xe0);
put_queue(vc, 0x37 | up_flag);
}

return 0;
}
AnswerRe: Linux Active Process List Pin
George L. Jackson28-Oct-06 6:20
George L. Jackson28-Oct-06 6:20 
QuestionBYTE to unsigned char Pin
samkook27-Oct-06 12:54
samkook27-Oct-06 12:54 
AnswerRe: BYTE to unsigned char Pin
Christian Graus27-Oct-06 15:54
protectorChristian Graus27-Oct-06 15:54 
GeneralRe: BYTE to unsigned char Pin
samkook27-Oct-06 19:12
samkook27-Oct-06 19:12 
GeneralRe: BYTE to unsigned char Pin
Christian Graus28-Oct-06 2:19
protectorChristian Graus28-Oct-06 2:19 
GeneralRe: BYTE to unsigned char Pin
samkook28-Oct-06 9:08
samkook28-Oct-06 9:08 
GeneralRe: BYTE to unsigned char Pin
Christian Graus28-Oct-06 11:26
protectorChristian Graus28-Oct-06 11:26 
GeneralRe: BYTE to unsigned char Pin
Mark Salsbery29-Oct-06 17:23
Mark Salsbery29-Oct-06 17:23 
QuestionUser Painted TextBox Pin
Tojiro26-Oct-06 8:39
Tojiro26-Oct-06 8:39 
Questionwriting test results in XML file using CPPUnit Pin
jayart26-Oct-06 5:21
jayart26-Oct-06 5:21 
QuestionUnmanaged pointer in managed collection Pin
Jose M Castellanos26-Oct-06 1:15
Jose M Castellanos26-Oct-06 1:15 
AnswerRe: Unmanaged pointer in managed collection Pin
User 58385226-Oct-06 13:41
User 58385226-Oct-06 13:41 
AnswerRe: Unmanaged pointer in managed collection Pin
George L. Jackson28-Oct-06 6:45
George L. Jackson28-Oct-06 6:45 
Questionread all files form a CD Pin
Iv0125-Oct-06 14:01
Iv0125-Oct-06 14:01 
AnswerRe: read all files form a CD Pin
Jonathan [Darka]25-Oct-06 21:14
professionalJonathan [Darka]25-Oct-06 21:14 
QuestionTemplate question Pin
User 58385224-Oct-06 15:16
User 58385224-Oct-06 15:16 
AnswerRe: Template question Pin
Rob Graham24-Oct-06 17:07
Rob Graham24-Oct-06 17:07 

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.