Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Taskbar Dimensions
#8
taskbar.h (in text forrm):

Code: (Select All)
int32 taskbar_height() {
  RECT rect;
  HWND taskBar = FindWindow("Shell_traywnd", NULL);
  if(taskBar && GetWindowRect(taskBar, &rect)) {
    return rect.bottom - rect.top;
  }
}

int32 taskbar_width() {
    RECT rect;
    HWND taskBar = FindWindow("Shell_traywnd", NULL);
    if (taskBar && GetWindowRect(taskBar, &rect)) {
        return rect.right - rect.left;
    }
}

int32 taskbar_top() {
    RECT rect;
    HWND taskBar = FindWindow("Shell_traywnd", NULL);
    if (taskBar && GetWindowRect(taskBar, &rect)) {
        return rect.top;
    }
}

int32 taskbar_left() {
    RECT rect;
    HWND taskBar = FindWindow("Shell_traywnd", NULL);
    if (taskBar && GetWindowRect(taskBar, &rect)) {
        return rect.left;
    }
}

int32 taskbar_bottom() {
    RECT rect;
    HWND taskBar = FindWindow("Shell_traywnd", NULL);
    if (taskBar && GetWindowRect(taskBar, &rect)) {
        return rect.bottom;
    }
}

int32 taskbar_right() {
    RECT rect;
    HWND taskBar = FindWindow("Shell_traywnd", NULL);
    if (taskBar && GetWindowRect(taskBar, &rect)) {
        return rect.right;
    }
}

If worst comes to worst, you can always copy the text above and paste it into a plain text file called "taskbar.h" and put it in your qb64pe folder. Wink
Reply


Messages In This Thread
Taskbar Dimensions - by SMcNeill - 12-26-2023, 03:46 PM
RE: Taskbar Dimensions - by bplus - 12-26-2023, 04:35 PM
RE: Taskbar Dimensions - by PhilOfPerth - 12-26-2023, 10:51 PM
RE: Taskbar Dimensions - by bplus - 12-27-2023, 12:05 AM
RE: Taskbar Dimensions - by SMcNeill - 12-27-2023, 12:20 AM
RE: Taskbar Dimensions - by PhilOfPerth - 12-27-2023, 11:15 PM
RE: Taskbar Dimensions - by TerryRitchie - 12-27-2023, 11:21 PM
RE: Taskbar Dimensions - by SMcNeill - 12-27-2023, 11:24 PM
RE: Taskbar Dimensions - by PhilOfPerth - 12-27-2023, 11:29 PM
RE: Taskbar Dimensions - by bplus - 12-28-2023, 11:55 PM
RE: Taskbar Dimensions - by SMcNeill - 12-29-2023, 12:47 AM
RE: Taskbar Dimensions - by bplus - 12-29-2023, 02:28 AM
RE: Taskbar Dimensions - by SMcNeill - 12-29-2023, 02:41 AM
RE: Taskbar Dimensions - by bplus - 12-29-2023, 02:59 AM
RE: Taskbar Dimensions - by SMcNeill - 12-29-2023, 06:31 AM



Users browsing this thread: 3 Guest(s)