Filterhead
12-20-2007, 05:59 PM
like in VB-C++ code:
If OnStamCheck.value = 1 then
SetTimer(FIRSTTIMER, 1, NULL);
else
KillTimer(FIRSTTIMER);
end if
I want the upper part in C++ anyone knows? thank you! please come again :D
*Edit*
tried this but also without succes:
if OnStamCheck->Checked = true;
{
SetTimer(FIRSTTIMER, 1, NULL);
}
else if OnStamCheck->Checked = false;
{
KillTimer(FIRSTTIMER);
}
error message is -> lol
thx
If OnStamCheck.value = 1 then
SetTimer(FIRSTTIMER, 1, NULL);
else
KillTimer(FIRSTTIMER);
end if
I want the upper part in C++ anyone knows? thank you! please come again :D
*Edit*
tried this but also without succes:
if OnStamCheck->Checked = true;
{
SetTimer(FIRSTTIMER, 1, NULL);
}
else if OnStamCheck->Checked = false;
{
KillTimer(FIRSTTIMER);
}
error message is -> lol
thx