Acceleratio.SPDG.UI.frm03WebApplications.frm03WebApplications_Load C# (CSharp) Method

frm03WebApplications_Load() private method

private frm03WebApplications_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void frm03WebApplications_Load(object sender, EventArgs e)
        {
            this.Show();
            this.Enabled = false;
            this.Cursor = Cursors.WaitCursor;
            Application.DoEvents();
            loadWebApplications();
            loadData();
            this.Enabled = true;
            this.Cursor = Cursors.Default;
        }