iRuler.Dialogs.AboutBox.AboutBox_Load C# (CSharp) Method

AboutBox_Load() private method

private AboutBox_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void AboutBox_Load(object sender, EventArgs e)
        {
            System.Reflection.Assembly assembly = System.Reflection.Assembly.GetExecutingAssembly();
            if (null != assembly)
            {
                System.Diagnostics.FileVersionInfo fvi = System.Diagnostics.FileVersionInfo.GetVersionInfo(assembly.Location);
                textBox_Version.Text = "version " + fvi.FileVersion;
            }

            richTextBox_Copyright.Text =
                "The Initial Developer of the Original Code is F5 Networks, Inc. Seattle, WA, USA. " +
                "Portions created by F5 are Copyright (C) 2006 F5 Networks, Inc. All Rights Reserved. " +
                "iControl (TM), BIG-IP and iRules are registered trademarks or trademarks of F5 Networks, Inc. in the U.S. and certain other countries. " +
                "F5 Networks' trademarks may not be used in connection with any product or service except as permitted in writing by F5.";

            richTextBox_Credits.Text =
                "Portions of this application make use of the scintilla text editor control (http://www.scintilla.org) " +
                "which is Copyright 1998-2003 by Neil Hodgson <[email protected]>.";

            /*
                            "F5, F5 Networks, the F5 logo, BIG-IP, iControl, GLOBAL-SITE, SEE-IT, EDGE-FX, FireGuard, " +
                            "iRules, PACKET VELOCITY, SYN Check, CONTROL YOUR WORLD, " +
                            "OneConnect, ZoneRunner, uRoam, FirePass, and TrafficShield are registered trademarks or trademarks of F5 Networks, Inc., " +
                            "in the U.S. and certain other countries.\n" +
                            "All other trademarks mentioned in this document are the property of their respective owners. " +
                            "F5 Networks' trademarks may not be used in connection with any product or service except as permitted in writing by F5.";
            */
            // The Initial Developer of the Original Code is F5 Networks, Inc.
            // Seattle, WA, USA.
            // Portions created by F5 are Copyright (C) 2004 F5 Networks, Inc.
            // All Rights Reserved.
            // iControl (TM) is a registered trademark of F5 Networks, Inc.

            if (m_bAutoClose)
            {
                timer_AutoClose.Interval = m_timeout;
                timer_AutoClose.Start();
            }
        }