Hello,
im currently using this kind of Hotkey :
if(GetAsyncKeyState(VK_F1))
{
if (this->checkBox1->Checked == false)
{
this->checkBox1->Checked = true;
}
else
{
this->checkBox1->Checked = false;
}
}
But its not very good.
I couldn't find a better way to do this :/
(im using Visual Studio 2008)
Anybody knows a better method for hotkeys ?