Click here to Skip to main content
15,884,986 members
Articles / Desktop Programming / Windows Forms

MultisplitContainer - A FlowlayoutPanel Providing Sizeable Contents

Rate me:
Please Sign up or sign in to vote.
4.92/5 (8 votes)
29 Oct 2009CPOL5 min read 62.1K   1.9K   59  
A FlowlayoutPanel providing sizeable contents
Namespace My

   ' F�r MyApplication sind folgende Ereignisse verf�gbar:
   ' 
   ' Startup: Wird beim Starten der Anwendung noch vor dem Erstellen des Startformulars ausgel�st.
   ' Shutdown: Wird nach dem Schlie�en aller Anwendungsformulare ausgel�st. Dieses Ereignis wird nicht ausgel�st, wenn die Anwendung nicht normal beendet wird.
   ' UnhandledException: Wird ausgel�st, wenn in der Anwendung eine unbehandelte Ausnahme auftritt.
   ' StartupNextInstance: Wird beim Starten einer Einzelinstanzanwendung ausgel�st, wenn diese bereits aktiv ist. 
   ' NetworkAvailabilityChanged: Wird beim Herstellen oder Trennen der Netzwerkverbindung ausgel�st.
   Partial Friend Class MyApplication

      Private Sub MyApplication_UnhandledException(ByVal sender As Object, ByVal e As Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs) Handles Me.UnhandledException
         MsgBox("Fehler!")
      End Sub
   End Class

End Namespace

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions