Acceleratio.SPDG.UI.frm04Collections.frm04Collections_Load C# (CSharp) Method

frm04Collections_Load() private method

private frm04Collections_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void frm04Collections_Load(object sender, EventArgs e)
        {
            this.Show();
            this.Enabled = false;
            this.Cursor = Cursors.WaitCursor;
            Application.DoEvents();
            loadData();
            loadSiteCollections();

            this.Enabled = true;
            this.Cursor = Cursors.Default;
        }