first boot up or first page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • stevenicolas21
    New Member
    • Oct 2008
    • 2

    first boot up or first page

    i want to add a page or form that will came first of all other pages like in photoshop or coral startup page came before the application comes.help with codeing
    thanks
  • mldisibio
    Recognized Expert New Member
    • Sep 2008
    • 191

    #2
    If you are refering to a Windows application, you can do a search on "How to create a Splash Screen in Windows Forms" for examples, such as:
    How to Make a Splash Screen

    Comment

    • stevenicolas21
      New Member
      • Oct 2008
      • 2

      #3
      Originally posted by mldisibio
      If you are refering to a Windows application, you can do a search on "How to create a Splash Screen in Windows Forms" for examples, such as:
      How to Make a Splash Screen
      previesly i was doning it with threading
      the criteriya is same but i dont know how to elminat the borders n titlebar,
      thanks
      thanks dude thats a great thing which i was serching for one month now i got that thanks allot

      Comment

      • joedeene
        Contributor
        • Jul 2008
        • 579

        #4
        Originally posted by stevenicolas21
        previesly i was doning it with threading
        the criteriya is same but i dont know how to elminat the borders n titlebar,
        thanks
        thanks dude thats a great thing which i was serching for one month now i got that thanks allot

        the borders and title bar can be eliminated with a simple code in the form1 handler

        Code:
         private void Form1_Load(object sender, EventArgs e)
                {
                    this.FormBorderStyle = FormBorderStyle.None;
                   
                }
        also can be done in the Properties window, of the selected form, in the designer view.

        joedeene

        Comment

        Working...