Click here to Skip to main content
15,900,254 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: crystal reports 10 in unmanaged c++ in vs.net 2003 Pin
Michael P Butler6-Jul-04 8:38
Michael P Butler6-Jul-04 8:38 
GeneralMRU Files in Dialog Program Pin
sweep1236-Jul-04 3:41
sweep1236-Jul-04 3:41 
GeneralMRU Files for MFC Dialog Program Pin
sweep1236-Jul-04 3:39
sweep1236-Jul-04 3:39 
GeneralKnowing Insert/Overwrite is on/off Pin
0v3rloader6-Jul-04 3:36
0v3rloader6-Jul-04 3:36 
GeneralRe: Knowing Insert/Overwrite is on/off Pin
V.6-Jul-04 3:42
professionalV.6-Jul-04 3:42 
GeneralRe: Knowing Insert/Overwrite is on/off Pin
David Crow6-Jul-04 4:43
David Crow6-Jul-04 4:43 
GeneralRe: Knowing Insert/Overwrite is on/off Pin
0v3rloader6-Jul-04 5:06
0v3rloader6-Jul-04 5:06 
GeneralRe: Knowing Insert/Overwrite is on/off Pin
David Crow6-Jul-04 7:15
David Crow6-Jul-04 7:15 
dNimrod#X wrote:
I was asking if it is possible to know (in a simple way) what the state of INS/OVR is without having to recur to a (main) Keyboard Listener, which in turn would set Global flags on/off.

I take it there is not.


But there is. Try:

if (GetKeyState(VK_INSERT) == 0x01)
    AfxMessageBox("Key is down");
else
    AfxMessageBox("Key is up");



"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen


GeneralRe: Knowing Insert/Overwrite is on/off Pin
0v3rloader6-Jul-04 7:48
0v3rloader6-Jul-04 7:48 
GeneralRe: Knowing Insert/Overwrite is on/off Pin
David Crow6-Jul-04 8:04
David Crow6-Jul-04 8:04 
GeneralRe: problems with forcibly closing the .exe Pin
#realJSOP6-Jul-04 3:19
professional#realJSOP6-Jul-04 3:19 
Generalblocking pipe write Pin
A T I F6-Jul-04 2:37
A T I F6-Jul-04 2:37 
GeneralRe: blocking pipe write Pin
A T I F6-Jul-04 2:43
A T I F6-Jul-04 2:43 
GeneralThread synchronization Pin
Kamis6-Jul-04 2:32
Kamis6-Jul-04 2:32 
GeneralRe: Thread synchronization Pin
Antony M Kancidrowski6-Jul-04 3:43
Antony M Kancidrowski6-Jul-04 3:43 
GeneralRe: Thread synchronization Pin
Kamis6-Jul-04 8:30
Kamis6-Jul-04 8:30 
GeneralRe: Thread synchronization Pin
Antony M Kancidrowski6-Jul-04 10:34
Antony M Kancidrowski6-Jul-04 10:34 
Generaloperator new with function free() Pin
xcavin6-Jul-04 0:48
xcavin6-Jul-04 0:48 
GeneralRe: operator new with function free() Pin
Michael P Butler6-Jul-04 0:53
Michael P Butler6-Jul-04 0:53 
GeneralRe: operator new with function free() Pin
xcavin6-Jul-04 1:19
xcavin6-Jul-04 1:19 
GeneralRe: operator new with function free() Pin
Antony M Kancidrowski6-Jul-04 3:34
Antony M Kancidrowski6-Jul-04 3:34 
QuestionQuestion about quering INF file keys? Pin
Behzad Ebrahimi6-Jul-04 0:46
Behzad Ebrahimi6-Jul-04 0:46 
GeneralAccessing a variable from another class Pin
sugumar6-Jul-04 0:43
sugumar6-Jul-04 0:43 
GeneralRe: Accessing a variable from another class Pin
Michael P Butler6-Jul-04 1:04
Michael P Butler6-Jul-04 1:04 
GeneralRe: Accessing a variable from another class Pin
sugumar6-Jul-04 1:20
sugumar6-Jul-04 1:20 

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.