questa e la classe o perlomeno sembracodice:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsFormsApplication1 { class interfaccia { public Form setup = new Form(); public void lanciala() { setup = new Form(); setup.Size = new System.Drawing.Size(100, 100); setup.Visible = true; setup.Show(); } } }

