Ignore:
Timestamp:
Nov 18, 2010, 7:47:04 AM (14 years ago)
Author:
Sam Habiel
Message:

UCPatientAppts: Fixes printing empty table bug reported by EHS.
DAccessTemplate: Various usability improvements.
CGDocumentManager: Fixed Delegate code so that it can operate asynchronously
CGAVView: Some temporary fixes (not totally usable): Added non-functional Delete Slots menu option; Added Background worker for saving acccess slots
In the future, Delete Slots will work; and will use ADO.net Updatable datatable for saving access slots.
calendarGrid: just some comments for now
AssemblyInfo: bumped version up to v1.4.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/DAccessTemplate.cs

    r915 r1011  
    3636
    3737                        UpdateDialogData(true);
    38 
     38            //this.cmdSelectTemplate.Focus(); // Focus on first button on form
    3939                }
    4040
     
    113113                        m_bSelectedFile = false;
    114114                        OpenFileDialog openFileDialog1 = new OpenFileDialog();
    115                         string sPath = "";
    116                         sPath = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
    117 
    118                         openFileDialog1.InitialDirectory = @"c:\" ;
    119                         openFileDialog1.InitialDirectory = sPath ;
    120115                        openFileDialog1.Filter = "Schedule Template Files (*.bsdxa)|*.bsdxa|All files (*.*)|*.*" ;
    121116                        openFileDialog1.FilterIndex = 0 ;
     
    185180            this.cmdCancel.Name = "cmdCancel";
    186181            this.cmdCancel.Size = new System.Drawing.Size(56, 24);
    187             this.cmdCancel.TabIndex = 2;
     182            this.cmdCancel.TabIndex = 5;
    188183            this.cmdCancel.Text = "Cancel";
    189184            //
     
    194189            this.cmdOK.Name = "cmdOK";
    195190            this.cmdOK.Size = new System.Drawing.Size(64, 24);
    196             this.cmdOK.TabIndex = 1;
     191            this.cmdOK.TabIndex = 4;
    197192            this.cmdOK.Text = "OK";
    198193            this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
     
    234229            this.cmdSelectTemplate.Name = "cmdSelectTemplate";
    235230            this.cmdSelectTemplate.Size = new System.Drawing.Size(136, 32);
    236             this.cmdSelectTemplate.TabIndex = 9;
     231            this.cmdSelectTemplate.TabIndex = 1;
    237232            this.cmdSelectTemplate.Text = "Select Access Template";
    238233            this.cmdSelectTemplate.Click += new System.EventHandler(this.cmdSelectTemplate_Click);
     
    254249            this.dtpStartDate.Name = "dtpStartDate";
    255250            this.dtpStartDate.Size = new System.Drawing.Size(184, 20);
    256             this.dtpStartDate.TabIndex = 11;
     251            this.dtpStartDate.TabIndex = 2;
    257252            //
    258253            // udWeeksToApply
     
    271266            this.udWeeksToApply.Name = "udWeeksToApply";
    272267            this.udWeeksToApply.Size = new System.Drawing.Size(96, 20);
    273             this.udWeeksToApply.TabIndex = 12;
     268            this.udWeeksToApply.TabIndex = 3;
    274269            this.udWeeksToApply.Value = new decimal(new int[] {
    275270            1,
Note: See TracChangeset for help on using the changeset viewer.