Search Results

1
vote
8answers
380 views

Is there a data structure that doesn’t allow duplicates and also maintains order of entry?

Duplicate: http://stackoverflow.com/questions/769097/choosing-a-stl-container I'm looking f …
1
vote
3answers
168 views

How can I redefine a built in keyboard shortcut’s behavior?

I am attempting to re-implement the Copy behavior for a QTextEdit object. The custom context menu I create works as expected when the 'Copy' button is clicked, but Ctrl+C isn't being handled correc …
3
votes
4answers
208 views

How to force Visual Studio preprocessor case sensitivity with #includes?

If you have a header file named ThisIsAHeaderFile.h, the following will still locate the file in Visual Studio: #include <ThisIsAheaderFile.h> Is there a way …
0
votes
1answer
685 views

How to catch Ctrl+C key event with Qt when Ctrl is released before ‘C’?

I would like to call some custom copy code when the user releases Ctrl+C. When 'C' is released before Ctrl, Qt sends a key event that matches with QKeySequence::Copy. When Ctrl is rele …
3
votes

How to get intellisense to reliably work in Visual Studio 2008

It looks like there's hope on the horizon for those of us unable to obtain Visual Assist: …