Click here to Skip to main content
15,915,163 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralMFC on LINUX Pin
krolock7-Oct-02 13:07
krolock7-Oct-02 13:07 
GeneralRe: MFC on LINUX Pin
Christian Graus7-Oct-02 15:25
protectorChristian Graus7-Oct-02 15:25 
GeneralRe: MFC on LINUX Pin
Jon Hulatt7-Oct-02 22:03
Jon Hulatt7-Oct-02 22:03 
GeneralRe: MFC on LINUX Pin
Anonymous8-Oct-02 1:51
Anonymous8-Oct-02 1:51 
QuestionHow do you capture a "Ctrl + A" key combo? Pin
Anonymous7-Oct-02 12:10
Anonymous7-Oct-02 12:10 
AnswerRe: How do you capture a "Ctrl + A" key combo? Pin
Christian Graus7-Oct-02 12:18
protectorChristian Graus7-Oct-02 12:18 
GeneralRe: How do you capture a "Ctrl + A" key combo? Pin
Anonymous7-Oct-02 12:35
Anonymous7-Oct-02 12:35 
GeneralRe: How do you capture a "Ctrl + A" key combo? Pin
Christian Graus7-Oct-02 12:38
protectorChristian Graus7-Oct-02 12:38 
I'm sure I've done it in WM_CHAR with something like this

switch(nChar) // I can't recall where I'd get this from
{
case 'A':
case 'a':
GetAsyncKeyState(VK_CONTROL);
if (GetAsyncKeyState(VK_CONTROL))
{
// Control is down
}
else
{


}
}

Christian

Hey, at least Logo had, at it's inception, a mechanical turtle. VB has always lacked even that... - Shog9 04-09-2002

During last 10 years, with invention of VB and similar programming environments, every ill-educated moron became able to develop software. - Alex E. - 12-Sept-2002
GeneralLineTo Pin
BlackKettle7-Oct-02 11:10
BlackKettle7-Oct-02 11:10 
GeneralRe: LineTo Pin
Joaquín M López Muñoz7-Oct-02 11:44
Joaquín M López Muñoz7-Oct-02 11:44 
GeneralRe: LineTo Pin
Stephane Rodriguez.7-Oct-02 19:51
Stephane Rodriguez.7-Oct-02 19:51 
GeneralRe: LineTo Pin
Joaquín M López Muñoz7-Oct-02 19:59
Joaquín M López Muñoz7-Oct-02 19:59 
GeneralRe: LineTo Pin
Stephane Rodriguez.7-Oct-02 20:11
Stephane Rodriguez.7-Oct-02 20:11 
GeneralRe: LineTo Pin
Joaquín M López Muñoz7-Oct-02 20:46
Joaquín M López Muñoz7-Oct-02 20:46 
GeneralRe: LineTo Pin
Mike Nordell8-Oct-02 0:54
Mike Nordell8-Oct-02 0:54 
GeneralHHHHEEEEELLLLPPPPPP!!! Pin
MFC is the Best7-Oct-02 11:04
MFC is the Best7-Oct-02 11:04 
GeneralRe: HHHHEEEEELLLLPPPPPP!!! Pin
Max Santos7-Oct-02 11:11
Max Santos7-Oct-02 11:11 
GeneralRe: HHHHEEEEELLLLPPPPPP!!! Pin
Giles7-Oct-02 11:24
Giles7-Oct-02 11:24 
GeneralRe: HHHHEEEEELLLLPPPPPP!!! Pin
Christian Graus7-Oct-02 12:05
protectorChristian Graus7-Oct-02 12:05 
GeneralRe: HHHHEEEEELLLLPPPPPP!!! Pin
Giles8-Oct-02 8:17
Giles8-Oct-02 8:17 
GeneralRe: HHHHEEEEELLLLPPPPPP!!! Pin
mishgun7-Oct-02 17:59
mishgun7-Oct-02 17:59 
GeneralRe: HHHHEEEEELLLLPPPPPP!!! Pin
Christian Graus7-Oct-02 12:07
protectorChristian Graus7-Oct-02 12:07 
GeneralRe: HHHHEEEEELLLLPPPPPP!!! Pin
MFC is the Best7-Oct-02 13:26
MFC is the Best7-Oct-02 13:26 
GeneralRe: HHHHEEEEELLLLPPPPPP!!! Pin
Chris Losinger7-Oct-02 13:47
professionalChris Losinger7-Oct-02 13:47 
GeneralDisplaying XML Pin
google_4477-Oct-02 10:49
sussgoogle_4477-Oct-02 10:49 

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.