I would center a form in an ActiveWorkbook, how to get the screen/window position of the workbook?
|
|
|||
|
|
|
Didn't find a good solution but found an acceptable one: int top = Application.Top + Application.PageSetup.TopMargin + Application.PageSetup.HeaderMargin + Application.Commandbars["Ribbon"].Height; int left = Application.Left + Application.PageSetup.LeftMargin; Form popup = new Form{ Top = top, Left = left, StartPosition = FormStartPosition.Manual, Width=400, Height=300}; popup.Show(); |
||
|
|
|
|
C# example..
|
||
|
|
