Hi :)
How can i turn a forum to the Default forum ?
(The forum that appears automaticly at the beginning)
Thanks.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
eliPosted Jul 19, 2007, 3:12 AM
Yes i ment Form, sorry. :/
Thanks for the answer.
AlanPosted Jul 18, 2007, 2:11 PM
If that's the case, then you can change the startup form from your Main() method which usually looks something like this if you're using VS 2005:
[
STAThread]static void Main()
{ Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
Just change Form1 to the class name of whichever form you want as your startup.
Mahesh ChandPosted Jul 18, 2007, 9:20 AM
Not sure what you mean. Can you write more details?