Hi,
I have a problem. I made a system that imports config settings from a file into to strings. The config contains keys like: "VK_CONTROL".
Normaly you use this code
Code:
if(GetAsyncKeyState(VK_CONTROL) &1)
Now my code needs to be
Code:
String Key1="VK_CONTROL"
if(GetAsyncKeyState(Key1) &1)
But this returns an error.
Someone knows how to make this work?
Tnx!
Znoen,
