GetWindowClientSize – Get the size of a window’s internal area

GetWindowClientSize – Get the size of a window’s internal area

Private Type RECT    Left As Long    Top As Long    Right As Long    Bottom As LongEnd TypePrivate Declare Function GetClientRect Lib "user32" (ByVal hWnd As Long, _    lpRect As RECT) As Long' get the size of a window's internal area in pixelSub GetWindowClientSize(ByVal hWnd As Long, Width As Long, Height As Long)    Dim rc As RECT    GetClientRect hWnd, rc    Width = rc.Right - rc.Left    Height = rc.Bottom - rc.TopEnd Sub

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular