When enabling the HDPI mode for Windows apps, the Menubar is only half visible.
You can enable HDPI with the following code:
Declare Function SetProcessDPIAware Lib "user32" () As Boolean
If Not SetProcessDPIAware Then
MsgBox "Error enabling DPI aware mode."
End If
I did not found a way to change the height of the Menubar. Anyone?