Click here to Skip to main content
15,881,757 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionToolBar ToolTip is blocked by whom? Pin
rajan.msmy2-Jan-06 3:36
rajan.msmy2-Jan-06 3:36 
AnswerRe: ToolBar ToolTip is blocked by whom? Pin
Owner drawn2-Jan-06 16:45
Owner drawn2-Jan-06 16:45 
GeneralRe: ToolBar ToolTip is blocked by whom? Pin
rajan.msmy2-Jan-06 17:59
rajan.msmy2-Jan-06 17:59 
GeneralRe: ToolBar ToolTip is blocked by whom? Pin
Owner drawn2-Jan-06 18:08
Owner drawn2-Jan-06 18:08 
QuestionHow to delay about 1/20 milisecond ? Pin
quangpk2-Jan-06 1:43
quangpk2-Jan-06 1:43 
AnswerRe: How to delay about 1/20 milisecond ? Pin
kakan2-Jan-06 3:18
professionalkakan2-Jan-06 3:18 
AnswerRe: How to delay about 1/20 milisecond ? Pin
babuprasath2-Jan-06 4:01
babuprasath2-Jan-06 4:01 
AnswerRe: How to delay about 1/20 milisecond ? Pin
nde_plume2-Jan-06 6:02
nde_plume2-Jan-06 6:02 
You probably can't reliably without going to extrodinary means. This is because Windows is not a Real time operating system, and at any stage your process could be preempted. However, the closest you can get is by calling

::Sleep(20)

In reality this will sleep more than twenty milliseconds quite often, because it relinquishes your timeslice in the process scheduler, but it is the best you can do without doing something really hard.

Despite what my mis-spelling co-poster tells you, going to assembly language will not offer you any benefit over the above, because it is no less subject to pre-emption than anything else. He/she might argue that you do not relinquish your timeslice as above, however the same can be accomplished in C++ too.

For example:

class Timer
{
public:
Timer();
void wait(DWORD ms);
private:
static int cyclesPerMs; // Number of loop iterations per millisecond
};

int Timer::cyclesPerMs = -1;

Timer::Timer()
{
const CALIBRATION_TICKS = 100000;
if(cyclesPerMs == -1)
{
// Calibrate timer
clock_t start = clock();
for(int i=0; i
AnswerRe: How to delay about 1/20 milisecond ? Pin
Alexander M.,3-Jan-06 7:43
Alexander M.,3-Jan-06 7:43 
QuestionHow to change parents Text prperty label from child dialog box Pin
RamL2-Jan-06 0:54
RamL2-Jan-06 0:54 
AnswerRe: How to change parents Text prperty label from child dialog box Pin
Owner drawn2-Jan-06 0:57
Owner drawn2-Jan-06 0:57 
GeneralRe: How to change parents Text prperty label from child dialog box Pin
RamL2-Jan-06 1:04
RamL2-Jan-06 1:04 
GeneralRe: How to change parents Text prperty label from child dialog box Pin
Owner drawn2-Jan-06 1:07
Owner drawn2-Jan-06 1:07 
GeneralRe: How to change parents Text prperty label from child dialog box Pin
RamL2-Jan-06 1:14
RamL2-Jan-06 1:14 
GeneralRe: How to change parents Text prperty label from child dialog box Pin
Owner drawn2-Jan-06 1:28
Owner drawn2-Jan-06 1:28 
GeneralRe: How to change parents Text prperty label from child dialog box Pin
RamL2-Jan-06 1:44
RamL2-Jan-06 1:44 
AnswerRe: How to change parents Text prperty label from child dialog box Pin
Prakash Nadar2-Jan-06 3:21
Prakash Nadar2-Jan-06 3:21 
GeneralRe: How to change parents Text prperty label from child dialog box Pin
RamL2-Jan-06 19:00
RamL2-Jan-06 19:00 
QuestionHow to read value at address 0000:0408 ? Pin
quangpk1-Jan-06 23:23
quangpk1-Jan-06 23:23 
AnswerRe: How to read value at address 0000:0408 ? Pin
kakan2-Jan-06 3:04
professionalkakan2-Jan-06 3:04 
GeneralRe: How to read value at address 0000:0408 ? Pin
Prakash Nadar2-Jan-06 3:23
Prakash Nadar2-Jan-06 3:23 
GeneralRe: How to read value at address 0000:0408 ? Pin
kakan2-Jan-06 3:28
professionalkakan2-Jan-06 3:28 
QuestionRe: How to read value at address 0000:0408 ? Pin
Prakash Nadar2-Jan-06 3:25
Prakash Nadar2-Jan-06 3:25 
QuestionDifference between CToolbar and CDialogBar Pin
Identity Undisclosed1-Jan-06 22:56
Identity Undisclosed1-Jan-06 22:56 
AnswerRe: Difference between CToolbar and CDialogBar Pin
Owner drawn1-Jan-06 22:59
Owner drawn1-Jan-06 22:59 

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.