SetDlgItemInt

[DllImport("user32.dll", SetLastError = true)]
public static extern bool SetDlgItemInt(
   IntPtr hDlg,
   int nIDDlgItem,
   uint uValue,
   bool bSigned
);

Microsoft documentation: Link

Last updated