Changeset 753


Ignore:
Timestamp:
May 7, 2010, 6:38:39 PM (14 years ago)
Author:
Sam Habiel
Message:

Reworked DAppointPage. Removed dependence of DPatientApptDisplay on Crystal Reports. Added UserControl UCPatientAppts to encapsulate functionality of DPatientApptDisplay; right now it does not include printing. DAppointPage now uses UCPatientAppts to provide functionality of seeing patient's previous appointments. DPatientApptDisplay does not yet, but will soon.

Exe is not included.

Location:
Scheduling/trunk/cs/bsdx0200GUISourceCode
Files:
3 added
2 deleted
8 edited

Legend:

Unmodified
Added
Removed
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj

    r627 r753  
    3838    </TargetFrameworkSubset>
    3939    <IsWebBootstrapper>false</IsWebBootstrapper>
     40    <ManifestCertificateThumbprint>3202DD11CA9F64F7E52CF7BBED5F17D6E8A1B395</ManifestCertificateThumbprint>
     41    <ManifestKeyFile>ClinicalScheduling_TemporaryKey.pfx</ManifestKeyFile>
     42    <GenerateManifests>false</GenerateManifests>
     43    <SignManifests>false</SignManifests>
     44    <TargetZone>LocalIntranet</TargetZone>
     45    <ApplicationManifest>Properties\app.manifest</ApplicationManifest>
    4046    <PublishUrl>publish\</PublishUrl>
    4147    <Install>true</Install>
     
    4854    <UpdateRequired>false</UpdateRequired>
    4955    <MapFileExtensions>true</MapFileExtensions>
    50     <ApplicationRevision>0</ApplicationRevision>
    51     <ApplicationVersion>2.0.0.%2a</ApplicationVersion>
     56    <ApplicationRevision>1</ApplicationRevision>
     57    <ApplicationVersion>2.1.0.%2a</ApplicationVersion>
    5258    <UseApplicationTrust>false</UseApplicationTrust>
     59    <PublishWizardCompleted>true</PublishWizardCompleted>
    5360    <BootstrapperEnabled>true</BootstrapperEnabled>
    5461  </PropertyGroup>
     
    104111    </Reference>
    105112    <Reference Include="CrystalDecisions.CrystalReports.Engine, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, processorArchitecture=MSIL">
    106       <Private>True</Private>
     113      <Private>False</Private>
    107114    </Reference>
    108115    <Reference Include="CrystalDecisions.Enterprise.Framework, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304">
    109       <Private>True</Private>
     116      <Private>False</Private>
    110117    </Reference>
    111118    <Reference Include="CrystalDecisions.Enterprise.InfoStore, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304">
    112       <Private>True</Private>
     119      <Private>False</Private>
    113120    </Reference>
    114121    <Reference Include="CrystalDecisions.ReportSource, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, processorArchitecture=MSIL">
    115       <Private>True</Private>
     122      <Private>False</Private>
    116123    </Reference>
    117124    <Reference Include="CrystalDecisions.Shared, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, processorArchitecture=MSIL">
    118       <Private>True</Private>
     125      <Private>False</Private>
    119126    </Reference>
    120127    <Reference Include="CrystalDecisions.Windows.Forms, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, processorArchitecture=MSIL">
    121       <Private>True</Private>
     128      <Private>False</Private>
    122129    </Reference>
    123130    <Reference Include="System">
     
    155162    <None Include="ClassDiagram1.cd" />
    156163    <None Include="ClassDiagram2.cd" />
     164    <None Include="ClinicalScheduling_TemporaryKey.pfx" />
    157165    <None Include="dsPatientApptDisplay2.xsc">
    158166      <DependentUpon>dsPatientApptDisplay2.xsd</DependentUpon>
     
    173181      <DependentUpon>dsRebookAppts.xsd</DependentUpon>
    174182    </None>
     183    <None Include="Properties\app.manifest" />
    175184    <Content Include="App.ico" />
    176185    <Content Include="dsPatientApptDisplay2.xsd">
     
    232241      <AutoGen>True</AutoGen>
    233242    </Compile>
    234     <Compile Include="crPatientApptDisplay.cs">
    235       <DependentUpon>crPatientApptDisplay.rpt</DependentUpon>
    236       <SubType>Component</SubType>
    237       <DesignTime>True</DesignTime>
    238       <AutoGen>True</AutoGen>
    239     </Compile>
    240243    <Compile Include="crPatientLetter.cs">
    241244      <DependentUpon>crPatientLetter.rpt</DependentUpon>
     
    329332      <DependentUpon>dsRebookAppts.xsd</DependentUpon>
    330333    </Compile>
     334    <Compile Include="UCPatientAppts.cs">
     335      <SubType>UserControl</SubType>
     336    </Compile>
     337    <Compile Include="UCPatientAppts.Designer.cs">
     338      <DependentUpon>UCPatientAppts.cs</DependentUpon>
     339    </Compile>
    331340    <EmbeddedResource Include="CGAVView.resx">
    332341      <DependentUpon>CGAVView.cs</DependentUpon>
     
    349358      <LastGenOutput>crCancelLetter.cs</LastGenOutput>
    350359    </EmbeddedResource>
    351     <EmbeddedResource Include="crPatientApptDisplay.rpt">
    352       <Generator>CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator</Generator>
    353       <LastGenOutput>crPatientApptDisplay.cs</LastGenOutput>
    354     </EmbeddedResource>
    355360    <EmbeddedResource Include="crPatientLetter.rpt">
    356361      <Generator>CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator</Generator>
     
    448453      <DependentUpon>DSplash.cs</DependentUpon>
    449454      <SubType>Designer</SubType>
     455    </EmbeddedResource>
     456    <EmbeddedResource Include="UCPatientAppts.resx">
     457      <DependentUpon>UCPatientAppts.cs</DependentUpon>
    450458    </EmbeddedResource>
    451459  </ItemGroup>
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/DAppointPage.cs

    r627 r753  
    3535                private System.Windows.Forms.Label label13;
    3636                private System.Windows.Forms.TextBox txtPhoneHome;
    37                 private System.Windows.Forms.GroupBox groupBox1;
    38                 private System.Windows.Forms.TextBox txtCommunity;
    39                 private System.Windows.Forms.Label label7;
     37        private System.Windows.Forms.GroupBox groupBox1;
    4038                private System.Windows.Forms.Label label6;
    4139                private System.Windows.Forms.TextBox txtSSN;
     
    5452                private System.Windows.Forms.Label label3;
    5553                private System.Windows.Forms.Label label14;
    56                 private System.Windows.Forms.TextBox txtHRN;
    57                 private System.Windows.Forms.Button cmdViewAppointments;
    58                 private System.Windows.Forms.Button cmdPrintLetter;
    59                 /// <summary>
    60                 /// Required designer variable.
    61                 /// </summary>
    62                 private System.ComponentModel.Container components = null;
     54        private System.Windows.Forms.TextBox txtHRN;
     55        private System.Windows.Forms.Button cmdPrintLetter;
     56        private GroupBox groupBox4;
     57        private BindingSource dsPatientApptDisplay2BindingSource;
     58        private dsPatientApptDisplay2 dsPatientApptDisplay2;
     59        private BindingSource patientApptsBindingSource;
     60        private IContainer components;
    6361
    6462                public DAppointPage()
     
    7472                private void InitializeComponent()
    7573                {
     74            this.components = new System.ComponentModel.Container();
    7675            this.tabControl1 = new System.Windows.Forms.TabControl();
    7776            this.tabAppointment = new System.Windows.Forms.TabPage();
     
    8887            this.label14 = new System.Windows.Forms.Label();
    8988            this.txtHRN = new System.Windows.Forms.TextBox();
    90             this.txtCommunity = new System.Windows.Forms.TextBox();
    91             this.label7 = new System.Windows.Forms.Label();
    9289            this.label6 = new System.Windows.Forms.Label();
    9390            this.txtSSN = new System.Windows.Forms.TextBox();
     
    112109            this.panel1 = new System.Windows.Forms.Panel();
    113110            this.cmdPrintLetter = new System.Windows.Forms.Button();
    114             this.cmdViewAppointments = new System.Windows.Forms.Button();
    115111            this.cmdCancel = new System.Windows.Forms.Button();
    116112            this.cmdOK = new System.Windows.Forms.Button();
     113            this.groupBox4 = new System.Windows.Forms.GroupBox();
     114            this.patientApptsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     115            this.dsPatientApptDisplay2BindingSource = new System.Windows.Forms.BindingSource(this.components);
     116            this.dsPatientApptDisplay2 = new IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2();
    117117            this.tabControl1.SuspendLayout();
    118118            this.tabAppointment.SuspendLayout();
     
    122122            this.groupBox2.SuspendLayout();
    123123            this.panel1.SuspendLayout();
     124            ((System.ComponentModel.ISupportInitialize)(this.patientApptsBindingSource)).BeginInit();
     125            ((System.ComponentModel.ISupportInitialize)(this.dsPatientApptDisplay2BindingSource)).BeginInit();
     126            ((System.ComponentModel.ISupportInitialize)(this.dsPatientApptDisplay2)).BeginInit();
    124127            this.SuspendLayout();
    125128            //
     
    132135            this.tabControl1.Name = "tabControl1";
    133136            this.tabControl1.SelectedIndex = 0;
    134             this.tabControl1.Size = new System.Drawing.Size(463, 374);
     137            this.tabControl1.Size = new System.Drawing.Size(471, 526);
    135138            this.tabControl1.TabIndex = 0;
    136139            //
    137140            // tabAppointment
    138141            //
     142            this.tabAppointment.Controls.Add(this.groupBox4);
    139143            this.tabAppointment.Controls.Add(this.groupBox3);
    140144            this.tabAppointment.Controls.Add(this.groupBox1);
    141145            this.tabAppointment.Location = new System.Drawing.Point(4, 22);
    142146            this.tabAppointment.Name = "tabAppointment";
    143             this.tabAppointment.Size = new System.Drawing.Size(455, 348);
     147            this.tabAppointment.Size = new System.Drawing.Size(463, 500);
    144148            this.tabAppointment.TabIndex = 1;
    145149            this.tabAppointment.Text = "Appointment";
     
    147151            // groupBox3
    148152            //
     153            this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     154                        | System.Windows.Forms.AnchorStyles.Right)));
    149155            this.groupBox3.Controls.Add(this.lblClinic);
    150156            this.groupBox3.Controls.Add(this.label15);
     
    155161            this.groupBox3.Controls.Add(this.label4);
    156162            this.groupBox3.Controls.Add(this.label3);
    157             this.groupBox3.Location = new System.Drawing.Point(8, 136);
     163            this.groupBox3.Location = new System.Drawing.Point(8, 107);
    158164            this.groupBox3.Name = "groupBox3";
    159             this.groupBox3.Size = new System.Drawing.Size(439, 168);
     165            this.groupBox3.Size = new System.Drawing.Size(439, 141);
    160166            this.groupBox3.TabIndex = 13;
    161167            this.groupBox3.TabStop = false;
     
    185191            this.txtNote.Multiline = true;
    186192            this.txtNote.Name = "txtNote";
    187             this.txtNote.Size = new System.Drawing.Size(353, 88);
     193            this.txtNote.Size = new System.Drawing.Size(353, 60);
    188194            this.txtNote.TabIndex = 17;
    189195            //
     
    235241            this.groupBox1.Controls.Add(this.label14);
    236242            this.groupBox1.Controls.Add(this.txtHRN);
    237             this.groupBox1.Controls.Add(this.txtCommunity);
    238             this.groupBox1.Controls.Add(this.label7);
    239243            this.groupBox1.Controls.Add(this.label6);
    240244            this.groupBox1.Controls.Add(this.txtSSN);
     
    245249            this.groupBox1.Location = new System.Drawing.Point(8, 8);
    246250            this.groupBox1.Name = "groupBox1";
    247             this.groupBox1.Size = new System.Drawing.Size(439, 120);
     251            this.groupBox1.Size = new System.Drawing.Size(439, 93);
    248252            this.groupBox1.TabIndex = 12;
    249253            this.groupBox1.TabStop = false;
     
    267271            this.txtHRN.TabIndex = 12;
    268272            //
    269             // txtCommunity
    270             //
    271             this.txtCommunity.Location = new System.Drawing.Point(96, 88);
    272             this.txtCommunity.Name = "txtCommunity";
    273             this.txtCommunity.ReadOnly = true;
    274             this.txtCommunity.Size = new System.Drawing.Size(337, 20);
    275             this.txtCommunity.TabIndex = 10;
    276             //
    277             // label7
    278             //
    279             this.label7.Location = new System.Drawing.Point(24, 88);
    280             this.label7.Name = "label7";
    281             this.label7.Size = new System.Drawing.Size(72, 16);
    282             this.label7.TabIndex = 11;
    283             this.label7.Text = "Community:";
    284             this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
    285             //
    286273            // label6
    287274            //
     
    340327            this.tabPatientInfo.Location = new System.Drawing.Point(4, 22);
    341328            this.tabPatientInfo.Name = "tabPatientInfo";
    342             this.tabPatientInfo.Size = new System.Drawing.Size(455, 348);
     329            this.tabPatientInfo.Size = new System.Drawing.Size(463, 500);
    343330            this.tabPatientInfo.TabIndex = 0;
    344331            this.tabPatientInfo.Text = "Contact Information";
     
    470457            //
    471458            this.panel1.Controls.Add(this.cmdPrintLetter);
    472             this.panel1.Controls.Add(this.cmdViewAppointments);
    473459            this.panel1.Controls.Add(this.cmdCancel);
    474460            this.panel1.Controls.Add(this.cmdOK);
    475461            this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
    476             this.panel1.Location = new System.Drawing.Point(0, 334);
     462            this.panel1.Location = new System.Drawing.Point(0, 486);
    477463            this.panel1.Name = "panel1";
    478             this.panel1.Size = new System.Drawing.Size(463, 40);
     464            this.panel1.Size = new System.Drawing.Size(471, 40);
    479465            this.panel1.TabIndex = 1;
    480466            //
     
    482468            //
    483469            this.cmdPrintLetter.CausesValidation = false;
    484             this.cmdPrintLetter.Location = new System.Drawing.Point(208, 8);
     470            this.cmdPrintLetter.Location = new System.Drawing.Point(12, 9);
    485471            this.cmdPrintLetter.Name = "cmdPrintLetter";
    486472            this.cmdPrintLetter.Size = new System.Drawing.Size(68, 24);
     
    488474            this.cmdPrintLetter.Text = "Print Letter";
    489475            this.cmdPrintLetter.Click += new System.EventHandler(this.cmdPrintLetter_Click);
    490             //
    491             // cmdViewAppointments
    492             //
    493             this.cmdViewAppointments.CausesValidation = false;
    494             this.cmdViewAppointments.Location = new System.Drawing.Point(12, 8);
    495             this.cmdViewAppointments.Name = "cmdViewAppointments";
    496             this.cmdViewAppointments.Size = new System.Drawing.Size(112, 24);
    497             this.cmdViewAppointments.TabIndex = 2;
    498             this.cmdViewAppointments.Text = "View Appointments";
    499             this.cmdViewAppointments.Click += new System.EventHandler(this.cmdViewAppointments_Click);
    500476            //
    501477            // cmdCancel
     
    518494            this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
    519495            //
     496            // groupBox4
     497            //
     498            this.groupBox4.Location = new System.Drawing.Point(8, 254);
     499            this.groupBox4.Name = "groupBox4";
     500            this.groupBox4.Size = new System.Drawing.Size(439, 204);
     501            this.groupBox4.TabIndex = 14;
     502            this.groupBox4.TabStop = false;
     503            this.groupBox4.Text = "Other Appointments";
     504            //
     505            // patientApptsBindingSource
     506            //
     507            this.patientApptsBindingSource.DataMember = "PatientAppts";
     508            this.patientApptsBindingSource.DataSource = this.dsPatientApptDisplay2BindingSource;
     509            //
     510            // dsPatientApptDisplay2BindingSource
     511            //
     512            this.dsPatientApptDisplay2BindingSource.DataSource = this.dsPatientApptDisplay2;
     513            this.dsPatientApptDisplay2BindingSource.Position = 0;
     514            //
     515            // dsPatientApptDisplay2
     516            //
     517            this.dsPatientApptDisplay2.DataSetName = "dsPatientApptDisplay2";
     518            this.dsPatientApptDisplay2.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     519            //
    520520            // DAppointPage
    521521            //
     
    523523            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
    524524            this.CancelButton = this.cmdCancel;
    525             this.ClientSize = new System.Drawing.Size(463, 374);
     525            this.ClientSize = new System.Drawing.Size(471, 526);
    526526            this.Controls.Add(this.panel1);
    527527            this.Controls.Add(this.tabControl1);
     
    541541            this.groupBox2.PerformLayout();
    542542            this.panel1.ResumeLayout(false);
     543            ((System.ComponentModel.ISupportInitialize)(this.patientApptsBindingSource)).EndInit();
     544            ((System.ComponentModel.ISupportInitialize)(this.dsPatientApptDisplay2BindingSource)).EndInit();
     545            ((System.ComponentModel.ISupportInitialize)(this.dsPatientApptDisplay2)).EndInit();
    543546            this.ResumeLayout(false);
    544547
     
    607610
    608611                                this.UpdateDialogData(true);
    609                         }
     612                Control UC = new UCPatientAppts(m_DocManager, int.Parse(m_sPatientIEN));
     613                UC.Dock = DockStyle.Fill;
     614                groupBox4.Controls.Add(UC);
     615            }
    610616                        catch(Exception e)
    611617                        {
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/DAppointPage.resx

    r616 r753  
    118118    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
    119119  </resheader>
     120  <metadata name="patientApptsBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
     121    <value>412, 17</value>
     122  </metadata>
     123  <metadata name="dsPatientApptDisplay2BindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
     124    <value>179, 17</value>
     125  </metadata>
     126  <metadata name="dsPatientApptDisplay2BindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
     127    <value>179, 17</value>
     128  </metadata>
     129  <metadata name="dsPatientApptDisplay2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
     130    <value>17, 17</value>
     131  </metadata>
     132  <metadata name="dsPatientApptDisplay2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
     133    <value>17, 17</value>
     134  </metadata>
    120135</root>
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/DPatientApptDisplay.cs

    r614 r753  
    44using System.ComponentModel;
    55using System.Windows.Forms;
    6 using CrystalDecisions.Windows;
    7 using CrystalDecisions.Shared;
    8 using CrystalDecisions.CrystalReports.Engine;
    96using IndianHealthService.BMXNet;
    107using System.Data;
     
    1714        public class DPatientApptDisplay : System.Windows.Forms.Form
    1815        {
    19                 private System.Windows.Forms.Panel panel1;
    20                 private System.Windows.Forms.Panel panel2;
    21                 private CrystalDecisions.Windows.Forms.CrystalReportViewer crViewer1;
    22                 private System.Windows.Forms.CheckBox chkIncludePast;
     16        private System.Windows.Forms.Panel panel1;
     17        private System.Windows.Forms.CheckBox chkIncludePast;
     18        private DataGridView dataGridView1;
    2319                /// <summary>
    2420                /// Required designer variable.
     
    3026                        try
    3127                        {       
    32                                 crViewer1.DisplayGroupTree = false;
    33 
    34                                 ClinicalScheduling.crPatientApptDisplay cr = new crPatientApptDisplay();
    3528                                string sSql = "BSDX PATIENT APPT DISPLAY^" + nPatientID.ToString();
    36 
    37                                 System.Data.DataSet ds = new System.Data.DataSet();
    3829                                DataTable dtAppt = docManager.RPMSDataTable(sSql, "PatientAppts");
    39                                 ds.Tables.Add(dtAppt.Copy());
    40 
    41                                 cr.Database.Tables[0].SetDataSource(ds);
    42                                 this.crViewer1.ReportSource = cr;
    43 
     30                                dataGridView1.DataSource = dtAppt;
    4431                        }
    4532                        catch (Exception ex)
     
    5138                public DPatientApptDisplay()
    5239                {
    53                         //
    54                         // Required for Windows Form Designer support
    55                         //
    5640                        InitializeComponent();
    57 
    58                         //
    59                         // TODO: Add any constructor code after InitializeComponent call
    60                         //
    6141                }
    6242
     
    8363                private void InitializeComponent()
    8464                {
    85                         this.panel1 = new System.Windows.Forms.Panel();
    86                         this.chkIncludePast = new System.Windows.Forms.CheckBox();
    87                         this.panel2 = new System.Windows.Forms.Panel();
    88                         this.crViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
    89                         this.panel1.SuspendLayout();
    90                         this.panel2.SuspendLayout();
    91                         this.SuspendLayout();
    92                         //
    93                         // panel1
    94                         //
    95                         this.panel1.Controls.Add(this.chkIncludePast);
    96                         this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
    97                         this.panel1.Location = new System.Drawing.Point(0, 0);
    98                         this.panel1.Name = "panel1";
    99                         this.panel1.Size = new System.Drawing.Size(664, 32);
    100                         this.panel1.TabIndex = 1;
    101                         //
    102                         // chkIncludePast
    103                         //
    104                         this.chkIncludePast.Location = new System.Drawing.Point(16, 8);
    105                         this.chkIncludePast.Name = "chkIncludePast";
    106                         this.chkIncludePast.Size = new System.Drawing.Size(184, 16);
    107                         this.chkIncludePast.TabIndex = 0;
    108                         this.chkIncludePast.Text = "Include Past Appointments";
    109                         this.chkIncludePast.CheckedChanged += new System.EventHandler(this.chkIncludePast_CheckedChanged);
    110                         //
    111                         // panel2
    112                         //
    113                         this.panel2.Controls.Add(this.crViewer1);
    114                         this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
    115                         this.panel2.Location = new System.Drawing.Point(0, 32);
    116                         this.panel2.Name = "panel2";
    117                         this.panel2.Size = new System.Drawing.Size(664, 446);
    118                         this.panel2.TabIndex = 2;
    119                         //
    120                         // crViewer1
    121                         //
    122                         this.crViewer1.ActiveViewIndex = -1;
    123                         this.crViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
    124                         this.crViewer1.Location = new System.Drawing.Point(0, 0);
    125                         this.crViewer1.Name = "crViewer1";
    126                         this.crViewer1.ReportSource = null;
    127                         this.crViewer1.Size = new System.Drawing.Size(664, 446);
    128                         this.crViewer1.TabIndex = 1;
    129                         //
    130                         // DPatientApptDisplay
    131                         //
    132                         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
    133                         this.ClientSize = new System.Drawing.Size(664, 478);
    134                         this.Controls.Add(this.panel2);
    135                         this.Controls.Add(this.panel1);
    136                         this.Name = "DPatientApptDisplay";
    137                         this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
    138                         this.Text = "Patient Appointments";
    139                         this.panel1.ResumeLayout(false);
    140                         this.panel2.ResumeLayout(false);
    141                         this.ResumeLayout(false);
     65            this.panel1 = new System.Windows.Forms.Panel();
     66            this.chkIncludePast = new System.Windows.Forms.CheckBox();
     67            this.dataGridView1 = new System.Windows.Forms.DataGridView();
     68            this.panel1.SuspendLayout();
     69            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     70            this.SuspendLayout();
     71            //
     72            // panel1
     73            //
     74            this.panel1.Controls.Add(this.chkIncludePast);
     75            this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     76            this.panel1.Location = new System.Drawing.Point(0, 0);
     77            this.panel1.Name = "panel1";
     78            this.panel1.Size = new System.Drawing.Size(664, 32);
     79            this.panel1.TabIndex = 1;
     80            //
     81            // chkIncludePast
     82            //
     83            this.chkIncludePast.Location = new System.Drawing.Point(16, 8);
     84            this.chkIncludePast.Name = "chkIncludePast";
     85            this.chkIncludePast.Size = new System.Drawing.Size(184, 16);
     86            this.chkIncludePast.TabIndex = 0;
     87            this.chkIncludePast.Text = "Include Past Appointments";
     88            this.chkIncludePast.CheckedChanged += new System.EventHandler(this.chkIncludePast_CheckedChanged);
     89            //
     90            // dataGridView1
     91            //
     92            this.dataGridView1.AllowUserToAddRows = false;
     93            this.dataGridView1.AllowUserToDeleteRows = false;
     94            this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     95            this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
     96            this.dataGridView1.Location = new System.Drawing.Point(0, 32);
     97            this.dataGridView1.Name = "dataGridView1";
     98            this.dataGridView1.ReadOnly = true;
     99            this.dataGridView1.Size = new System.Drawing.Size(664, 446);
     100            this.dataGridView1.TabIndex = 2;
     101            //
     102            // DPatientApptDisplay
     103            //
     104            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     105            this.ClientSize = new System.Drawing.Size(664, 478);
     106            this.Controls.Add(this.dataGridView1);
     107            this.Controls.Add(this.panel1);
     108            this.Name = "DPatientApptDisplay";
     109            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     110            this.Text = "Patient Appointments";
     111            this.panel1.ResumeLayout(false);
     112            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     113            this.ResumeLayout(false);
    142114
    143115                }
     
    148120                        if (chkIncludePast.Checked == true)
    149121                        {
    150                 this.crViewer1.SelectionFormula = "TRUE"; //MJL 9/11/2007
     122                //this.crViewer1.SelectionFormula = "TRUE"; //MJL 9/11/2007
    151123                        }
    152124                        else
    153125                        {
    154                                 crViewer1.SelectionFormula = "{PatientAppts.ApptDate} >= CurrentDate";
     126                                //crViewer1.SelectionFormula = "{PatientAppts.ApptDate} >= CurrentDate";
    155127                        }
    156                         crViewer1.RefreshReport();
     128                        //crViewer1.RefreshReport();
    157129                }
    158130        }
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/DPatientApptDisplay.resx

    r614 r753  
    44    Microsoft ResX Schema
    55   
    6     Version 1.3
     6    Version 2.0
    77   
    88    The primary goals of this format is to allow a simple XML format
     
    1515    ... ado.net/XML headers & schema ...
    1616    <resheader name="resmimetype">text/microsoft-resx</resheader>
    17     <resheader name="version">1.3</resheader>
     17    <resheader name="version">2.0</resheader>
    1818    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
    1919    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
    20     <data name="Name1">this is my long string</data>
     20    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
    2121    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
    2222    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
    23         [base64 mime encoded serialized .NET Framework object]
     23        <value>[base64 mime encoded serialized .NET Framework object]</value>
    2424    </data>
    2525    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
    26         [base64 mime encoded string representing a byte array form of the .NET Framework object]
     26        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
     27        <comment>This is a comment</comment>
    2728    </data>
    2829               
     
    3637    mimetype set.
    3738   
    38     The mimetype is used forserialized objects, and tells the
     39    The mimetype is used for serialized objects, and tells the
    3940    ResXResourceReader how to depersist the object. This is currently not
    4041    extensible. For a given mimetype the value must be set accordingly:
     
    4647    mimetype: application/x-microsoft.net.object.binary.base64
    4748    value   : The object must be serialized with
    48             : System.Serialization.Formatters.Binary.BinaryFormatter
     49            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
    4950            : and then encoded with base64 encoding.
    5051   
     
    6061    -->
    6162  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
     63    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
    6264    <xsd:element name="root" msdata:IsDataSet="true">
    6365      <xsd:complexType>
    6466        <xsd:choice maxOccurs="unbounded">
     67          <xsd:element name="metadata">
     68            <xsd:complexType>
     69              <xsd:sequence>
     70                <xsd:element name="value" type="xsd:string" minOccurs="0" />
     71              </xsd:sequence>
     72              <xsd:attribute name="name" use="required" type="xsd:string" />
     73              <xsd:attribute name="type" type="xsd:string" />
     74              <xsd:attribute name="mimetype" type="xsd:string" />
     75              <xsd:attribute ref="xml:space" />
     76            </xsd:complexType>
     77          </xsd:element>
     78          <xsd:element name="assembly">
     79            <xsd:complexType>
     80              <xsd:attribute name="alias" type="xsd:string" />
     81              <xsd:attribute name="name" type="xsd:string" />
     82            </xsd:complexType>
     83          </xsd:element>
    6584          <xsd:element name="data">
    6685            <xsd:complexType>
     
    6988                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
    7089              </xsd:sequence>
    71               <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
     90              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
    7291              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
    7392              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
     93              <xsd:attribute ref="xml:space" />
    7494            </xsd:complexType>
    7595          </xsd:element>
     
    90110  </resheader>
    91111  <resheader name="version">
    92     <value>1.3</value>
     112    <value>2.0</value>
    93113  </resheader>
    94114  <resheader name="reader">
    95     <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
     115    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
    96116  </resheader>
    97117  <resheader name="writer">
    98     <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
     118    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
    99119  </resheader>
    100   <data name="panel1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    101     <value>False</value>
    102   </data>
    103   <data name="panel1.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    104     <value>True</value>
    105   </data>
    106   <data name="panel1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    107     <value>Private</value>
    108   </data>
    109   <data name="panel1.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    110     <value>8, 8</value>
    111   </data>
    112   <data name="panel1.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    113     <value>True</value>
    114   </data>
    115   <data name="panel1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    116     <value>Private</value>
    117   </data>
    118   <data name="chkIncludePast.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    119     <value>False</value>
    120   </data>
    121   <data name="chkIncludePast.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    122     <value>Private</value>
    123   </data>
    124   <data name="chkIncludePast.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    125     <value>Private</value>
    126   </data>
    127   <data name="panel2.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    128     <value>False</value>
    129   </data>
    130   <data name="panel2.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    131     <value>True</value>
    132   </data>
    133   <data name="panel2.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    134     <value>Private</value>
    135   </data>
    136   <data name="panel2.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    137     <value>8, 8</value>
    138   </data>
    139   <data name="panel2.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    140     <value>True</value>
    141   </data>
    142   <data name="panel2.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    143     <value>Private</value>
    144   </data>
    145   <data name="crViewer1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    146     <value>Private</value>
    147   </data>
    148   <data name="crViewer1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    149     <value>Private</value>
    150   </data>
    151   <data name="crViewer1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    152     <value>False</value>
    153   </data>
    154   <data name="$this.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    155     <value>False</value>
    156   </data>
    157   <data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    158     <value>(Default)</value>
    159   </data>
    160   <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    161     <value>False</value>
    162   </data>
    163   <data name="$this.Name">
    164     <value>DPatientApptDisplay</value>
    165   </data>
    166   <data name="$this.Localizable" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    167     <value>False</value>
    168   </data>
    169   <data name="$this.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    170     <value>8, 8</value>
    171   </data>
    172   <data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    173     <value>True</value>
    174   </data>
    175   <data name="$this.TrayHeight" type="System.Int32, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    176     <value>80</value>
    177   </data>
    178   <data name="$this.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    179     <value>True</value>
    180   </data>
    181   <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    182     <value>Private</value>
    183   </data>
    184120</root>
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/bin/Release/ClinicalScheduling.XML

    r627 r753  
    55    </assembly>
    66    <members>
    7         <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2">
    8              <summary>
    9             Represents a strongly typed in-memory cache of data.
    10             </summary>
    11         </member>
    12         <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2.PatientApptsDataTable">
    13              <summary>
    14             Represents the strongly named DataTable class.
    15             </summary>
    16         </member>
    17         <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2.BSDXResourceDataTable">
    18              <summary>
    19             Represents the strongly named DataTable class.
    20             </summary>
    21         </member>
    22         <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2.PatientApptsRow">
    23              <summary>
    24             Represents strongly named DataRow class.
    25             </summary>
    26         </member>
    27         <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2.BSDXResourceRow">
    28              <summary>
    29             Represents strongly named DataRow class.
    30             </summary>
    31         </member>
    32         <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2.PatientApptsRowChangeEvent">
    33              <summary>
    34             Row event argument class
    35             </summary>
    36         </member>
    37         <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2.BSDXResourceRowChangeEvent">
    38              <summary>
    39             Row event argument class
    40             </summary>
    41         </member>
    42         <member name="T:IndianHealthService.ClinicalScheduling.DApptSearch">
    43             <summary>
    44             Summary description for DApptSearch.
    45             </summary>
    46         </member>
    47         <member name="F:IndianHealthService.ClinicalScheduling.DApptSearch.components">
    48             <summary>
    49             Required designer variable.
    50             </summary>
    51         </member>
    52         <member name="M:IndianHealthService.ClinicalScheduling.DApptSearch.UpdateDialogData(System.Boolean)">
     7        <member name="T:IndianHealthService.ClinicalScheduling.DPatientApptDisplay">
     8            <summary>
     9            Summary description for DPatientApptDisplay.
     10            </summary>
     11        </member>
     12        <member name="F:IndianHealthService.ClinicalScheduling.DPatientApptDisplay.components">
     13            <summary>
     14            Required designer variable.
     15            </summary>
     16        </member>
     17        <member name="M:IndianHealthService.ClinicalScheduling.DPatientApptDisplay.Dispose(System.Boolean)">
     18            <summary>
     19            Clean up any resources being used.
     20            </summary>
     21        </member>
     22        <member name="M:IndianHealthService.ClinicalScheduling.DPatientApptDisplay.InitializeComponent">
     23            <summary>
     24            Required method for Designer support - do not modify
     25            the contents of this method with the code editor.
     26            </summary>
     27        </member>
     28        <member name="T:IndianHealthService.ClinicalScheduling.CGSelectionChangedHandler">
     29            <summary>
     30            This class was regenerated from Calendargrid.dll using Reflector.exe
     31            by Sam Habiel for WorldVista. The original source code is lost.
     32            </summary>
     33        </member>
     34        <member name="T:IndianHealthService.ClinicalScheduling.CGAppointments">
     35            <summary>
     36            This class was regenerated from Calendargrid.dll using Reflector.exe
     37            by Sam Habiel for WorldVista. The original source code is lost.
     38            </summary>
     39        </member>
     40        <member name="T:IndianHealthService.ClinicalScheduling.CGAppointment">
     41            <summary>
     42            This class was regenerated from Calendargrid.dll using Reflector.exe
     43            by Sam Habiel for WorldVista. The original source code is lost.
     44            </summary>
     45        </member>
     46        <member name="T:IndianHealthService.ClinicalScheduling.CalendarGrid">
     47            <summary>
     48            This class was regenerated from Calendargrid.dll using Reflector.exe
     49            by Sam Habiel for WorldVista. The original source code is lost.
     50            </summary>
     51        </member>
     52        <member name="T:IndianHealthService.ClinicalScheduling.DPatientLookup">
     53            <summary>
     54            Summary description for DPatientLookup.
     55            </summary>
     56        </member>
     57        <member name="F:IndianHealthService.ClinicalScheduling.DPatientLookup.components">
     58            <summary>
     59            Required designer variable.
     60            </summary>
     61        </member>
     62        <member name="M:IndianHealthService.ClinicalScheduling.DPatientLookup.InitializeComponent">
     63            <summary>
     64            Required method for Designer support - do not modify
     65            the contents of this method with the code editor.
     66            </summary>
     67        </member>
     68        <member name="M:IndianHealthService.ClinicalScheduling.DPatientLookup.Dispose(System.Boolean)">
     69            <summary>
     70            Clean up any resources being used.
     71            </summary>
     72        </member>
     73        <member name="P:IndianHealthService.ClinicalScheduling.DPatientLookup.PatientName">
     74            <summary>
     75            Gets or sets the name of the selected patient
     76            </summary>
     77        </member>
     78        <member name="P:IndianHealthService.ClinicalScheduling.DPatientLookup.PatientIEN">
     79            <summary>
     80            RPMS Internal Entry Number in PATIENT file (DFN)
     81            </summary>
     82        </member>
     83        <member name="P:IndianHealthService.ClinicalScheduling.DPatientLookup.HealthRecordNumber">
     84            <summary>
     85            The string representation of the Health Record Number
     86            </summary>
     87        </member>
     88        <member name="T:IndianHealthService.ClinicalScheduling.DManagement">
     89            <summary>
     90            Summary description for DManagement.
     91            </summary>
     92        </member>
     93        <member name="M:IndianHealthService.ClinicalScheduling.DManagement.InitializeComponent">
     94            <summary>
     95            Required method for Designer support - do not modify
     96            the contents of this method with the code editor.
     97            </summary>
     98        </member>
     99        <member name="T:IndianHealthService.ClinicalScheduling.DAccessType">
     100            <summary>
     101            Summary description for DAccessType.
     102            </summary>
     103        </member>
     104        <member name="F:IndianHealthService.ClinicalScheduling.DAccessType.components">
     105            <summary>
     106            Required designer variable.
     107            </summary>
     108        </member>
     109        <member name="M:IndianHealthService.ClinicalScheduling.DAccessType.Dispose(System.Boolean)">
     110            <summary>
     111            Clean up any resources being used.
     112            </summary>
     113        </member>
     114        <member name="M:IndianHealthService.ClinicalScheduling.DAccessType.InitializeComponent">
     115            <summary>
     116            Required method for Designer support - do not modify
     117            the contents of this method with the code editor.
     118            </summary>
     119        </member>
     120        <member name="M:IndianHealthService.ClinicalScheduling.DAccessType.UpdateDialogData(System.Boolean)">
    53121            <summary>
    54122            If b is true, moves member vars into control data
     
    57125            <param name="b"></param>
    58126        </member>
    59         <member name="M:IndianHealthService.ClinicalScheduling.DApptSearch.Dispose(System.Boolean)">
    60             <summary>
    61             Clean up any resources being used.
    62             </summary>
    63         </member>
    64         <member name="M:IndianHealthService.ClinicalScheduling.DApptSearch.InitializeComponent">
    65             <summary>
    66             Required method for Designer support - do not modify
    67             the contents of this method with the code editor.
    68             </summary>
    69         </member>
    70         <member name="P:IndianHealthService.ClinicalScheduling.DApptSearch.SelectedResource">
    71             <summary>
    72             Gets the resource selected by the user
    73             </summary>
    74         </member>
    75         <member name="P:IndianHealthService.ClinicalScheduling.DApptSearch.SelectedDate">
    76             <summary>
    77             Gets the date selected by the user
    78             </summary>
    79         </member>
    80         <member name="T:IndianHealthService.ClinicalScheduling.CGSelectionChangedArgs">
    81             <summary>
    82             This class was regenerated from Calendargrid.dll using Reflector.exe
    83             by Sam Habiel for WorldVista. The original source code is lost.
    84             </summary>
    85         </member>
    86         <member name="T:IndianHealthService.ClinicalScheduling.CalendarGrid">
    87             <summary>
    88             This class was regenerated from Calendargrid.dll using Reflector.exe
    89             by Sam Habiel for WorldVista. The original source code is lost.
    90             </summary>
    91         </member>
    92         <member name="T:IndianHealthService.ClinicalScheduling.CGSelectionChangedHandler">
    93             <summary>
    94             This class was regenerated from Calendargrid.dll using Reflector.exe
    95             by Sam Habiel for WorldVista. The original source code is lost.
    96             </summary>
    97         </member>
    98         <member name="T:IndianHealthService.ClinicalScheduling.CGDocumentManager">
    99             <summary>
    100             Summary description for DocumentManager.
    101             </summary>
    102         </member>
    103         <member name="M:IndianHealthService.ClinicalScheduling.CGDocumentManager.Dispose(System.Boolean)">
    104             <summary>
    105             Clean up any resources being used.
    106             </summary>
    107         </member>
    108         <member name="M:IndianHealthService.ClinicalScheduling.CGDocumentManager.GetViewByResource(System.Collections.ArrayList)">
    109             <summary>
    110             Return the first view having a resource array matching sResourceArray
    111             </summary>
    112             <param name="sResourceArray"></param>
    113             <returns></returns>
    114         </member>
    115         <member name="M:IndianHealthService.ClinicalScheduling.CGDocumentManager.UpdateViews(System.String,System.String)">
    116             <summary>
    117             Propogate availability updates to all sRresource's doc/views
    118             </summary>
    119         </member>
    120         <member name="M:IndianHealthService.ClinicalScheduling.CGDocumentManager.UpdateViews">
    121             <summary>
    122             Propogate availability updates to all doc/views
    123             </summary>
    124         </member>
    125         <member name="M:IndianHealthService.ClinicalScheduling.CGDocumentManager.CloseAllViews(IndianHealthService.ClinicalScheduling.CGDocument)">
    126             <summary>
    127             Calls each view associated with document Doc and closes it.
    128             </summary>         
    129         </member>
    130         <member name="M:IndianHealthService.ClinicalScheduling.CGDocumentManager.CloseAllViews(IndianHealthService.ClinicalScheduling.CGAVDocument)">
    131             <summary>
    132             Calls each view associated with Availability Doc and closes it.
    133             </summary>         
    134         </member>
    135         <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.ConnectInfo">
    136             <summary>
    137             Returns the document manager's BMXNetConnectInfo member
    138             </summary>
    139         </member>
    140         <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.ScheduleManager">
    141             <summary>
    142             True if the current user holds the BSDXZMGR or XUPROGMODE keys in RPMS
    143             </summary>
    144         </member>
    145         <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.WindowText">
    146             <summary>
    147             Holds the user and division
    148             </summary>
    149         </member>
    150         <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.GlobalDataSet">
    151             <summary>
    152             This dataset contains tables used by the entire application
    153             </summary>         
    154         </member>
    155         <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.Current">
    156             <summary>
    157             Returns the single CGDocumentManager object
    158             </summary>
    159         </member>
    160         <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.Views">
    161             <summary>
    162             Returns the list of currently opened documents
    163             </summary>
    164         </member>
    165         <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.AvailabilityViews">
    166             <summary>
    167             Returns the list of currently opened CGAVViews
    168             </summary>
    169         </member>
    170         <member name="T:IndianHealthService.ClinicalScheduling.DAccessTemplate">
    171             <summary>
    172             Summary description for DAccessTemplate.
    173             </summary>
    174         </member>
    175         <member name="F:IndianHealthService.ClinicalScheduling.DAccessTemplate.components">
    176             <summary>
    177             Required designer variable.
    178             </summary>
    179         </member>
    180         <member name="M:IndianHealthService.ClinicalScheduling.DAccessTemplate.UpdateDialogData(System.Boolean)">
     127        <member name="T:IndianHealthService.ClinicalScheduling.DResourceGroup">
     128            <summary>
     129            Summary description for DResourceGroup.
     130            </summary>
     131        </member>
     132        <member name="F:IndianHealthService.ClinicalScheduling.DResourceGroup.components">
     133            <summary>
     134            Required designer variable.
     135            </summary>
     136        </member>
     137        <member name="M:IndianHealthService.ClinicalScheduling.DResourceGroup.Dispose(System.Boolean)">
     138            <summary>
     139            Clean up any resources being used.
     140            </summary>
     141        </member>
     142        <member name="M:IndianHealthService.ClinicalScheduling.DResourceGroup.InitializeComponent">
     143            <summary>
     144            Required method for Designer support - do not modify
     145            the contents of this method with the code editor.
     146            </summary>
     147        </member>
     148        <member name="M:IndianHealthService.ClinicalScheduling.DResourceGroup.UpdateDialogData(System.Boolean)">
    181149            <summary>
    182150            If b is true, moves member vars into control data
     
    185153            <param name="b"></param>
    186154        </member>
     155        <member name="P:IndianHealthService.ClinicalScheduling.DResourceGroup.ResourceGroupName">
     156            <summary>
     157            Gets the name of the resource group
     158            </summary>
     159        </member>
     160        <member name="T:IndianHealthService.ClinicalScheduling.DPatientLetter">
     161            <summary>
     162            Summary description for DPatientLetter.
     163            </summary>
     164        </member>
     165        <member name="F:IndianHealthService.ClinicalScheduling.DPatientLetter.components">
     166            <summary>
     167            Required designer variable.
     168            </summary>
     169        </member>
     170        <member name="M:IndianHealthService.ClinicalScheduling.DPatientLetter.Dispose(System.Boolean)">
     171            <summary>
     172            Clean up any resources being used.
     173            </summary>
     174        </member>
     175        <member name="M:IndianHealthService.ClinicalScheduling.DPatientLetter.InitializeComponent">
     176            <summary>
     177            Required method for Designer support - do not modify
     178            the contents of this method with the code editor.
     179            </summary>
     180        </member>
     181        <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts">
     182             <summary>
     183            Represents a strongly typed in-memory cache of data.
     184            </summary>
     185        </member>
     186        <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts.PatientApptsDataTable">
     187             <summary>
     188            Represents the strongly named DataTable class.
     189            </summary>
     190        </member>
     191        <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts.BSDXResourceDataTable">
     192             <summary>
     193            Represents the strongly named DataTable class.
     194            </summary>
     195        </member>
     196        <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts.PatientApptsRow">
     197             <summary>
     198            Represents strongly named DataRow class.
     199            </summary>
     200        </member>
     201        <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts.BSDXResourceRow">
     202             <summary>
     203            Represents strongly named DataRow class.
     204            </summary>
     205        </member>
     206        <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts.PatientApptsRowChangeEvent">
     207             <summary>
     208            Row event argument class
     209            </summary>
     210        </member>
     211        <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts.BSDXResourceRowChangeEvent">
     212             <summary>
     213            Row event argument class
     214            </summary>
     215        </member>
     216        <member name="T:IndianHealthService.ClinicalScheduling.DCancelAppt">
     217            <summary>
     218            Summary description for DCancelAppt.
     219            </summary>
     220        </member>
     221        <member name="F:IndianHealthService.ClinicalScheduling.DCancelAppt.components">
     222            <summary>
     223            Required designer variable.
     224            </summary>
     225        </member>
     226        <member name="M:IndianHealthService.ClinicalScheduling.DCancelAppt.UpdateDialogData(System.Boolean)">
     227            <summary>
     228            If b is true, moves member vars into control data
     229            otherwise, moves control data into member vars
     230            </summary>
     231            <param name="b"></param>
     232        </member>
     233        <member name="M:IndianHealthService.ClinicalScheduling.DCancelAppt.Dispose(System.Boolean)">
     234            <summary>
     235            Clean up any resources being used.
     236            </summary>
     237        </member>
     238        <member name="M:IndianHealthService.ClinicalScheduling.DCancelAppt.InitializeComponent">
     239            <summary>
     240            Required method for Designer support - do not modify
     241            the contents of this method with the code editor.
     242            </summary>
     243        </member>
     244        <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.RebookAccessType">
     245            <summary>
     246            Sets or returns the rebook access type:  -1 = use current type, -2 = use any type, 0 = prompt for a type
     247            </summary>
     248        </member>
     249        <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.ClinicCancelled">
     250            <summary>
     251            Returns true if appt cancelled by Clinic, otherwise false
     252            </summary>
     253        </member>
     254        <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.AutoRebook">
     255            <summary>
     256            Returns value of AutoRebook check box
     257            </summary>
     258        </member>
     259        <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.CancelReason">
     260            <summary>
     261            Returns internal entry in the CANCELLATION REASON file (409.2)
     262            </summary>
     263        </member>
     264        <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.CancelRemarks">
     265            <summary>
     266            Returns cancellation remarks.
     267            </summary>
     268        </member>
     269        <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.RebookStartDays">
     270            <summary>
     271            Sets or returns the number of days in the future to start searching for availability
     272            </summary>
     273        </member>
     274        <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.RebookMaxDays">
     275            <summary>
     276            Sets and returns the maximum number of days in the future to look for rebook availability
     277            </summary>
     278        </member>
     279        <member name="T:IndianHealthService.ClinicalScheduling.CGAvailability">
     280            <summary>
     281            This class was regenerated from Calendargrid.dll using Reflector.exe
     282            by Sam Habiel for WorldVista. The original source code is lost.
     283            </summary>
     284        </member>
     285        <member name="T:IndianHealthService.ClinicalScheduling.DResourceUser">
     286            <summary>
     287            Summary description for DResourceUser.
     288            </summary>
     289        </member>
     290        <member name="F:IndianHealthService.ClinicalScheduling.DResourceUser.components">
     291            <summary>
     292            Required designer variable.
     293            </summary>
     294        </member>
     295        <member name="M:IndianHealthService.ClinicalScheduling.DResourceUser.Dispose(System.Boolean)">
     296            <summary>
     297            Clean up any resources being used.
     298            </summary>
     299        </member>
     300        <member name="M:IndianHealthService.ClinicalScheduling.DResourceUser.InitializeComponent">
     301            <summary>
     302            Required method for Designer support - do not modify
     303            the contents of this method with the code editor.
     304            </summary>
     305        </member>
     306        <member name="M:IndianHealthService.ClinicalScheduling.DResourceUser.UpdateDialogData(System.Boolean)">
     307            <summary>
     308            If b is true, moves member vars into control data
     309            otherwise, moves control data into member vars
     310            </summary>
     311            <param name="b"></param>
     312        </member>
     313        <member name="P:IndianHealthService.ClinicalScheduling.DResourceUser.UserID">
     314            <summary>
     315            The ID of the Resource User in the NEW PERSON file.
     316            </summary>
     317        </member>
     318        <member name="P:IndianHealthService.ClinicalScheduling.DResourceUser.ModifySchedule">
     319            <summary>
     320            True if the user is allowed to modify the resource's scheduled availability
     321            </summary>
     322        </member>
     323        <member name="P:IndianHealthService.ClinicalScheduling.DResourceUser.Overbook">
     324            <summary>
     325            True if the user is allowed to overbook beyond the resource's scheduled availability
     326            </summary>
     327        </member>
     328        <member name="P:IndianHealthService.ClinicalScheduling.DResourceUser.Appoinmtments">
     329            <summary>
     330            True if the user is allowed to create, edit and delete appointments
     331            </summary>
     332        </member>
     333        <member name="T:IndianHealthService.ClinicalScheduling.DAccessTemplate">
     334            <summary>
     335            Summary description for DAccessTemplate.
     336            </summary>
     337        </member>
     338        <member name="F:IndianHealthService.ClinicalScheduling.DAccessTemplate.components">
     339            <summary>
     340            Required designer variable.
     341            </summary>
     342        </member>
     343        <member name="M:IndianHealthService.ClinicalScheduling.DAccessTemplate.UpdateDialogData(System.Boolean)">
     344            <summary>
     345            If b is true, moves member vars into control data
     346            otherwise, moves control data into member vars
     347            </summary>
     348            <param name="b"></param>
     349        </member>
    187350        <member name="M:IndianHealthService.ClinicalScheduling.DAccessTemplate.Dispose(System.Boolean)">
    188351            <summary>
     
    209372            <summary>
    210373            Sets or returns the number of weeks to apply the template
     374            </summary>
     375        </member>
     376        <member name="T:IndianHealthService.ClinicalScheduling.DNoShow">
     377            <summary>
     378            Summary description for DAutoRebook.
     379            </summary>
     380        </member>
     381        <member name="F:IndianHealthService.ClinicalScheduling.DNoShow.components">
     382            <summary>
     383            Required designer variable.
     384            </summary>
     385        </member>
     386        <member name="M:IndianHealthService.ClinicalScheduling.DNoShow.UpdateDialogData(System.Boolean)">
     387            <summary>
     388            If b is true, moves member vars into control data
     389            otherwise, moves control data into member vars
     390            </summary>
     391            <param name="b"></param>
     392        </member>
     393        <member name="M:IndianHealthService.ClinicalScheduling.DNoShow.Dispose(System.Boolean)">
     394            <summary>
     395            Clean up any resources being used.
     396            </summary>
     397        </member>
     398        <member name="M:IndianHealthService.ClinicalScheduling.DNoShow.InitializeComponent">
     399            <summary>
     400            Required method for Designer support - do not modify
     401            the contents of this method with the code editor.
     402            </summary>
     403        </member>
     404        <member name="P:IndianHealthService.ClinicalScheduling.DNoShow.RebookAccessType">
     405            <summary>
     406            Sets or returns the rebook access type:  -1 = use current type, -2 = use any type, 0 = prompt for a type
     407            </summary>
     408        </member>
     409        <member name="P:IndianHealthService.ClinicalScheduling.DNoShow.AutoRebook">
     410            <summary>
     411            Returns value of AutoRebook check box
     412            </summary>
     413        </member>
     414        <member name="P:IndianHealthService.ClinicalScheduling.DNoShow.RebookStartDays">
     415            <summary>
     416            Sets or returns the number of days in the future to start searching for availability
     417            </summary>
     418        </member>
     419        <member name="P:IndianHealthService.ClinicalScheduling.DNoShow.RebookMaxDays">
     420            <summary>
     421            Sets and returns the maximum number of days in the future to look for rebook availability
     422            </summary>
     423        </member>
     424        <member name="T:IndianHealthService.ClinicalScheduling.DAccessGroup">
     425            <summary>
     426            Summary description for DAccessGroup.
     427            </summary>
     428        </member>
     429        <member name="F:IndianHealthService.ClinicalScheduling.DAccessGroup.components">
     430            <summary>
     431            Required designer variable.
     432            </summary>
     433        </member>
     434        <member name="M:IndianHealthService.ClinicalScheduling.DAccessGroup.Dispose(System.Boolean)">
     435            <summary>
     436            Clean up any resources being used.
     437            </summary>
     438        </member>
     439        <member name="M:IndianHealthService.ClinicalScheduling.DAccessGroup.InitializeComponent">
     440            <summary>
     441            Required method for Designer support - do not modify
     442            the contents of this method with the code editor.
     443            </summary>
     444        </member>
     445        <member name="M:IndianHealthService.ClinicalScheduling.DAccessGroup.UpdateDialogData(System.Boolean)">
     446            <summary>
     447            If b is true, moves member vars into control data
     448            otherwise, moves control data into member vars
     449            </summary>
     450            <param name="b"></param>
     451        </member>
     452        <member name="P:IndianHealthService.ClinicalScheduling.DAccessGroup.AccessGroupName">
     453            <summary>
     454            Gets the name of the Access Group;
    211455            </summary>
    212456        </member>
     
    256500            </summary>
    257501        </member>
    258         <member name="T:IndianHealthService.ClinicalScheduling.dInputText">
    259             <summary>
    260             Summary description for dInputText.
    261             </summary>
    262         </member>
    263         <member name="F:IndianHealthService.ClinicalScheduling.dInputText.components">
    264             <summary>
    265             Required designer variable.
    266             </summary>
    267         </member>
    268         <member name="M:IndianHealthService.ClinicalScheduling.dInputText.Dispose(System.Boolean)">
    269             <summary>
    270             Clean up any resources being used.
    271             </summary>
    272         </member>
    273         <member name="M:IndianHealthService.ClinicalScheduling.dInputText.InitializeComponent">
    274             <summary>
    275             Required method for Designer support - do not modify
    276             the contents of this method with the code editor.
    277             </summary>
    278         </member>
    279         <member name="T:IndianHealthService.ClinicalScheduling.DResource">
    280             <summary>
    281             Summary description for DResource.
    282             </summary>
    283         </member>
    284         <member name="F:IndianHealthService.ClinicalScheduling.DResource.components">
    285             <summary>
    286             Required designer variable.
    287             </summary>
    288         </member>
    289         <member name="M:IndianHealthService.ClinicalScheduling.DResource.InitializeComponent">
    290             <summary>
    291             Required method for Designer support - do not modify
    292             the contents of this method with the code editor.
    293             </summary>
    294         </member>
    295         <member name="M:IndianHealthService.ClinicalScheduling.DResource.UpdateDialogData(System.Boolean)">
     502        <member name="T:IndianHealthService.ClinicalScheduling.DResourceGroupItem">
     503            <summary>
     504            Summary description for DResourceGroup.
     505            </summary>
     506        </member>
     507        <member name="F:IndianHealthService.ClinicalScheduling.DResourceGroupItem.components">
     508            <summary>
     509            Required designer variable.
     510            </summary>
     511        </member>
     512        <member name="M:IndianHealthService.ClinicalScheduling.DResourceGroupItem.Dispose(System.Boolean)">
     513            <summary>
     514            Clean up any resources being used.
     515            </summary>
     516        </member>
     517        <member name="M:IndianHealthService.ClinicalScheduling.DResourceGroupItem.InitializeComponent">
     518            <summary>
     519            Required method for Designer support - do not modify
     520            the contents of this method with the code editor.
     521            </summary>
     522        </member>
     523        <member name="M:IndianHealthService.ClinicalScheduling.DResourceGroupItem.UpdateDialogData(System.Boolean)">
    296524            <summary>
    297525            If b is true, moves member vars into control data
     
    300528            <param name="b"></param>
    301529        </member>
     530        <member name="P:IndianHealthService.ClinicalScheduling.DResourceGroupItem.ResourceID">
     531            <summary>
     532            Contains the IEN of the Resource in the BSDX_RESOURCE file
     533            </summary>
     534        </member>
     535        <member name="P:IndianHealthService.ClinicalScheduling.DResourceGroupItem.ResourceName">
     536            <summary>
     537            Contains the name of the Resource
     538            </summary>
     539        </member>
     540        <member name="T:IndianHealthService.ClinicalScheduling.DResource">
     541            <summary>
     542            Summary description for DResource.
     543            </summary>
     544        </member>
     545        <member name="F:IndianHealthService.ClinicalScheduling.DResource.components">
     546            <summary>
     547            Required designer variable.
     548            </summary>
     549        </member>
     550        <member name="M:IndianHealthService.ClinicalScheduling.DResource.InitializeComponent">
     551            <summary>
     552            Required method for Designer support - do not modify
     553            the contents of this method with the code editor.
     554            </summary>
     555        </member>
     556        <member name="M:IndianHealthService.ClinicalScheduling.DResource.UpdateDialogData(System.Boolean)">
     557            <summary>
     558            If b is true, moves member vars into control data
     559            otherwise, moves control data into member vars
     560            </summary>
     561            <param name="b"></param>
     562        </member>
    302563        <member name="M:IndianHealthService.ClinicalScheduling.DResource.Dispose(System.Boolean)">
    303564            <summary>
    304565            Clean up any resources being used.
     566            </summary>
     567        </member>
     568        <member name="T:IndianHealthService.ClinicalScheduling.DCheckIn">
     569            <summary>
     570            Summary description for DCheckIn.
     571            </summary>
     572        </member>
     573        <member name="F:IndianHealthService.ClinicalScheduling.DCheckIn.components">
     574            <summary>
     575            Required designer variable.
     576            </summary>
     577        </member>
     578        <member name="M:IndianHealthService.ClinicalScheduling.DCheckIn.UpdateDialogData(System.Boolean)">
     579            <summary>
     580            If b is true, moves member vars into control data
     581            otherwise, moves control data into member vars
     582            </summary>
     583            <param name="b"></param>
     584        </member>
     585        <member name="M:IndianHealthService.ClinicalScheduling.DCheckIn.Dispose(System.Boolean)">
     586            <summary>
     587            Clean up any resources being used.
     588            </summary>
     589        </member>
     590        <member name="M:IndianHealthService.ClinicalScheduling.DCheckIn.InitializeComponent">
     591            <summary>
     592            Required method for Designer support - do not modify
     593            the contents of this method with the code editor.
     594            </summary>
     595        </member>
     596        <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.ProviderIEN">
     597            <summary>
     598            Returns string representation of internal entry number of Provider in PROVIDER File
     599            </summary>
     600        </member>
     601        <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.PCCClinicIEN">
     602            <summary>
     603            Returns string representation of IEN of Clinic in VEN EHP CLINIC file
     604            </summary>
     605        </member>
     606        <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.PCCFormIEN">
     607            <summary>
     608            Returns string representation of IEN of template entry in VEN PCC TEMPLATE
     609            </summary>
     610        </member>
     611        <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.PCCOutGuide">
     612            <summary>
     613            Returns 'true' if outguide to be printed; otherwise returns 'false'
     614            </summary>
     615        </member>
     616        <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.ClinicStopIEN">
     617            <summary>
     618            Returns string representation of IEN of CLINIC STOP
     619            </summary>
     620        </member>
     621        <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.PrintRouteSlip">
     622            <summary>
     623            Returns 'true' if routing slip to be printed; otherwise 'false'
     624            </summary>
     625        </member>
     626        <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.CheckInTime">
     627            <summary>
     628            Appointment checkin time
     629            </summary>
     630        </member>
     631        <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.AuxTime">
     632            <summary>
     633            Appointment end time
     634            </summary>
     635        </member>
     636        <member name="T:IndianHealthService.ClinicalScheduling.CGCells">
     637            <summary>
     638            This class was regenerated from Calendargrid.dll using Reflector.exe
     639            by Sam Habiel for WorldVista. The original source code is lost.
     640            </summary>
     641        </member>
     642        <member name="T:IndianHealthService.ClinicalScheduling.UCPatientAppts">
     643            <summary>
     644            User Control that shows patient's appointments and allows printing
     645            </summary>
     646        </member>
     647        <member name="F:IndianHealthService.ClinicalScheduling.UCPatientAppts.components">
     648            <summary>
     649            Required designer variable.
     650            </summary>
     651        </member>
     652        <member name="M:IndianHealthService.ClinicalScheduling.UCPatientAppts.Dispose(System.Boolean)">
     653            <summary>
     654            Clean up any resources being used.
     655            </summary>
     656            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
     657        </member>
     658        <member name="M:IndianHealthService.ClinicalScheduling.UCPatientAppts.InitializeComponent">
     659            <summary>
     660            Required method for Designer support - do not modify
     661            the contents of this method with the code editor.
     662            </summary>
     663        </member>
     664        <member name="M:IndianHealthService.ClinicalScheduling.UCPatientAppts.#ctor(IndianHealthService.ClinicalScheduling.CGDocumentManager,System.Int32)">
     665            <summary>
     666            Ctor
     667            </summary>
     668            <param name="docManager">Document Manager from main context</param>
     669            <param name="nPatientID">Patient IEN</param>
     670        </member>
     671        <member name="M:IndianHealthService.ClinicalScheduling.UCPatientAppts.SetPastFilter(System.Boolean)">
     672            <summary>
     673            Sets the filter for the DataView on whether to show past appointments or not
     674            </summary>
     675            <param name="ShowPastAppts">boolean - self explanatory</param>
     676        </member>
     677        <member name="T:IndianHealthService.ClinicalScheduling.DSelectLetterClinics">
     678            <summary>
     679            Summary description for DSelectLetterClinics.
     680            </summary>
     681        </member>
     682        <member name="M:IndianHealthService.ClinicalScheduling.DSelectLetterClinics.Dispose(System.Boolean)">
     683            <summary>
     684            Clean up any resources being used.
     685            </summary>
     686        </member>
     687        <member name="M:IndianHealthService.ClinicalScheduling.DSelectLetterClinics.InitializeComponent">
     688            <summary>
     689            Required method for Designer support - do not modify
     690            the contents of this method with the code editor.
     691            </summary>
     692        </member>
     693        <member name="P:IndianHealthService.ClinicalScheduling.DSelectLetterClinics.SelectedClinics">
     694            <summary>
     695            Returns the |-delimited string of selected resource id's
     696            </summary>
     697        </member>
     698        <member name="T:IndianHealthService.ClinicalScheduling.DAppointPage">
     699            <summary>
     700            Appointment Info Dialog
     701            </summary>
     702        </member>
     703        <member name="M:IndianHealthService.ClinicalScheduling.DAppointPage.InitializeComponent">
     704            <summary>
     705            Required method for Designer support - do not modify
     706            the contents of this method with the code editor.
     707            </summary>
     708        </member>
     709        <member name="M:IndianHealthService.ClinicalScheduling.DAppointPage.UpdateDialogData(System.Boolean)">
     710            <summary>
     711            Move data from member variables to controls (b == true)
     712            or from controls to member variables (b == false)
     713            </summary>
     714            <param name="b"></param>
     715        </member>
     716        <member name="M:IndianHealthService.ClinicalScheduling.DAppointPage.Dispose(System.Boolean)">
     717            <summary>
     718            Clean up any resources being used.
     719            </summary>
     720        </member>
     721        <member name="T:IndianHealthService.ClinicalScheduling.DAccessGroupItem">
     722            <summary>
     723            Summary description for DAccessGroupItem.
     724            </summary>
     725        </member>
     726        <member name="F:IndianHealthService.ClinicalScheduling.DAccessGroupItem.components">
     727            <summary>
     728            Required designer variable.
     729            </summary>
     730        </member>
     731        <member name="M:IndianHealthService.ClinicalScheduling.DAccessGroupItem.Dispose(System.Boolean)">
     732            <summary>
     733            Clean up any resources being used.
     734            </summary>
     735        </member>
     736        <member name="M:IndianHealthService.ClinicalScheduling.DAccessGroupItem.InitializeComponent">
     737            <summary>
     738            Required method for Designer support - do not modify
     739            the contents of this method with the code editor.
     740            </summary>
     741        </member>
     742        <member name="M:IndianHealthService.ClinicalScheduling.DAccessGroupItem.UpdateDialogData(System.Boolean)">
     743            <summary>
     744            If b is true, moves member vars into control data
     745            otherwise, moves control data into member vars
     746            </summary>
     747            <param name="b"></param>
     748        </member>
     749        <member name="P:IndianHealthService.ClinicalScheduling.DAccessGroupItem.AccessTypeID">
     750            <summary>
     751            Contains the IEN of the AccessType in the BSDX_ACCESS_TYPE file
     752            </summary>
     753        </member>
     754        <member name="P:IndianHealthService.ClinicalScheduling.DAccessGroupItem.AccessTypeName">
     755            <summary>
     756            Contains the name of the AccessType
     757            </summary>
     758        </member>
     759        <member name="T:IndianHealthService.ClinicalScheduling.dInputText">
     760            <summary>
     761            Summary description for dInputText.
     762            </summary>
     763        </member>
     764        <member name="F:IndianHealthService.ClinicalScheduling.dInputText.components">
     765            <summary>
     766            Required designer variable.
     767            </summary>
     768        </member>
     769        <member name="M:IndianHealthService.ClinicalScheduling.dInputText.Dispose(System.Boolean)">
     770            <summary>
     771            Clean up any resources being used.
     772            </summary>
     773        </member>
     774        <member name="M:IndianHealthService.ClinicalScheduling.dInputText.InitializeComponent">
     775            <summary>
     776            Required method for Designer support - do not modify
     777            the contents of this method with the code editor.
    305778            </summary>
    306779        </member>
     
    311784            </summary>
    312785        </member>
    313         <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts">
    314              <summary>
    315             Represents a strongly typed in-memory cache of data.
    316             </summary>
    317         </member>
    318         <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts.PatientApptsDataTable">
    319              <summary>
    320             Represents the strongly named DataTable class.
    321             </summary>
    322         </member>
    323         <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts.BSDXResourceDataTable">
    324              <summary>
    325             Represents the strongly named DataTable class.
    326             </summary>
    327         </member>
    328         <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts.PatientApptsRow">
    329              <summary>
    330             Represents strongly named DataRow class.
    331             </summary>
    332         </member>
    333         <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts.BSDXResourceRow">
    334              <summary>
    335             Represents strongly named DataRow class.
    336             </summary>
    337         </member>
    338         <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts.PatientApptsRowChangeEvent">
    339              <summary>
    340             Row event argument class
    341             </summary>
    342         </member>
    343         <member name="T:IndianHealthService.ClinicalScheduling.dsRebookAppts.BSDXResourceRowChangeEvent">
    344              <summary>
    345             Row event argument class
    346             </summary>
    347         </member>
    348         <member name="T:IndianHealthService.ClinicalScheduling.DAccessGroup">
    349             <summary>
    350             Summary description for DAccessGroup.
    351             </summary>
    352         </member>
    353         <member name="F:IndianHealthService.ClinicalScheduling.DAccessGroup.components">
    354             <summary>
    355             Required designer variable.
    356             </summary>
    357         </member>
    358         <member name="M:IndianHealthService.ClinicalScheduling.DAccessGroup.Dispose(System.Boolean)">
    359             <summary>
    360             Clean up any resources being used.
    361             </summary>
    362         </member>
    363         <member name="M:IndianHealthService.ClinicalScheduling.DAccessGroup.InitializeComponent">
    364             <summary>
    365             Required method for Designer support - do not modify
    366             the contents of this method with the code editor.
    367             </summary>
    368         </member>
    369         <member name="M:IndianHealthService.ClinicalScheduling.DAccessGroup.UpdateDialogData(System.Boolean)">
     786        <member name="T:IndianHealthService.ClinicalScheduling.CGAVView">
     787            <summary>
     788            Summary description for CGAVView.
     789            </summary>
     790        </member>
     791        <member name="M:IndianHealthService.ClinicalScheduling.CGAVView.InitializeComponent">
     792            <summary>
     793            Required method for Designer support - do not modify
     794            the contents of this method with the code editor.
     795            </summary>
     796        </member>
     797        <member name="M:IndianHealthService.ClinicalScheduling.CGAVView.Dispose(System.Boolean)">
     798            <summary>
     799            Clean up any resources being used.
     800            </summary>
     801        </member>
     802        <member name="P:IndianHealthService.ClinicalScheduling.CGAVView.CGrid">
     803            <summary>
     804            Access the CalendarGrid associated with this view
     805            </summary>
     806        </member>
     807        <member name="P:IndianHealthService.ClinicalScheduling.CGAVView.Document">
     808            <summary>
     809            Accesses the document associated with this view
     810            </summary>
     811        </member>
     812        <member name="T:IndianHealthService.ClinicalScheduling.DSelectSchedules">
     813            <summary>
     814            Summary description for DSelectSchedules.
     815            </summary>
     816        </member>
     817        <member name="F:IndianHealthService.ClinicalScheduling.DSelectSchedules.components">
     818            <summary>
     819            Required designer variable.
     820            </summary>
     821        </member>
     822        <member name="M:IndianHealthService.ClinicalScheduling.DSelectSchedules.Dispose(System.Boolean)">
     823            <summary>
     824            Clean up any resources being used.
     825            </summary>
     826        </member>
     827        <member name="M:IndianHealthService.ClinicalScheduling.DSelectSchedules.InitializeComponent">
     828            <summary>
     829            Required method for Designer support - do not modify
     830            the contents of this method with the code editor.
     831            </summary>
     832        </member>
     833        <member name="P:IndianHealthService.ClinicalScheduling.DSelectSchedules.SelectedClinics">
     834            <summary>
     835            Returns the an ArrayList of selected resource names
     836            </summary>
     837        </member>
     838        <member name="T:IndianHealthService.ClinicalScheduling.DAccessBlock">
     839            <summary>
     840            This class was regenerated from Calendargrid.dll using Reflector.exe
     841            by Sam Habiel for WorldVista. The original source code is lost.
     842            </summary>
     843        </member>
     844        <member name="T:IndianHealthService.ClinicalScheduling.CGResource">
     845            <summary>
     846            This class was regenerated from Calendargrid.dll using Reflector.exe
     847            by Sam Habiel for WorldVista. The original source code is lost.
     848            </summary>
     849        </member>
     850        <member name="T:IndianHealthService.ClinicalScheduling.DApptSearch">
     851            <summary>
     852            Summary description for DApptSearch.
     853            </summary>
     854        </member>
     855        <member name="F:IndianHealthService.ClinicalScheduling.DApptSearch.components">
     856            <summary>
     857            Required designer variable.
     858            </summary>
     859        </member>
     860        <member name="M:IndianHealthService.ClinicalScheduling.DApptSearch.UpdateDialogData(System.Boolean)">
    370861            <summary>
    371862            If b is true, moves member vars into control data
     
    374865            <param name="b"></param>
    375866        </member>
    376         <member name="P:IndianHealthService.ClinicalScheduling.DAccessGroup.AccessGroupName">
    377             <summary>
    378             Gets the name of the Access Group;
    379             </summary>
    380         </member>
    381         <member name="T:IndianHealthService.ClinicalScheduling.CGResource">
    382             <summary>
    383             This class was regenerated from Calendargrid.dll using Reflector.exe
    384             by Sam Habiel for WorldVista. The original source code is lost.
    385             </summary>
    386         </member>
    387         <member name="T:IndianHealthService.ClinicalScheduling.DSplash">
    388             <summary>
    389             Summary description for DSplash.
    390             </summary>
    391         </member>
    392         <member name="F:IndianHealthService.ClinicalScheduling.DSplash.components">
    393             <summary>
    394             Required designer variable.
    395             </summary>
    396         </member>
    397         <member name="M:IndianHealthService.ClinicalScheduling.DSplash.Dispose(System.Boolean)">
    398             <summary>
    399             Clean up any resources being used.
    400             </summary>
    401         </member>
    402         <member name="M:IndianHealthService.ClinicalScheduling.DSplash.InitializeComponent">
    403             <summary>
    404             Required method for Designer support - do not modify
    405             the contents of this method with the code editor.
    406             </summary>
    407         </member>
    408         <member name="P:IndianHealthService.ClinicalScheduling.DSplash.Status">
    409             <summary>
    410             Gets or sets the value of the Status displayed on the splash screen
    411             </summary>
    412         </member>
    413         <member name="T:IndianHealthService.ClinicalScheduling.DPatientApptDisplay">
    414             <summary>
    415             Summary description for DPatientApptDisplay.
    416             </summary>
    417         </member>
    418         <member name="F:IndianHealthService.ClinicalScheduling.DPatientApptDisplay.components">
    419             <summary>
    420             Required designer variable.
    421             </summary>
    422         </member>
    423         <member name="M:IndianHealthService.ClinicalScheduling.DPatientApptDisplay.Dispose(System.Boolean)">
    424             <summary>
    425             Clean up any resources being used.
    426             </summary>
    427         </member>
    428         <member name="M:IndianHealthService.ClinicalScheduling.DPatientApptDisplay.InitializeComponent">
    429             <summary>
    430             Required method for Designer support - do not modify
    431             the contents of this method with the code editor.
    432             </summary>
    433         </member>
    434         <member name="T:IndianHealthService.ClinicalScheduling.DAppointPage">
    435             <summary>
    436             Appointment Info Dialog
    437             </summary>
    438         </member>
    439         <member name="F:IndianHealthService.ClinicalScheduling.DAppointPage.components">
    440             <summary>
    441             Required designer variable.
    442             </summary>
    443         </member>
    444         <member name="M:IndianHealthService.ClinicalScheduling.DAppointPage.InitializeComponent">
    445             <summary>
    446             Required method for Designer support - do not modify
    447             the contents of this method with the code editor.
    448             </summary>
    449         </member>
    450         <member name="M:IndianHealthService.ClinicalScheduling.DAppointPage.UpdateDialogData(System.Boolean)">
    451             <summary>
    452             Move data from member variables to controls (b == true)
    453             or from controls to member variables (b == false)
    454             </summary>
    455             <param name="b"></param>
    456         </member>
    457         <member name="M:IndianHealthService.ClinicalScheduling.DAppointPage.Dispose(System.Boolean)">
    458             <summary>
    459             Clean up any resources being used.
    460             </summary>
    461         </member>
    462         <member name="T:IndianHealthService.ClinicalScheduling.DAccessType">
    463             <summary>
    464             Summary description for DAccessType.
    465             </summary>
    466         </member>
    467         <member name="F:IndianHealthService.ClinicalScheduling.DAccessType.components">
    468             <summary>
    469             Required designer variable.
    470             </summary>
    471         </member>
    472         <member name="M:IndianHealthService.ClinicalScheduling.DAccessType.Dispose(System.Boolean)">
    473             <summary>
    474             Clean up any resources being used.
    475             </summary>
    476         </member>
    477         <member name="M:IndianHealthService.ClinicalScheduling.DAccessType.InitializeComponent">
    478             <summary>
    479             Required method for Designer support - do not modify
    480             the contents of this method with the code editor.
    481             </summary>
    482         </member>
    483         <member name="M:IndianHealthService.ClinicalScheduling.DAccessType.UpdateDialogData(System.Boolean)">
    484             <summary>
    485             If b is true, moves member vars into control data
    486             otherwise, moves control data into member vars
    487             </summary>
    488             <param name="b"></param>
     867        <member name="M:IndianHealthService.ClinicalScheduling.DApptSearch.Dispose(System.Boolean)">
     868            <summary>
     869            Clean up any resources being used.
     870            </summary>
     871        </member>
     872        <member name="M:IndianHealthService.ClinicalScheduling.DApptSearch.InitializeComponent">
     873            <summary>
     874            Required method for Designer support - do not modify
     875            the contents of this method with the code editor.
     876            </summary>
     877        </member>
     878        <member name="P:IndianHealthService.ClinicalScheduling.DApptSearch.SelectedResource">
     879            <summary>
     880            Gets the resource selected by the user
     881            </summary>
     882        </member>
     883        <member name="P:IndianHealthService.ClinicalScheduling.DApptSearch.SelectedDate">
     884            <summary>
     885            Gets the date selected by the user
     886            </summary>
    489887        </member>
    490888        <member name="T:IndianHealthService.ClinicalScheduling.CGDocument">
     
    557955            </summary>
    558956        </member>
    559         <member name="T:IndianHealthService.ClinicalScheduling.DManagement">
    560             <summary>
    561             Summary description for DManagement.
    562             </summary>
    563         </member>
    564         <member name="M:IndianHealthService.ClinicalScheduling.DManagement.InitializeComponent">
    565             <summary>
    566             Required method for Designer support - do not modify
    567             the contents of this method with the code editor.
     957        <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2">
     958             <summary>
     959            Represents a strongly typed in-memory cache of data.
     960            </summary>
     961        </member>
     962        <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2.PatientApptsDataTable">
     963             <summary>
     964            Represents the strongly named DataTable class.
     965            </summary>
     966        </member>
     967        <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2.BSDXResourceDataTable">
     968             <summary>
     969            Represents the strongly named DataTable class.
     970            </summary>
     971        </member>
     972        <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2.PatientApptsRow">
     973             <summary>
     974            Represents strongly named DataRow class.
     975            </summary>
     976        </member>
     977        <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2.BSDXResourceRow">
     978             <summary>
     979            Represents strongly named DataRow class.
     980            </summary>
     981        </member>
     982        <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2.PatientApptsRowChangeEvent">
     983             <summary>
     984            Row event argument class
     985            </summary>
     986        </member>
     987        <member name="T:IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2.BSDXResourceRowChangeEvent">
     988             <summary>
     989            Row event argument class
     990            </summary>
     991        </member>
     992        <member name="T:IndianHealthService.ClinicalScheduling.DCopyAppts">
     993            <summary>
     994            Summary description for DCopyAppts.
     995            </summary>
     996        </member>
     997        <member name="M:IndianHealthService.ClinicalScheduling.DCopyAppts.Dispose(System.Boolean)">
     998            <summary>
     999            Clean up any resources being used.
     1000            </summary>
     1001        </member>
     1002        <member name="M:IndianHealthService.ClinicalScheduling.DCopyAppts.InitializeComponent">
     1003            <summary>
     1004            Required method for Designer support - do not modify
     1005            the contents of this method with the code editor.
     1006            </summary>
     1007        </member>
     1008        <member name="T:IndianHealthService.ClinicalScheduling.CGCell">
     1009            <summary>
     1010            This class was regenerated from Calendargrid.dll using Reflector.exe
     1011            by Sam Habiel for WorldVista. The original source code is lost.
     1012            </summary>
     1013        </member>
     1014        <member name="T:IndianHealthService.ClinicalScheduling.CGAppointmentChangedHandler">
     1015            <summary>
     1016            This class was regenerated from Calendargrid.dll using Reflector.exe
     1017            by Sam Habiel for WorldVista. The original source code is lost.
     1018            </summary>
     1019        </member>
     1020        <member name="T:IndianHealthService.ClinicalScheduling.DSplash">
     1021            <summary>
     1022            Summary description for DSplash.
     1023            </summary>
     1024        </member>
     1025        <member name="F:IndianHealthService.ClinicalScheduling.DSplash.components">
     1026            <summary>
     1027            Required designer variable.
     1028            </summary>
     1029        </member>
     1030        <member name="M:IndianHealthService.ClinicalScheduling.DSplash.Dispose(System.Boolean)">
     1031            <summary>
     1032            Clean up any resources being used.
     1033            </summary>
     1034        </member>
     1035        <member name="M:IndianHealthService.ClinicalScheduling.DSplash.InitializeComponent">
     1036            <summary>
     1037            Required method for Designer support - do not modify
     1038            the contents of this method with the code editor.
     1039            </summary>
     1040        </member>
     1041        <member name="P:IndianHealthService.ClinicalScheduling.DSplash.Status">
     1042            <summary>
     1043            Gets or sets the value of the Status displayed on the splash screen
     1044            </summary>
     1045        </member>
     1046        <member name="T:IndianHealthService.ClinicalScheduling.CGSelectionChangedArgs">
     1047            <summary>
     1048            This class was regenerated from Calendargrid.dll using Reflector.exe
     1049            by Sam Habiel for WorldVista. The original source code is lost.
     1050            </summary>
     1051        </member>
     1052        <member name="T:IndianHealthService.ClinicalScheduling.CGAppointmentChangedArgs">
     1053            <summary>
     1054            This class was regenerated from Calendargrid.dll using Reflector.exe
     1055            by Sam Habiel for WorldVista. The original source code is lost.
    5681056            </summary>
    5691057        </member>
     
    5741062            </summary>
    5751063        </member>
    576         <member name="T:IndianHealthService.ClinicalScheduling.DSelectLetterClinics">
    577             <summary>
    578             Summary description for DSelectLetterClinics.
    579             </summary>
    580         </member>
    581         <member name="M:IndianHealthService.ClinicalScheduling.DSelectLetterClinics.Dispose(System.Boolean)">
    582             <summary>
    583             Clean up any resources being used.
    584             </summary>
    585         </member>
    586         <member name="M:IndianHealthService.ClinicalScheduling.DSelectLetterClinics.InitializeComponent">
    587             <summary>
    588             Required method for Designer support - do not modify
    589             the contents of this method with the code editor.
    590             </summary>
    591         </member>
    592         <member name="P:IndianHealthService.ClinicalScheduling.DSelectLetterClinics.SelectedClinics">
    593             <summary>
    594             Returns the |-delimited string of selected resource id's
    595             </summary>
    596         </member>
    597         <member name="T:IndianHealthService.ClinicalScheduling.DAccessBlock">
    598             <summary>
    599             This class was regenerated from Calendargrid.dll using Reflector.exe
    600             by Sam Habiel for WorldVista. The original source code is lost.
    601             </summary>
    602         </member>
    603         <member name="T:IndianHealthService.ClinicalScheduling.CGAppointments">
    604             <summary>
    605             This class was regenerated from Calendargrid.dll using Reflector.exe
    606             by Sam Habiel for WorldVista. The original source code is lost.
    607             </summary>
    608         </member>
    609         <member name="T:IndianHealthService.ClinicalScheduling.DCancelAppt">
    610             <summary>
    611             Summary description for DCancelAppt.
    612             </summary>
    613         </member>
    614         <member name="F:IndianHealthService.ClinicalScheduling.DCancelAppt.components">
    615             <summary>
    616             Required designer variable.
    617             </summary>
    618         </member>
    619         <member name="M:IndianHealthService.ClinicalScheduling.DCancelAppt.UpdateDialogData(System.Boolean)">
    620             <summary>
    621             If b is true, moves member vars into control data
    622             otherwise, moves control data into member vars
    623             </summary>
    624             <param name="b"></param>
    625         </member>
    626         <member name="M:IndianHealthService.ClinicalScheduling.DCancelAppt.Dispose(System.Boolean)">
    627             <summary>
    628             Clean up any resources being used.
    629             </summary>
    630         </member>
    631         <member name="M:IndianHealthService.ClinicalScheduling.DCancelAppt.InitializeComponent">
    632             <summary>
    633             Required method for Designer support - do not modify
    634             the contents of this method with the code editor.
    635             </summary>
    636         </member>
    637         <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.RebookAccessType">
    638             <summary>
    639             Sets or returns the rebook access type:  -1 = use current type, -2 = use any type, 0 = prompt for a type
    640             </summary>
    641         </member>
    642         <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.ClinicCancelled">
    643             <summary>
    644             Returns true if appt cancelled by Clinic, otherwise false
    645             </summary>
    646         </member>
    647         <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.AutoRebook">
    648             <summary>
    649             Returns value of AutoRebook check box
    650             </summary>
    651         </member>
    652         <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.CancelReason">
    653             <summary>
    654             Returns internal entry in the CANCELLATION REASON file (409.2)
    655             </summary>
    656         </member>
    657         <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.CancelRemarks">
    658             <summary>
    659             Returns cancellation remarks.
    660             </summary>
    661         </member>
    662         <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.RebookStartDays">
    663             <summary>
    664             Sets or returns the number of days in the future to start searching for availability
    665             </summary>
    666         </member>
    667         <member name="P:IndianHealthService.ClinicalScheduling.DCancelAppt.RebookMaxDays">
    668             <summary>
    669             Sets and returns the maximum number of days in the future to look for rebook availability
    670             </summary>
    671         </member>
    672         <member name="T:IndianHealthService.ClinicalScheduling.DPatientLookup">
    673             <summary>
    674             Summary description for DPatientLookup.
    675             </summary>
    676         </member>
    677         <member name="F:IndianHealthService.ClinicalScheduling.DPatientLookup.components">
    678             <summary>
    679             Required designer variable.
    680             </summary>
    681         </member>
    682         <member name="M:IndianHealthService.ClinicalScheduling.DPatientLookup.InitializeComponent">
    683             <summary>
    684             Required method for Designer support - do not modify
    685             the contents of this method with the code editor.
    686             </summary>
    687         </member>
    688         <member name="M:IndianHealthService.ClinicalScheduling.DPatientLookup.Dispose(System.Boolean)">
    689             <summary>
    690             Clean up any resources being used.
    691             </summary>
    692         </member>
    693         <member name="P:IndianHealthService.ClinicalScheduling.DPatientLookup.PatientName">
    694             <summary>
    695             Gets or sets the name of the selected patient
    696             </summary>
    697         </member>
    698         <member name="P:IndianHealthService.ClinicalScheduling.DPatientLookup.PatientIEN">
    699             <summary>
    700             RPMS Internal Entry Number in PATIENT file (DFN)
    701             </summary>
    702         </member>
    703         <member name="P:IndianHealthService.ClinicalScheduling.DPatientLookup.HealthRecordNumber">
    704             <summary>
    705             The string representation of the Health Record Number
    706             </summary>
    707         </member>
    708         <member name="T:IndianHealthService.ClinicalScheduling.DPatientLetter">
    709             <summary>
    710             Summary description for DPatientLetter.
    711             </summary>
    712         </member>
    713         <member name="F:IndianHealthService.ClinicalScheduling.DPatientLetter.components">
    714             <summary>
    715             Required designer variable.
    716             </summary>
    717         </member>
    718         <member name="M:IndianHealthService.ClinicalScheduling.DPatientLetter.Dispose(System.Boolean)">
    719             <summary>
    720             Clean up any resources being used.
    721             </summary>
    722         </member>
    723         <member name="M:IndianHealthService.ClinicalScheduling.DPatientLetter.InitializeComponent">
    724             <summary>
    725             Required method for Designer support - do not modify
    726             the contents of this method with the code editor.
    727             </summary>
    728         </member>
    729         <member name="T:IndianHealthService.ClinicalScheduling.DCopyAppts">
    730             <summary>
    731             Summary description for DCopyAppts.
    732             </summary>
    733         </member>
    734         <member name="M:IndianHealthService.ClinicalScheduling.DCopyAppts.Dispose(System.Boolean)">
    735             <summary>
    736             Clean up any resources being used.
    737             </summary>
    738         </member>
    739         <member name="M:IndianHealthService.ClinicalScheduling.DCopyAppts.InitializeComponent">
    740             <summary>
    741             Required method for Designer support - do not modify
    742             the contents of this method with the code editor.
    743             </summary>
    744         </member>
    745         <member name="T:IndianHealthService.ClinicalScheduling.DCheckIn">
    746             <summary>
    747             Summary description for DCheckIn.
    748             </summary>
    749         </member>
    750         <member name="F:IndianHealthService.ClinicalScheduling.DCheckIn.components">
    751             <summary>
    752             Required designer variable.
    753             </summary>
    754         </member>
    755         <member name="M:IndianHealthService.ClinicalScheduling.DCheckIn.UpdateDialogData(System.Boolean)">
    756             <summary>
    757             If b is true, moves member vars into control data
    758             otherwise, moves control data into member vars
    759             </summary>
    760             <param name="b"></param>
    761         </member>
    762         <member name="M:IndianHealthService.ClinicalScheduling.DCheckIn.Dispose(System.Boolean)">
    763             <summary>
    764             Clean up any resources being used.
    765             </summary>
    766         </member>
    767         <member name="M:IndianHealthService.ClinicalScheduling.DCheckIn.InitializeComponent">
    768             <summary>
    769             Required method for Designer support - do not modify
    770             the contents of this method with the code editor.
    771             </summary>
    772         </member>
    773         <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.ProviderIEN">
    774             <summary>
    775             Returns string representation of internal entry number of Provider in PROVIDER File
    776             </summary>
    777         </member>
    778         <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.PCCClinicIEN">
    779             <summary>
    780             Returns string representation of IEN of Clinic in VEN EHP CLINIC file
    781             </summary>
    782         </member>
    783         <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.PCCFormIEN">
    784             <summary>
    785             Returns string representation of IEN of template entry in VEN PCC TEMPLATE
    786             </summary>
    787         </member>
    788         <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.PCCOutGuide">
    789             <summary>
    790             Returns 'true' if outguide to be printed; otherwise returns 'false'
    791             </summary>
    792         </member>
    793         <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.ClinicStopIEN">
    794             <summary>
    795             Returns string representation of IEN of CLINIC STOP
    796             </summary>
    797         </member>
    798         <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.PrintRouteSlip">
    799             <summary>
    800             Returns 'true' if routing slip to be printed; otherwise 'false'
    801             </summary>
    802         </member>
    803         <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.CheckInTime">
    804             <summary>
    805             Appointment checkin time
    806             </summary>
    807         </member>
    808         <member name="P:IndianHealthService.ClinicalScheduling.DCheckIn.AuxTime">
    809             <summary>
    810             Appointment end time
    811             </summary>
    812         </member>
    813         <member name="T:IndianHealthService.ClinicalScheduling.CGAppointmentChangedHandler">
    814             <summary>
    815             This class was regenerated from Calendargrid.dll using Reflector.exe
    816             by Sam Habiel for WorldVista. The original source code is lost.
    817             </summary>
    818         </member>
    819         <member name="T:IndianHealthService.ClinicalScheduling.DResourceGroup">
    820             <summary>
    821             Summary description for DResourceGroup.
    822             </summary>
    823         </member>
    824         <member name="F:IndianHealthService.ClinicalScheduling.DResourceGroup.components">
    825             <summary>
    826             Required designer variable.
    827             </summary>
    828         </member>
    829         <member name="M:IndianHealthService.ClinicalScheduling.DResourceGroup.Dispose(System.Boolean)">
    830             <summary>
    831             Clean up any resources being used.
    832             </summary>
    833         </member>
    834         <member name="M:IndianHealthService.ClinicalScheduling.DResourceGroup.InitializeComponent">
    835             <summary>
    836             Required method for Designer support - do not modify
    837             the contents of this method with the code editor.
    838             </summary>
    839         </member>
    840         <member name="M:IndianHealthService.ClinicalScheduling.DResourceGroup.UpdateDialogData(System.Boolean)">
    841             <summary>
    842             If b is true, moves member vars into control data
    843             otherwise, moves control data into member vars
    844             </summary>
    845             <param name="b"></param>
    846         </member>
    847         <member name="P:IndianHealthService.ClinicalScheduling.DResourceGroup.ResourceGroupName">
    848             <summary>
    849             Gets the name of the resource group
    850             </summary>
    851         </member>
    852         <member name="T:IndianHealthService.ClinicalScheduling.DAccessGroupItem">
    853             <summary>
    854             Summary description for DAccessGroupItem.
    855             </summary>
    856         </member>
    857         <member name="F:IndianHealthService.ClinicalScheduling.DAccessGroupItem.components">
    858             <summary>
    859             Required designer variable.
    860             </summary>
    861         </member>
    862         <member name="M:IndianHealthService.ClinicalScheduling.DAccessGroupItem.Dispose(System.Boolean)">
    863             <summary>
    864             Clean up any resources being used.
    865             </summary>
    866         </member>
    867         <member name="M:IndianHealthService.ClinicalScheduling.DAccessGroupItem.InitializeComponent">
    868             <summary>
    869             Required method for Designer support - do not modify
    870             the contents of this method with the code editor.
    871             </summary>
    872         </member>
    873         <member name="M:IndianHealthService.ClinicalScheduling.DAccessGroupItem.UpdateDialogData(System.Boolean)">
    874             <summary>
    875             If b is true, moves member vars into control data
    876             otherwise, moves control data into member vars
    877             </summary>
    878             <param name="b"></param>
    879         </member>
    880         <member name="P:IndianHealthService.ClinicalScheduling.DAccessGroupItem.AccessTypeID">
    881             <summary>
    882             Contains the IEN of the AccessType in the BSDX_ACCESS_TYPE file
    883             </summary>
    884         </member>
    885         <member name="P:IndianHealthService.ClinicalScheduling.DAccessGroupItem.AccessTypeName">
    886             <summary>
    887             Contains the name of the AccessType
    888             </summary>
    889         </member>
    890         <member name="T:IndianHealthService.ClinicalScheduling.CGCell">
    891             <summary>
    892             This class was regenerated from Calendargrid.dll using Reflector.exe
    893             by Sam Habiel for WorldVista. The original source code is lost.
    894             </summary>
    895         </member>
    896         <member name="T:IndianHealthService.ClinicalScheduling.DSelectSchedules">
    897             <summary>
    898             Summary description for DSelectSchedules.
    899             </summary>
    900         </member>
    901         <member name="F:IndianHealthService.ClinicalScheduling.DSelectSchedules.components">
    902             <summary>
    903             Required designer variable.
    904             </summary>
    905         </member>
    906         <member name="M:IndianHealthService.ClinicalScheduling.DSelectSchedules.Dispose(System.Boolean)">
    907             <summary>
    908             Clean up any resources being used.
    909             </summary>
    910         </member>
    911         <member name="M:IndianHealthService.ClinicalScheduling.DSelectSchedules.InitializeComponent">
    912             <summary>
    913             Required method for Designer support - do not modify
    914             the contents of this method with the code editor.
    915             </summary>
    916         </member>
    917         <member name="P:IndianHealthService.ClinicalScheduling.DSelectSchedules.SelectedClinics">
    918             <summary>
    919             Returns the an ArrayList of selected resource names
    920             </summary>
    921         </member>
    922         <member name="T:IndianHealthService.ClinicalScheduling.CGAVView">
    923             <summary>
    924             Summary description for CGAVView.
    925             </summary>
    926         </member>
    927         <member name="M:IndianHealthService.ClinicalScheduling.CGAVView.InitializeComponent">
    928             <summary>
    929             Required method for Designer support - do not modify
    930             the contents of this method with the code editor.
    931             </summary>
    932         </member>
    933         <member name="M:IndianHealthService.ClinicalScheduling.CGAVView.Dispose(System.Boolean)">
    934             <summary>
    935             Clean up any resources being used.
    936             </summary>
    937         </member>
    938         <member name="P:IndianHealthService.ClinicalScheduling.CGAVView.CGrid">
    939             <summary>
    940             Access the CalendarGrid associated with this view
    941             </summary>
    942         </member>
    943         <member name="P:IndianHealthService.ClinicalScheduling.CGAVView.Document">
    944             <summary>
    945             Accesses the document associated with this view
    946             </summary>
    947         </member>
    948         <member name="T:IndianHealthService.ClinicalScheduling.CGAvailability">
    949             <summary>
    950             This class was regenerated from Calendargrid.dll using Reflector.exe
    951             by Sam Habiel for WorldVista. The original source code is lost.
    952             </summary>
    953         </member>
    954         <member name="T:IndianHealthService.ClinicalScheduling.CGAppointment">
    955             <summary>
    956             This class was regenerated from Calendargrid.dll using Reflector.exe
    957             by Sam Habiel for WorldVista. The original source code is lost.
    958             </summary>
    959         </member>
    960         <member name="T:IndianHealthService.ClinicalScheduling.DResourceGroupItem">
    961             <summary>
    962             Summary description for DResourceGroup.
    963             </summary>
    964         </member>
    965         <member name="F:IndianHealthService.ClinicalScheduling.DResourceGroupItem.components">
    966             <summary>
    967             Required designer variable.
    968             </summary>
    969         </member>
    970         <member name="M:IndianHealthService.ClinicalScheduling.DResourceGroupItem.Dispose(System.Boolean)">
    971             <summary>
    972             Clean up any resources being used.
    973             </summary>
    974         </member>
    975         <member name="M:IndianHealthService.ClinicalScheduling.DResourceGroupItem.InitializeComponent">
    976             <summary>
    977             Required method for Designer support - do not modify
    978             the contents of this method with the code editor.
    979             </summary>
    980         </member>
    981         <member name="M:IndianHealthService.ClinicalScheduling.DResourceGroupItem.UpdateDialogData(System.Boolean)">
    982             <summary>
    983             If b is true, moves member vars into control data
    984             otherwise, moves control data into member vars
    985             </summary>
    986             <param name="b"></param>
    987         </member>
    988         <member name="P:IndianHealthService.ClinicalScheduling.DResourceGroupItem.ResourceID">
    989             <summary>
    990             Contains the IEN of the Resource in the BSDX_RESOURCE file
    991             </summary>
    992         </member>
    993         <member name="P:IndianHealthService.ClinicalScheduling.DResourceGroupItem.ResourceName">
    994             <summary>
    995             Contains the name of the Resource
    996             </summary>
    997         </member>
    998         <member name="T:IndianHealthService.ClinicalScheduling.DNoShow">
    999             <summary>
    1000             Summary description for DAutoRebook.
    1001             </summary>
    1002         </member>
    1003         <member name="F:IndianHealthService.ClinicalScheduling.DNoShow.components">
    1004             <summary>
    1005             Required designer variable.
    1006             </summary>
    1007         </member>
    1008         <member name="M:IndianHealthService.ClinicalScheduling.DNoShow.UpdateDialogData(System.Boolean)">
    1009             <summary>
    1010             If b is true, moves member vars into control data
    1011             otherwise, moves control data into member vars
    1012             </summary>
    1013             <param name="b"></param>
    1014         </member>
    1015         <member name="M:IndianHealthService.ClinicalScheduling.DNoShow.Dispose(System.Boolean)">
    1016             <summary>
    1017             Clean up any resources being used.
    1018             </summary>
    1019         </member>
    1020         <member name="M:IndianHealthService.ClinicalScheduling.DNoShow.InitializeComponent">
    1021             <summary>
    1022             Required method for Designer support - do not modify
    1023             the contents of this method with the code editor.
    1024             </summary>
    1025         </member>
    1026         <member name="P:IndianHealthService.ClinicalScheduling.DNoShow.RebookAccessType">
    1027             <summary>
    1028             Sets or returns the rebook access type:  -1 = use current type, -2 = use any type, 0 = prompt for a type
    1029             </summary>
    1030         </member>
    1031         <member name="P:IndianHealthService.ClinicalScheduling.DNoShow.AutoRebook">
    1032             <summary>
    1033             Returns value of AutoRebook check box
    1034             </summary>
    1035         </member>
    1036         <member name="P:IndianHealthService.ClinicalScheduling.DNoShow.RebookStartDays">
    1037             <summary>
    1038             Sets or returns the number of days in the future to start searching for availability
    1039             </summary>
    1040         </member>
    1041         <member name="P:IndianHealthService.ClinicalScheduling.DNoShow.RebookMaxDays">
    1042             <summary>
    1043             Sets and returns the maximum number of days in the future to look for rebook availability
    1044             </summary>
    1045         </member>
    1046         <member name="T:IndianHealthService.ClinicalScheduling.CGCells">
    1047             <summary>
    1048             This class was regenerated from Calendargrid.dll using Reflector.exe
    1049             by Sam Habiel for WorldVista. The original source code is lost.
    1050             </summary>
    1051         </member>
    1052         <member name="T:IndianHealthService.ClinicalScheduling.CGAppointmentChangedArgs">
    1053             <summary>
    1054             This class was regenerated from Calendargrid.dll using Reflector.exe
    1055             by Sam Habiel for WorldVista. The original source code is lost.
    1056             </summary>
    1057         </member>
    1058         <member name="T:IndianHealthService.ClinicalScheduling.DResourceUser">
    1059             <summary>
    1060             Summary description for DResourceUser.
    1061             </summary>
    1062         </member>
    1063         <member name="F:IndianHealthService.ClinicalScheduling.DResourceUser.components">
    1064             <summary>
    1065             Required designer variable.
    1066             </summary>
    1067         </member>
    1068         <member name="M:IndianHealthService.ClinicalScheduling.DResourceUser.Dispose(System.Boolean)">
    1069             <summary>
    1070             Clean up any resources being used.
    1071             </summary>
    1072         </member>
    1073         <member name="M:IndianHealthService.ClinicalScheduling.DResourceUser.InitializeComponent">
    1074             <summary>
    1075             Required method for Designer support - do not modify
    1076             the contents of this method with the code editor.
    1077             </summary>
    1078         </member>
    1079         <member name="M:IndianHealthService.ClinicalScheduling.DResourceUser.UpdateDialogData(System.Boolean)">
    1080             <summary>
    1081             If b is true, moves member vars into control data
    1082             otherwise, moves control data into member vars
    1083             </summary>
    1084             <param name="b"></param>
    1085         </member>
    1086         <member name="P:IndianHealthService.ClinicalScheduling.DResourceUser.UserID">
    1087             <summary>
    1088             The ID of the Resource User in the NEW PERSON file.
    1089             </summary>
    1090         </member>
    1091         <member name="P:IndianHealthService.ClinicalScheduling.DResourceUser.ModifySchedule">
    1092             <summary>
    1093             True if the user is allowed to modify the resource's scheduled availability
    1094             </summary>
    1095         </member>
    1096         <member name="P:IndianHealthService.ClinicalScheduling.DResourceUser.Overbook">
    1097             <summary>
    1098             True if the user is allowed to overbook beyond the resource's scheduled availability
    1099             </summary>
    1100         </member>
    1101         <member name="P:IndianHealthService.ClinicalScheduling.DResourceUser.Appoinmtments">
    1102             <summary>
    1103             True if the user is allowed to create, edit and delete appointments
     1064        <member name="T:IndianHealthService.ClinicalScheduling.CGDocumentManager">
     1065            <summary>
     1066            Summary description for DocumentManager.
     1067            </summary>
     1068        </member>
     1069        <member name="M:IndianHealthService.ClinicalScheduling.CGDocumentManager.Dispose(System.Boolean)">
     1070            <summary>
     1071            Clean up any resources being used.
     1072            </summary>
     1073        </member>
     1074        <member name="M:IndianHealthService.ClinicalScheduling.CGDocumentManager.GetViewByResource(System.Collections.ArrayList)">
     1075            <summary>
     1076            Return the first view having a resource array matching sResourceArray
     1077            </summary>
     1078            <param name="sResourceArray"></param>
     1079            <returns></returns>
     1080        </member>
     1081        <member name="M:IndianHealthService.ClinicalScheduling.CGDocumentManager.UpdateViews(System.String,System.String)">
     1082            <summary>
     1083            Propogate availability updates to all sRresource's doc/views
     1084            </summary>
     1085        </member>
     1086        <member name="M:IndianHealthService.ClinicalScheduling.CGDocumentManager.UpdateViews">
     1087            <summary>
     1088            Propogate availability updates to all doc/views
     1089            </summary>
     1090        </member>
     1091        <member name="M:IndianHealthService.ClinicalScheduling.CGDocumentManager.CloseAllViews(IndianHealthService.ClinicalScheduling.CGDocument)">
     1092            <summary>
     1093            Calls each view associated with document Doc and closes it.
     1094            </summary>         
     1095        </member>
     1096        <member name="M:IndianHealthService.ClinicalScheduling.CGDocumentManager.CloseAllViews(IndianHealthService.ClinicalScheduling.CGAVDocument)">
     1097            <summary>
     1098            Calls each view associated with Availability Doc and closes it.
     1099            </summary>         
     1100        </member>
     1101        <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.ConnectInfo">
     1102            <summary>
     1103            Returns the document manager's BMXNetConnectInfo member
     1104            </summary>
     1105        </member>
     1106        <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.ScheduleManager">
     1107            <summary>
     1108            True if the current user holds the BSDXZMGR or XUPROGMODE keys in RPMS
     1109            </summary>
     1110        </member>
     1111        <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.WindowText">
     1112            <summary>
     1113            Holds the user and division
     1114            </summary>
     1115        </member>
     1116        <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.GlobalDataSet">
     1117            <summary>
     1118            This dataset contains tables used by the entire application
     1119            </summary>         
     1120        </member>
     1121        <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.Current">
     1122            <summary>
     1123            Returns the single CGDocumentManager object
     1124            </summary>
     1125        </member>
     1126        <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.Views">
     1127            <summary>
     1128            Returns the list of currently opened documents
     1129            </summary>
     1130        </member>
     1131        <member name="P:IndianHealthService.ClinicalScheduling.CGDocumentManager.AvailabilityViews">
     1132            <summary>
     1133            Returns the list of currently opened CGAVViews
    11041134            </summary>
    11051135        </member>
Note: See TracChangeset for help on using the changeset viewer.