import clr import sys clr . AddReference ( "System.Windows.Forms" ) clr . AddReference ( "System.Drawing" ) import System from System import Drawing import System . Drawing import System . Windows . Forms from System . Drawing import * from System . Windows . Forms import * import math ##https://forum.dynamobim.com/t/reporting-to-user-at-the-end-of-dynamo-player-script/37421/6 from System . Windows . Forms import Form , Label , Button , FormBorderStyle , FormStartPosition ################################################################################# class popup ( Form ): ## def __init__ ( self , text ): self . InitializeComponent ( text ) def InitializeComponent ( self , text ): #form = Form() self . ClientSize = System . Drawing . Size ( 300 , 200 ) ##Height self . Text = "Result:" ##Form Title self . FormBord