Hello,
I've got a window and I've got 1 button in the top left hand corner of it. But I want another button right below it. I know to name each button I have to use this:
static HWND hwndButton = 0; but when I want to decalre the second, third, and so forth buttons what do I write? I've tried:
Hello,
I've got a window and I've got 1 button in the top left hand corner of it. But I want another button right below it. I know to name each button I have to use this:
static HWND hwndButton = 0; but when I want to decalre the second, third, and so forth buttons what do I write? I've tried:
static HWND hwndMusic = 0;
static HWND hwndPictures = 0;
and
static HWND hwndMusic, hwndPictures = 0; but I can only get the Music button. Can someone help? Thanks!