January 24th, 2013 02:05 AM
No, you are not the only one. I like Windows 8. I've been using it as my main OS since September 2012, and didn't have any real problems yet.
December 24th, 2012 07:33 AM
[ removed duplicate thread ]
December 17th, 2012 04:53 AM
If you don't need to handle events on the static control, you might as well use IDC_STATIC for all of them.
December 17th, 2012 02:19 AM
December 17th, 2012 02:18 AM
I remove the "resolved" icon from that thread.
The thread was not really closed, it was only displaying such an icon.
December 17th, 2012 02:14 AM
I don't understand your question;
Why PostMessage?
Func() is exported from the DLL, so you can call it directly an app that links to the DLL.
December 17th, 2012 02:12 AM
Why is it a non-member function?
Can't you pass a pointer to the CMyPropertyPageDlg instance to the non-member function call?
December 17th, 2012 02:10 AM
December 17th, 2012 02:08 AM
You need a unique ID if you want to distinguish that instance of the static control in event handlers for example. For example, if you enable SS_NOTIFY on your static control you can react to events...
November 27th, 2012 01:45 AM
November 27th, 2012 01:45 AM
October 16th, 2012 01:57 AM
It all depends on what renderer you are using for your graphics.
Are you using plain OpenGL?
Are you using some game framework?
October 9th, 2012 06:54 AM
[ Added code tags ]
Please use them when posting code.
Is it possible to make a small test project that behaves the same way and post it here so we can take a look at it?
October 9th, 2012 06:51 AM
OReubens is right, you could create your own control, but even then, I don't think it makes sense to update text on the screen at 100 frames per second. That's just overkill.
I would still try to...
October 9th, 2012 04:36 AM
Create a small class that contains the message itself and some enumeration that specifies whether it's a warning, info, or error.
When a message comes in, create an instance of that class and store...
October 9th, 2012 04:18 AM
Did you try something like this?
m_ctrlColumnViewList.Invalidate();
October 9th, 2012 03:59 AM
CString doesn't contain any formatting.
I don't know what kind of input you get for your traces.
Can't you just store the input in a buffer instead of directly in the richedit?
October 9th, 2012 03:26 AM
http://www.codeguru.com/cpp/controls/editctrl/article.php/c489/CFloatEdit--edit-control-for-currency-numbers.htm
or
http://www.codeproject.com/Articles/751/Number-Currency-Percentage-Edit-Control...
October 9th, 2012 02:26 AM
And you really have to do that every 10ms? That's just too fast, and overkill anyway. 10ms is 100 FPS, that's too fast to read. You could update the text at a much lower FPS , that's more than fast...
October 9th, 2012 02:13 AM
Sounds like a very interesting project :)
October 9th, 2012 02:10 AM
Only handling WM_CHAR is most likely not enough, you will also have to handle WM_PASTE.
October 9th, 2012 02:09 AM
How are you decompressing the video frames?
If you are using the Media Foundation SDK, take a look at the example here: http://msdn.microsoft.com/en-us/library/windows/desktop/aa371827(v=vs.85).aspx
October 9th, 2012 02:07 AM
What do you mean with "colored traces"? Please elaborate or post a drawing of what you want to accomplish.
October 9th, 2012 02:00 AM
[ added code tags]
Please use them when posting code snippets.
Can you make a screenshot of the problem? I'm not quite sure I understand what is happening.
October 9th, 2012 01:59 AM