Hi, you can create forms writing some code. Using VB you can start with something like this: Dim myForm As New Windows.Forms.Form Dim myCombo As New Windows.Forms.ComboBox Dim myCreate As New Windows.Forms.Button myForm.StartPosition = FormStartPosition.CenterScreen myForm.Height = 110 myForm.Width = 150 ...
... View more