Ignore:
Timestamp:
Jan 9, 2011, 7:19:07 AM (15 years ago)
Author:
Sam Habiel
Message:

BMXNetConnectInfo:
Pass up BMXNetException instead of recreating it as a new generic Exception; for more accurate error catching.
W32Handle for class not acquired. Don't even know why we needed that.
DSelectDivision:
Load event now has this.Activate to bring the window to the front. Needed b/c of new splash screen in Sched GUI which will show up front unless this form is activated.
BMXNetLib:
Better handling of exception in OpenConnectionCommon (pass inner exception when creating BMXNetException.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk/cs/bmx_0200scr/BMX2/BMXNet/DSelectDivision.cs

    r967 r1063  
    130130            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
    131131            this.Text = "Select Division";
     132            this.Load += new System.EventHandler(this.DSelectDivision_Load);
    132133            this.pnlPageBottom.ResumeLayout(false);
    133134            this.pnlDescription.ResumeLayout(false);
     
    241242        }
    242243
     244        private void DSelectDivision_Load(object sender, EventArgs e)
     245        {
     246            this.Activate();
     247        }
     248
    243249
    244250        }
Note: See TracChangeset for help on using the changeset viewer.