Click here to Skip to main content
15,890,123 members
Home / Discussions / C#
   

C#

 
Questionexcel to c sharp arrays Pin
project c12-Aug-07 2:45
project c12-Aug-07 2:45 
AnswerRe: excel to c sharp arrays Pin
Paul Conrad12-Aug-07 6:22
professionalPaul Conrad12-Aug-07 6:22 
QuestionRe: excel to c sharp arrays Pin
project c14-Aug-07 4:37
project c14-Aug-07 4:37 
AnswerRe: excel to c sharp arrays Pin
project c14-Aug-07 5:09
project c14-Aug-07 5:09 
QuestionWindows form launch order? Pin
ddabble12-Aug-07 1:08
ddabble12-Aug-07 1:08 
AnswerRe: Windows form launch order? Pin
Giorgi Dalakishvili12-Aug-07 1:20
mentorGiorgi Dalakishvili12-Aug-07 1:20 
GeneralRe: Windows form launch order? Pin
ddabble12-Aug-07 2:00
ddabble12-Aug-07 2:00 
GeneralRe: Windows form launch order? Pin
Michael Sync12-Aug-07 2:37
Michael Sync12-Aug-07 2:37 
You will see the code like that in Program.cs
<br />
[STAThread]<br />
        static void Main()<br />
        {<br />
            Application.EnableVisualStyles();<br />
            Application.SetCompatibleTextRenderingDefault(false);<br />
            Application.Run(new Form1());<br />
        }


So, change form1 to the form name you want.

eg:
<br />
[STAThread]<br />
        static void Main()<br />
        {<br />
            Application.EnableVisualStyles();<br />
            Application.SetCompatibleTextRenderingDefault(false);<br />
            Application.Run(new FormThatIWantToShow());<br />
        }




Thanks and Regards,
Michael Sync ( Blog: http://michaelsync.net)

If you want to thank me for my help, please vote my message by clicking one of numbers beside "Rate this message". Why vote? Plz Read it here. Thank you. Smile | :)

GeneralRe: Windows form launch order? Pin
ddabble12-Aug-07 3:22
ddabble12-Aug-07 3:22 
Questiontelnet Pin
otrpgglk12-Aug-07 1:00
otrpgglk12-Aug-07 1:00 
AnswerRe: telnet Pin
leppie12-Aug-07 23:43
leppie12-Aug-07 23:43 
QuestionC# windows application closed by widows Pin
shahidul.haq12-Aug-07 0:40
shahidul.haq12-Aug-07 0:40 
AnswerRe: C# windows application closed by widows Pin
mav.northwind12-Aug-07 19:52
mav.northwind12-Aug-07 19:52 
Questionprocedure or function "procedure name" has too many argument specified Pin
isiran12-Aug-07 0:37
isiran12-Aug-07 0:37 
AnswerRe: procedure or function "procedure name" has too many argument specified Pin
Michael Sync12-Aug-07 2:59
Michael Sync12-Aug-07 2:59 
QuestionInheriting ! Pin
mrkeivan11-Aug-07 23:08
mrkeivan11-Aug-07 23:08 
AnswerRe: Inheriting ! Pin
Michael Sync12-Aug-07 3:10
Michael Sync12-Aug-07 3:10 
AnswerRe: Inheriting ! Pin
Rudolf Jan12-Aug-07 4:13
Rudolf Jan12-Aug-07 4:13 
GeneralRe: Inheriting ! Pin
Michael Sync12-Aug-07 5:57
Michael Sync12-Aug-07 5:57 
Questionthe quesion about Timer:it is Started but does not run the funtion every minute? Pin
supercsharp111-Aug-07 21:36
supercsharp111-Aug-07 21:36 
AnswerRe: the quesion about Timer:it is Started but does not run the funtion every minute? Pin
Michael Sync12-Aug-07 3:25
Michael Sync12-Aug-07 3:25 
QuestionEncryption Pin
Vipin.d11-Aug-07 20:28
Vipin.d11-Aug-07 20:28 
AnswerRe: Encryption Pin
Giorgi Dalakishvili11-Aug-07 23:17
mentorGiorgi Dalakishvili11-Aug-07 23:17 
GeneralRe: Encryption Pin
Vipin.d17-Aug-07 21:06
Vipin.d17-Aug-07 21:06 
QuestionSlow String Arrays Pin
Expert Coming11-Aug-07 19:55
Expert Coming11-Aug-07 19:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.