I have a string with a hexadecimal number (for example, 0xb0844):
String h; And a variable of type HWND:
HWND h1; Question: How can I convert the string to the HWND handle?
Further I use
SetForegroundWindow(h1); I have a string with a hexadecimal number (for example, 0xb0844):
String h; And a variable of type HWND:
HWND h1; Question: How can I convert the string to the HWND handle?
Further I use
SetForegroundWindow(h1); Source: https://ru.stackoverflow.com/questions/796637/
All Articles