I want to make a window (not just selecting a windows form either) from code.
The peices of code I got so far are this:
my using statements
starting code or somthingCode:using System; using System.Drawing; using System.Windows.Forms;
and ending code I beliveCode:namespace FormTest { public class FeaturedForm : Form
I also saw you can add STAThread before static void main()Code:static void Main() { Application.Run(new FeaturedForm()); }
so with that how do I make a window apear?



LinkBack URL
About LinkBacks


