Trying to add further graphical detail to warning pop up following the use of a Data-Shapes UI script

@haganjake2

import clr

clr.AddReference("System.Windows.Forms")
from System.Windows.Forms import Form,Label,FormStartPosition

def popup(text):
	form = Form()
    form.StartPosition = FormStartPosition.CenterScreen
	form.Width = 300
	form.Height = 100	
	label = Label()
	label.Text = text
	label.Width = 280
	label.Height = 70
	label.Parent = form	
	form.ShowDialog()
	
Text="\n".join(IN[0])
popup(Text)
1 Like