1. Make combo boxes in DManagement searchable (in MS Lingo AutoComplete).

2. Make sure that all DManagement lists and combo boxes are sorted.
This commit is contained in:
sam 2010-08-08 10:58:05 +00:00
parent 226b6cb7a1
commit 9edf1ba75a
9 changed files with 993 additions and 1496 deletions

View File

@ -59,77 +59,77 @@ namespace IndianHealthService.ClinicalScheduling
/// </summary>
private void InitializeComponent()
{
this.pnlPageBottom = new System.Windows.Forms.Panel();
this.cmdCancel = new System.Windows.Forms.Button();
this.cmdOK = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.cboAccessType = new System.Windows.Forms.ComboBox();
this.pnlPageBottom.SuspendLayout();
this.SuspendLayout();
//
// pnlPageBottom
//
this.pnlPageBottom.Controls.AddRange(new System.Windows.Forms.Control[] {
this.cmdCancel,
this.cmdOK});
this.pnlPageBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlPageBottom.Location = new System.Drawing.Point(0, 112);
this.pnlPageBottom.Name = "pnlPageBottom";
this.pnlPageBottom.Size = new System.Drawing.Size(472, 40);
this.pnlPageBottom.TabIndex = 6;
//
// cmdCancel
//
this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cmdCancel.Location = new System.Drawing.Point(376, 8);
this.cmdCancel.Name = "cmdCancel";
this.cmdCancel.Size = new System.Drawing.Size(56, 24);
this.cmdCancel.TabIndex = 2;
this.cmdCancel.Text = "Cancel";
//
// cmdOK
//
this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.cmdOK.Location = new System.Drawing.Point(296, 8);
this.cmdOK.Name = "cmdOK";
this.cmdOK.Size = new System.Drawing.Size(64, 24);
this.cmdOK.TabIndex = 1;
this.cmdOK.Text = "OK";
this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
//
// label1
//
this.label1.Location = new System.Drawing.Point(24, 40);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(120, 16);
this.label1.TabIndex = 10;
this.label1.Text = "Select Access Type:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// cboAccessType
//
this.cboAccessType.Location = new System.Drawing.Point(152, 40);
this.cboAccessType.Name = "cboAccessType";
this.cboAccessType.Size = new System.Drawing.Size(248, 21);
this.cboAccessType.TabIndex = 9;
this.cboAccessType.Text = "cboAccessType";
//
// DAccessGroupItem
//
this.AcceptButton = this.cmdOK;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.CancelButton = this.cmdCancel;
this.ClientSize = new System.Drawing.Size(472, 152);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.label1,
this.cboAccessType,
this.pnlPageBottom});
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "DAccessGroupItem";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "DAccessGroupItem";
this.pnlPageBottom.ResumeLayout(false);
this.ResumeLayout(false);
this.pnlPageBottom = new System.Windows.Forms.Panel();
this.cmdCancel = new System.Windows.Forms.Button();
this.cmdOK = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.cboAccessType = new System.Windows.Forms.ComboBox();
this.pnlPageBottom.SuspendLayout();
this.SuspendLayout();
//
// pnlPageBottom
//
this.pnlPageBottom.Controls.Add(this.cmdCancel);
this.pnlPageBottom.Controls.Add(this.cmdOK);
this.pnlPageBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlPageBottom.Location = new System.Drawing.Point(0, 112);
this.pnlPageBottom.Name = "pnlPageBottom";
this.pnlPageBottom.Size = new System.Drawing.Size(472, 40);
this.pnlPageBottom.TabIndex = 6;
//
// cmdCancel
//
this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cmdCancel.Location = new System.Drawing.Point(376, 8);
this.cmdCancel.Name = "cmdCancel";
this.cmdCancel.Size = new System.Drawing.Size(56, 24);
this.cmdCancel.TabIndex = 2;
this.cmdCancel.Text = "Cancel";
//
// cmdOK
//
this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.cmdOK.Location = new System.Drawing.Point(296, 8);
this.cmdOK.Name = "cmdOK";
this.cmdOK.Size = new System.Drawing.Size(64, 24);
this.cmdOK.TabIndex = 1;
this.cmdOK.Text = "OK";
this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
//
// label1
//
this.label1.Location = new System.Drawing.Point(24, 40);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(120, 16);
this.label1.TabIndex = 10;
this.label1.Text = "Select Access Type:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// cboAccessType
//
this.cboAccessType.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.cboAccessType.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.cboAccessType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboAccessType.Location = new System.Drawing.Point(152, 40);
this.cboAccessType.Name = "cboAccessType";
this.cboAccessType.Size = new System.Drawing.Size(248, 21);
this.cboAccessType.TabIndex = 9;
//
// DAccessGroupItem
//
this.AcceptButton = this.cmdOK;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.CancelButton = this.cmdCancel;
this.ClientSize = new System.Drawing.Size(472, 152);
this.Controls.Add(this.label1);
this.Controls.Add(this.cboAccessType);
this.Controls.Add(this.pnlPageBottom);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "DAccessGroupItem";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "DAccessGroupItem";
this.pnlPageBottom.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
@ -146,6 +146,7 @@ namespace IndianHealthService.ClinicalScheduling
//Datasource the ACCESS GROUP combo box
DataTable dtAccessType = dsGlobal.Tables["AccessTypes"];
DataView dvAccessType = new DataView(dtAccessType);
dvAccessType.Sort = "ACCESS_TYPE_NAME ASC";
cboAccessType.DataSource = dvAccessType;
@ -208,5 +209,6 @@ namespace IndianHealthService.ClinicalScheduling
}
#endregion Properties
}
}

View File

@ -1,75 +1,96 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">1.3</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1">this is my long string</data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
[base64 mime encoded serialized .NET Framework object]
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
[base64 mime encoded string representing a byte array form of the .NET Framework object]
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
@ -88,18 +109,12 @@
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="pnlPageBottom.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="$this.Name">
<value>DAccessGroupItem</value>
</data>
</root>

View File

@ -208,6 +208,7 @@ namespace IndianHealthService.ClinicalScheduling
//ResourceGroup
m_dtResourceGroup = m_dsGlobal.Tables["ResourceGroup"];
m_dvResourceGroup = new DataView(m_dtResourceGroup);
m_dvResourceGroup.Sort = "RESOURCE_GROUP ASC";
this.grdResourceGroup.DataSource = m_dvResourceGroup;
//Create DataGridTableStyle for ResourceGroup table
@ -258,6 +259,7 @@ namespace IndianHealthService.ClinicalScheduling
//Access Types
m_dtAccessTypes = m_dsGlobal.Tables["AccessTypes"];
m_dvAccessTypes = new DataView(m_dtAccessTypes);
m_dvAccessTypes.Sort = "ACCESS_TYPE_NAME ASC";
this.grdAccessTypes.DataSource = m_dvAccessTypes;
// Create DataGridTableStyle for AccessTypes table
@ -285,6 +287,7 @@ namespace IndianHealthService.ClinicalScheduling
//Access Groups
m_dtAccessGroup = m_dsGlobal.Tables["AccessGroup"];
m_dvAccessGroup = new DataView(m_dtAccessGroup);
m_dvAccessGroup.Sort = "ACCESS_GROUP ASC";
this.grdAccessGroups.DataSource = m_dvAccessGroup;
// Create DataGridTableStyle for AccessGroup table

View File

@ -70,456 +70,458 @@ namespace IndianHealthService.ClinicalScheduling
/// </summary>
private void InitializeComponent()
{
this.pnlOkCancel = new System.Windows.Forms.Panel();
this.cmdCancel = new System.Windows.Forms.Button();
this.cmdOK = new System.Windows.Forms.Button();
this.pnlDescription = new System.Windows.Forms.Panel();
this.grpDescription = new System.Windows.Forms.GroupBox();
this.lblDescription = new System.Windows.Forms.Label();
this.tabResources = new System.Windows.Forms.TabControl();
this.tpRPMSLink = new System.Windows.Forms.TabPage();
this.label11 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.cboTimeInterval = new System.Windows.Forms.ComboBox();
this.chkInactivate = new System.Windows.Forms.CheckBox();
this.grpRPMSClinicLink = new System.Windows.Forms.GroupBox();
this.lblReactivateDate = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.lblInactivateDate = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.lblClinicCode = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.lblProvider = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.lblVisitServiceCategory = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.lblCreateVisit = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.cboRPMSClinic = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.txtResourceName = new System.Windows.Forms.TextBox();
this.tpLetter = new System.Windows.Forms.TabPage();
this.label9 = new System.Windows.Forms.Label();
this.txtLetter = new System.Windows.Forms.TextBox();
this.tpRebookLetter = new System.Windows.Forms.TabPage();
this.label12 = new System.Windows.Forms.Label();
this.txtRebookLetter = new System.Windows.Forms.TextBox();
this.tpCancellationLetter = new System.Windows.Forms.TabPage();
this.label13 = new System.Windows.Forms.Label();
this.txtCancellationLetter = new System.Windows.Forms.TextBox();
this.pnlOkCancel.SuspendLayout();
this.pnlDescription.SuspendLayout();
this.grpDescription.SuspendLayout();
this.tabResources.SuspendLayout();
this.tpRPMSLink.SuspendLayout();
this.grpRPMSClinicLink.SuspendLayout();
this.tpLetter.SuspendLayout();
this.tpRebookLetter.SuspendLayout();
this.tpCancellationLetter.SuspendLayout();
this.SuspendLayout();
//
// pnlOkCancel
//
this.pnlOkCancel.Controls.Add(this.cmdCancel);
this.pnlOkCancel.Controls.Add(this.cmdOK);
this.pnlOkCancel.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlOkCancel.Location = new System.Drawing.Point(0, 424);
this.pnlOkCancel.Name = "pnlOkCancel";
this.pnlOkCancel.Size = new System.Drawing.Size(498, 40);
this.pnlOkCancel.TabIndex = 3;
//
// cmdCancel
//
this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cmdCancel.Location = new System.Drawing.Point(416, 8);
this.cmdCancel.Name = "cmdCancel";
this.cmdCancel.Size = new System.Drawing.Size(64, 24);
this.cmdCancel.TabIndex = 25;
this.cmdCancel.Text = "Cancel";
//
// cmdOK
//
this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.cmdOK.Location = new System.Drawing.Point(336, 8);
this.cmdOK.Name = "cmdOK";
this.cmdOK.Size = new System.Drawing.Size(64, 24);
this.cmdOK.TabIndex = 20;
this.cmdOK.Text = "OK";
this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
//
// pnlDescription
//
this.pnlDescription.Controls.Add(this.grpDescription);
this.pnlDescription.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlDescription.Location = new System.Drawing.Point(0, 344);
this.pnlDescription.Name = "pnlDescription";
this.pnlDescription.Size = new System.Drawing.Size(498, 80);
this.pnlDescription.TabIndex = 46;
//
// grpDescription
//
this.grpDescription.Controls.Add(this.lblDescription);
this.grpDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.grpDescription.Location = new System.Drawing.Point(0, 0);
this.grpDescription.Name = "grpDescription";
this.grpDescription.Size = new System.Drawing.Size(498, 80);
this.grpDescription.TabIndex = 0;
this.grpDescription.TabStop = false;
this.grpDescription.Text = "Description";
//
// lblDescription
//
this.lblDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblDescription.Location = new System.Drawing.Point(3, 16);
this.lblDescription.Name = "lblDescription";
this.lblDescription.Size = new System.Drawing.Size(492, 61);
this.lblDescription.TabIndex = 1;
this.lblDescription.Text = @"Resources may optionally be linked to a VistA Clinic. To define the parameters for an VistA clinic, you must log into VistA and use the VistA Scheduling Supervisor's menus. The Time Interval field controls the increment of time used on the Calendar display. The Letter Text tab contains the body text of reminder letters for this clinic.";
//
// tabResources
//
this.tabResources.Controls.Add(this.tpRPMSLink);
this.tabResources.Controls.Add(this.tpLetter);
this.tabResources.Controls.Add(this.tpRebookLetter);
this.tabResources.Controls.Add(this.tpCancellationLetter);
this.tabResources.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabResources.Location = new System.Drawing.Point(0, 0);
this.tabResources.Name = "tabResources";
this.tabResources.SelectedIndex = 0;
this.tabResources.Size = new System.Drawing.Size(498, 344);
this.tabResources.TabIndex = 10;
this.tabResources.SelectedIndexChanged += new System.EventHandler(this.tabResources_SelectedIndexChanged);
//
// tpRPMSLink
//
this.tpRPMSLink.Controls.Add(this.label11);
this.tpRPMSLink.Controls.Add(this.label5);
this.tpRPMSLink.Controls.Add(this.cboTimeInterval);
this.tpRPMSLink.Controls.Add(this.chkInactivate);
this.tpRPMSLink.Controls.Add(this.grpRPMSClinicLink);
this.tpRPMSLink.Controls.Add(this.label1);
this.tpRPMSLink.Controls.Add(this.txtResourceName);
this.tpRPMSLink.Location = new System.Drawing.Point(4, 22);
this.tpRPMSLink.Name = "tpRPMSLink";
this.tpRPMSLink.Size = new System.Drawing.Size(490, 318);
this.tpRPMSLink.TabIndex = 0;
this.tpRPMSLink.Text = "Resource Link";
//
// label11
//
this.label11.Location = new System.Drawing.Point(328, 40);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(80, 16);
this.label11.TabIndex = 52;
this.label11.Text = "minutes.";
//
// label5
//
this.label5.Location = new System.Drawing.Point(192, 40);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(64, 16);
this.label5.TabIndex = 51;
this.label5.Text = "Time Scale:";
//
// cboTimeInterval
//
this.cboTimeInterval.Items.AddRange(new object[] {
"5",
"10",
"15",
"20",
"30",
"60"});
this.cboTimeInterval.Location = new System.Drawing.Point(256, 38);
this.cboTimeInterval.MaxDropDownItems = 6;
this.cboTimeInterval.Name = "cboTimeInterval";
this.cboTimeInterval.Size = new System.Drawing.Size(64, 21);
this.cboTimeInterval.TabIndex = 10;
//
// chkInactivate
//
this.chkInactivate.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
this.chkInactivate.Location = new System.Drawing.Point(80, 40);
this.chkInactivate.Name = "chkInactivate";
this.chkInactivate.Size = new System.Drawing.Size(72, 16);
this.chkInactivate.TabIndex = 5;
this.chkInactivate.Text = "Inactive:";
//
// grpRPMSClinicLink
//
this.grpRPMSClinicLink.Controls.Add(this.lblReactivateDate);
this.grpRPMSClinicLink.Controls.Add(this.label10);
this.grpRPMSClinicLink.Controls.Add(this.lblInactivateDate);
this.grpRPMSClinicLink.Controls.Add(this.label8);
this.grpRPMSClinicLink.Controls.Add(this.lblClinicCode);
this.grpRPMSClinicLink.Controls.Add(this.label6);
this.grpRPMSClinicLink.Controls.Add(this.lblProvider);
this.grpRPMSClinicLink.Controls.Add(this.label7);
this.grpRPMSClinicLink.Controls.Add(this.lblVisitServiceCategory);
this.grpRPMSClinicLink.Controls.Add(this.label3);
this.grpRPMSClinicLink.Controls.Add(this.lblCreateVisit);
this.grpRPMSClinicLink.Controls.Add(this.label2);
this.grpRPMSClinicLink.Controls.Add(this.label4);
this.grpRPMSClinicLink.Controls.Add(this.cboRPMSClinic);
this.grpRPMSClinicLink.Location = new System.Drawing.Point(32, 88);
this.grpRPMSClinicLink.Name = "grpRPMSClinicLink";
this.grpRPMSClinicLink.Size = new System.Drawing.Size(384, 208);
this.grpRPMSClinicLink.TabIndex = 48;
this.grpRPMSClinicLink.TabStop = false;
this.grpRPMSClinicLink.Text = "VistA Clinic Link";
//
// lblReactivateDate
//
this.lblReactivateDate.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblReactivateDate.Location = new System.Drawing.Point(176, 168);
this.lblReactivateDate.Name = "lblReactivateDate";
this.lblReactivateDate.Size = new System.Drawing.Size(176, 16);
this.lblReactivateDate.TabIndex = 57;
//
// label10
//
this.label10.Location = new System.Drawing.Point(56, 168);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(112, 16);
this.label10.TabIndex = 56;
this.label10.Text = "Reactivate Date:";
this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblInactivateDate
//
this.lblInactivateDate.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblInactivateDate.Location = new System.Drawing.Point(176, 144);
this.lblInactivateDate.Name = "lblInactivateDate";
this.lblInactivateDate.Size = new System.Drawing.Size(176, 16);
this.lblInactivateDate.TabIndex = 55;
//
// label8
//
this.label8.Location = new System.Drawing.Point(48, 144);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(120, 16);
this.label8.TabIndex = 54;
this.label8.Text = "Inactivate Date:";
this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblClinicCode
//
this.lblClinicCode.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblClinicCode.Location = new System.Drawing.Point(176, 120);
this.lblClinicCode.Name = "lblClinicCode";
this.lblClinicCode.Size = new System.Drawing.Size(176, 16);
this.lblClinicCode.TabIndex = 53;
//
// label6
//
this.label6.Location = new System.Drawing.Point(96, 120);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(72, 16);
this.label6.TabIndex = 52;
this.label6.Text = "Clinic Code:";
this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblProvider
//
this.lblProvider.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblProvider.Location = new System.Drawing.Point(176, 96);
this.lblProvider.Name = "lblProvider";
this.lblProvider.Size = new System.Drawing.Size(176, 16);
this.lblProvider.TabIndex = 51;
//
// label7
//
this.label7.Location = new System.Drawing.Point(104, 96);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(64, 16);
this.label7.TabIndex = 50;
this.label7.Text = "Provider:";
this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblVisitServiceCategory
//
this.lblVisitServiceCategory.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblVisitServiceCategory.Location = new System.Drawing.Point(176, 72);
this.lblVisitServiceCategory.Name = "lblVisitServiceCategory";
this.lblVisitServiceCategory.Size = new System.Drawing.Size(176, 16);
this.lblVisitServiceCategory.TabIndex = 49;
//
// label3
//
this.label3.Location = new System.Drawing.Point(48, 72);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(120, 16);
this.label3.TabIndex = 48;
this.label3.Text = "Visit Sevice Category:";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblCreateVisit
//
this.lblCreateVisit.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblCreateVisit.Location = new System.Drawing.Point(176, 48);
this.lblCreateVisit.Name = "lblCreateVisit";
this.lblCreateVisit.Size = new System.Drawing.Size(40, 16);
this.lblCreateVisit.TabIndex = 47;
//
// label2
//
this.label2.Location = new System.Drawing.Point(32, 48);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(136, 16);
this.label2.TabIndex = 46;
this.label2.Text = "Create Visit at Check-In?";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label4
//
this.label4.Location = new System.Drawing.Point(32, 18);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(72, 16);
this.label4.TabIndex = 45;
this.label4.Text = "VistA Clinic:";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// cboRPMSClinic
//
this.cboRPMSClinic.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboRPMSClinic.Location = new System.Drawing.Point(112, 16);
this.cboRPMSClinic.Name = "cboRPMSClinic";
this.cboRPMSClinic.Size = new System.Drawing.Size(256, 21);
this.cboRPMSClinic.TabIndex = 15;
//
// label1
//
this.label1.Location = new System.Drawing.Point(36, 11);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(96, 16);
this.label1.TabIndex = 47;
this.label1.Text = "Resource Name:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// txtResourceName
//
this.txtResourceName.Location = new System.Drawing.Point(140, 11);
this.txtResourceName.MaxLength = 30;
this.txtResourceName.Name = "txtResourceName";
this.txtResourceName.Size = new System.Drawing.Size(256, 20);
this.txtResourceName.TabIndex = 0;
this.txtResourceName.Text = "";
//
// tpLetter
//
this.tpLetter.Controls.Add(this.label9);
this.tpLetter.Controls.Add(this.txtLetter);
this.tpLetter.Location = new System.Drawing.Point(4, 22);
this.tpLetter.Name = "tpLetter";
this.tpLetter.Size = new System.Drawing.Size(490, 318);
this.tpLetter.TabIndex = 1;
this.tpLetter.Text = "Reminder Letter";
//
// label9
//
this.label9.Location = new System.Drawing.Point(32, 24);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(416, 32);
this.label9.TabIndex = 1;
this.label9.Text = "Enter the text which will appear on reminder letters sent to patients with appoin" +
"tments in this clinic. Use CTRL+Enter to start a new line.";
//
// txtLetter
//
this.txtLetter.Location = new System.Drawing.Point(32, 72);
this.txtLetter.Multiline = true;
this.txtLetter.Name = "txtLetter";
this.txtLetter.Size = new System.Drawing.Size(416, 216);
this.txtLetter.TabIndex = 20;
this.txtLetter.Text = "Dear Patient,\r\n\r\nThis letter is to remind you that you have the appointments list" +
"ed below.\r\n\r\nPlease contact us at 555-1234 if you are unable to keep this appoin" +
"tment.\r\n\r\nThank you,\r\n\r\nThe Clinic";
//
// tpRebookLetter
//
this.tpRebookLetter.Controls.Add(this.label12);
this.tpRebookLetter.Controls.Add(this.txtRebookLetter);
this.tpRebookLetter.Location = new System.Drawing.Point(4, 22);
this.tpRebookLetter.Name = "tpRebookLetter";
this.tpRebookLetter.Size = new System.Drawing.Size(490, 318);
this.tpRebookLetter.TabIndex = 2;
this.tpRebookLetter.Text = "Rebook Letter";
//
// label12
//
this.label12.Location = new System.Drawing.Point(37, 27);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(416, 32);
this.label12.TabIndex = 21;
this.label12.Text = "Enter the text which will appear on rebook letters sent to patients with appointm" +
"ents in this clinic. Use CTRL+Enter to start a new line.";
//
// txtRebookLetter
//
this.txtRebookLetter.Location = new System.Drawing.Point(37, 75);
this.txtRebookLetter.Multiline = true;
this.txtRebookLetter.Name = "txtRebookLetter";
this.txtRebookLetter.Size = new System.Drawing.Size(416, 216);
this.txtRebookLetter.TabIndex = 22;
this.txtRebookLetter.Text = "Dear Patient,\r\n\r\nThis letter is to inform you that we have changed the appointmen" +
"ts listed below.\r\n\r\nPlease contact us at 555-1234 if you are unable to keep your" +
" appointment.\r\n\r\nThank you,\r\n\r\nThe Clinic";
//
// tpCancellationLetter
//
this.tpCancellationLetter.Controls.Add(this.label13);
this.tpCancellationLetter.Controls.Add(this.txtCancellationLetter);
this.tpCancellationLetter.Location = new System.Drawing.Point(4, 22);
this.tpCancellationLetter.Name = "tpCancellationLetter";
this.tpCancellationLetter.Size = new System.Drawing.Size(490, 318);
this.tpCancellationLetter.TabIndex = 3;
this.tpCancellationLetter.Text = "Cancellation Letter";
//
// label13
//
this.label13.Location = new System.Drawing.Point(37, 27);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(416, 32);
this.label13.TabIndex = 21;
this.label13.Text = "Enter the text which will appear on cancellation letters sent to patients with ap" +
"pointments in this clinic. Use CTRL+Enter to start a new line.";
//
// txtCancellationLetter
//
this.txtCancellationLetter.Location = new System.Drawing.Point(37, 75);
this.txtCancellationLetter.Multiline = true;
this.txtCancellationLetter.Name = "txtCancellationLetter";
this.txtCancellationLetter.Size = new System.Drawing.Size(416, 216);
this.txtCancellationLetter.TabIndex = 22;
this.txtCancellationLetter.Text = "Dear Patient,\r\n\r\nThis letter is to inform you that the appointments listed below " +
"have been cancelled.\r\n\r\nPlease contact us at 555-1234 if you have questions abou" +
"t your appointments.\r\n\r\nThank you,\r\n\r\nThe Clinic";
//
// DResource
//
this.AcceptButton = this.cmdOK;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.CancelButton = this.cmdCancel;
this.ClientSize = new System.Drawing.Size(498, 464);
this.Controls.Add(this.tabResources);
this.Controls.Add(this.pnlDescription);
this.Controls.Add(this.pnlOkCancel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "DResource";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Manage Resource";
this.Activated += new System.EventHandler(this.DResource_Activated);
this.pnlOkCancel.ResumeLayout(false);
this.pnlDescription.ResumeLayout(false);
this.grpDescription.ResumeLayout(false);
this.tabResources.ResumeLayout(false);
this.tpRPMSLink.ResumeLayout(false);
this.grpRPMSClinicLink.ResumeLayout(false);
this.tpLetter.ResumeLayout(false);
this.tpRebookLetter.ResumeLayout(false);
this.tpCancellationLetter.ResumeLayout(false);
this.ResumeLayout(false);
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DResource));
this.pnlOkCancel = new System.Windows.Forms.Panel();
this.cmdCancel = new System.Windows.Forms.Button();
this.cmdOK = new System.Windows.Forms.Button();
this.pnlDescription = new System.Windows.Forms.Panel();
this.grpDescription = new System.Windows.Forms.GroupBox();
this.lblDescription = new System.Windows.Forms.Label();
this.tabResources = new System.Windows.Forms.TabControl();
this.tpRPMSLink = new System.Windows.Forms.TabPage();
this.label11 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.cboTimeInterval = new System.Windows.Forms.ComboBox();
this.chkInactivate = new System.Windows.Forms.CheckBox();
this.grpRPMSClinicLink = new System.Windows.Forms.GroupBox();
this.lblReactivateDate = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.lblInactivateDate = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.lblClinicCode = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.lblProvider = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.lblVisitServiceCategory = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.lblCreateVisit = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.cboRPMSClinic = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.txtResourceName = new System.Windows.Forms.TextBox();
this.tpLetter = new System.Windows.Forms.TabPage();
this.label9 = new System.Windows.Forms.Label();
this.txtLetter = new System.Windows.Forms.TextBox();
this.tpRebookLetter = new System.Windows.Forms.TabPage();
this.label12 = new System.Windows.Forms.Label();
this.txtRebookLetter = new System.Windows.Forms.TextBox();
this.tpCancellationLetter = new System.Windows.Forms.TabPage();
this.label13 = new System.Windows.Forms.Label();
this.txtCancellationLetter = new System.Windows.Forms.TextBox();
this.pnlOkCancel.SuspendLayout();
this.pnlDescription.SuspendLayout();
this.grpDescription.SuspendLayout();
this.tabResources.SuspendLayout();
this.tpRPMSLink.SuspendLayout();
this.grpRPMSClinicLink.SuspendLayout();
this.tpLetter.SuspendLayout();
this.tpRebookLetter.SuspendLayout();
this.tpCancellationLetter.SuspendLayout();
this.SuspendLayout();
//
// pnlOkCancel
//
this.pnlOkCancel.Controls.Add(this.cmdCancel);
this.pnlOkCancel.Controls.Add(this.cmdOK);
this.pnlOkCancel.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlOkCancel.Location = new System.Drawing.Point(0, 424);
this.pnlOkCancel.Name = "pnlOkCancel";
this.pnlOkCancel.Size = new System.Drawing.Size(498, 40);
this.pnlOkCancel.TabIndex = 3;
//
// cmdCancel
//
this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cmdCancel.Location = new System.Drawing.Point(416, 8);
this.cmdCancel.Name = "cmdCancel";
this.cmdCancel.Size = new System.Drawing.Size(64, 24);
this.cmdCancel.TabIndex = 5;
this.cmdCancel.Text = "Cancel";
//
// cmdOK
//
this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.cmdOK.Location = new System.Drawing.Point(336, 8);
this.cmdOK.Name = "cmdOK";
this.cmdOK.Size = new System.Drawing.Size(64, 24);
this.cmdOK.TabIndex = 4;
this.cmdOK.Text = "OK";
this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
//
// pnlDescription
//
this.pnlDescription.Controls.Add(this.grpDescription);
this.pnlDescription.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlDescription.Location = new System.Drawing.Point(0, 344);
this.pnlDescription.Name = "pnlDescription";
this.pnlDescription.Size = new System.Drawing.Size(498, 80);
this.pnlDescription.TabIndex = 46;
//
// grpDescription
//
this.grpDescription.Controls.Add(this.lblDescription);
this.grpDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.grpDescription.Location = new System.Drawing.Point(0, 0);
this.grpDescription.Name = "grpDescription";
this.grpDescription.Size = new System.Drawing.Size(498, 80);
this.grpDescription.TabIndex = 0;
this.grpDescription.TabStop = false;
this.grpDescription.Text = "Description";
//
// lblDescription
//
this.lblDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblDescription.Location = new System.Drawing.Point(3, 16);
this.lblDescription.Name = "lblDescription";
this.lblDescription.Size = new System.Drawing.Size(492, 61);
this.lblDescription.TabIndex = 1;
this.lblDescription.Text = resources.GetString("lblDescription.Text");
//
// tabResources
//
this.tabResources.Controls.Add(this.tpRPMSLink);
this.tabResources.Controls.Add(this.tpLetter);
this.tabResources.Controls.Add(this.tpRebookLetter);
this.tabResources.Controls.Add(this.tpCancellationLetter);
this.tabResources.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabResources.Location = new System.Drawing.Point(0, 0);
this.tabResources.Name = "tabResources";
this.tabResources.SelectedIndex = 0;
this.tabResources.Size = new System.Drawing.Size(498, 344);
this.tabResources.TabIndex = 10;
this.tabResources.SelectedIndexChanged += new System.EventHandler(this.tabResources_SelectedIndexChanged);
//
// tpRPMSLink
//
this.tpRPMSLink.Controls.Add(this.label11);
this.tpRPMSLink.Controls.Add(this.label5);
this.tpRPMSLink.Controls.Add(this.cboTimeInterval);
this.tpRPMSLink.Controls.Add(this.chkInactivate);
this.tpRPMSLink.Controls.Add(this.grpRPMSClinicLink);
this.tpRPMSLink.Controls.Add(this.label1);
this.tpRPMSLink.Controls.Add(this.txtResourceName);
this.tpRPMSLink.Location = new System.Drawing.Point(4, 22);
this.tpRPMSLink.Name = "tpRPMSLink";
this.tpRPMSLink.Size = new System.Drawing.Size(490, 318);
this.tpRPMSLink.TabIndex = 0;
this.tpRPMSLink.Text = "Resource Link";
//
// label11
//
this.label11.Location = new System.Drawing.Point(328, 40);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(80, 16);
this.label11.TabIndex = 52;
this.label11.Text = "minutes.";
//
// label5
//
this.label5.Location = new System.Drawing.Point(192, 40);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(64, 16);
this.label5.TabIndex = 51;
this.label5.Text = "Time Scale:";
//
// cboTimeInterval
//
this.cboTimeInterval.Items.AddRange(new object[] {
"5",
"10",
"15",
"20",
"30",
"60"});
this.cboTimeInterval.Location = new System.Drawing.Point(256, 38);
this.cboTimeInterval.MaxDropDownItems = 6;
this.cboTimeInterval.Name = "cboTimeInterval";
this.cboTimeInterval.Size = new System.Drawing.Size(64, 21);
this.cboTimeInterval.TabIndex = 2;
//
// chkInactivate
//
this.chkInactivate.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
this.chkInactivate.Location = new System.Drawing.Point(80, 40);
this.chkInactivate.Name = "chkInactivate";
this.chkInactivate.Size = new System.Drawing.Size(72, 16);
this.chkInactivate.TabIndex = 1;
this.chkInactivate.Text = "Inactive:";
//
// grpRPMSClinicLink
//
this.grpRPMSClinicLink.Controls.Add(this.lblReactivateDate);
this.grpRPMSClinicLink.Controls.Add(this.label10);
this.grpRPMSClinicLink.Controls.Add(this.lblInactivateDate);
this.grpRPMSClinicLink.Controls.Add(this.label8);
this.grpRPMSClinicLink.Controls.Add(this.lblClinicCode);
this.grpRPMSClinicLink.Controls.Add(this.label6);
this.grpRPMSClinicLink.Controls.Add(this.lblProvider);
this.grpRPMSClinicLink.Controls.Add(this.label7);
this.grpRPMSClinicLink.Controls.Add(this.lblVisitServiceCategory);
this.grpRPMSClinicLink.Controls.Add(this.label3);
this.grpRPMSClinicLink.Controls.Add(this.lblCreateVisit);
this.grpRPMSClinicLink.Controls.Add(this.label2);
this.grpRPMSClinicLink.Controls.Add(this.label4);
this.grpRPMSClinicLink.Controls.Add(this.cboRPMSClinic);
this.grpRPMSClinicLink.Location = new System.Drawing.Point(32, 88);
this.grpRPMSClinicLink.Name = "grpRPMSClinicLink";
this.grpRPMSClinicLink.Size = new System.Drawing.Size(384, 208);
this.grpRPMSClinicLink.TabIndex = 48;
this.grpRPMSClinicLink.TabStop = false;
this.grpRPMSClinicLink.Text = "VistA Clinic Link";
//
// lblReactivateDate
//
this.lblReactivateDate.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblReactivateDate.Location = new System.Drawing.Point(176, 168);
this.lblReactivateDate.Name = "lblReactivateDate";
this.lblReactivateDate.Size = new System.Drawing.Size(176, 16);
this.lblReactivateDate.TabIndex = 57;
//
// label10
//
this.label10.Location = new System.Drawing.Point(56, 168);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(112, 16);
this.label10.TabIndex = 56;
this.label10.Text = "Reactivate Date:";
this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblInactivateDate
//
this.lblInactivateDate.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblInactivateDate.Location = new System.Drawing.Point(176, 144);
this.lblInactivateDate.Name = "lblInactivateDate";
this.lblInactivateDate.Size = new System.Drawing.Size(176, 16);
this.lblInactivateDate.TabIndex = 55;
//
// label8
//
this.label8.Location = new System.Drawing.Point(48, 144);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(120, 16);
this.label8.TabIndex = 54;
this.label8.Text = "Inactivate Date:";
this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblClinicCode
//
this.lblClinicCode.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblClinicCode.Location = new System.Drawing.Point(176, 120);
this.lblClinicCode.Name = "lblClinicCode";
this.lblClinicCode.Size = new System.Drawing.Size(176, 16);
this.lblClinicCode.TabIndex = 53;
//
// label6
//
this.label6.Location = new System.Drawing.Point(96, 120);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(72, 16);
this.label6.TabIndex = 52;
this.label6.Text = "Clinic Code:";
this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblProvider
//
this.lblProvider.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblProvider.Location = new System.Drawing.Point(176, 96);
this.lblProvider.Name = "lblProvider";
this.lblProvider.Size = new System.Drawing.Size(176, 16);
this.lblProvider.TabIndex = 51;
//
// label7
//
this.label7.Location = new System.Drawing.Point(104, 96);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(64, 16);
this.label7.TabIndex = 50;
this.label7.Text = "Provider:";
this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblVisitServiceCategory
//
this.lblVisitServiceCategory.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblVisitServiceCategory.Location = new System.Drawing.Point(176, 72);
this.lblVisitServiceCategory.Name = "lblVisitServiceCategory";
this.lblVisitServiceCategory.Size = new System.Drawing.Size(176, 16);
this.lblVisitServiceCategory.TabIndex = 49;
//
// label3
//
this.label3.Location = new System.Drawing.Point(48, 72);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(120, 16);
this.label3.TabIndex = 48;
this.label3.Text = "Visit Sevice Category:";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblCreateVisit
//
this.lblCreateVisit.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblCreateVisit.Location = new System.Drawing.Point(176, 48);
this.lblCreateVisit.Name = "lblCreateVisit";
this.lblCreateVisit.Size = new System.Drawing.Size(40, 16);
this.lblCreateVisit.TabIndex = 47;
//
// label2
//
this.label2.Location = new System.Drawing.Point(32, 48);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(136, 16);
this.label2.TabIndex = 46;
this.label2.Text = "Create Visit at Check-In?";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label4
//
this.label4.Location = new System.Drawing.Point(32, 18);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(72, 16);
this.label4.TabIndex = 45;
this.label4.Text = "VistA Clinic:";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// cboRPMSClinic
//
this.cboRPMSClinic.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.cboRPMSClinic.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.cboRPMSClinic.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboRPMSClinic.Location = new System.Drawing.Point(112, 16);
this.cboRPMSClinic.Name = "cboRPMSClinic";
this.cboRPMSClinic.Size = new System.Drawing.Size(256, 21);
this.cboRPMSClinic.TabIndex = 3;
//
// label1
//
this.label1.Location = new System.Drawing.Point(36, 11);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(96, 16);
this.label1.TabIndex = 47;
this.label1.Text = "Resource Name:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// txtResourceName
//
this.txtResourceName.Location = new System.Drawing.Point(140, 11);
this.txtResourceName.MaxLength = 30;
this.txtResourceName.Name = "txtResourceName";
this.txtResourceName.Size = new System.Drawing.Size(256, 20);
this.txtResourceName.TabIndex = 0;
//
// tpLetter
//
this.tpLetter.Controls.Add(this.label9);
this.tpLetter.Controls.Add(this.txtLetter);
this.tpLetter.Location = new System.Drawing.Point(4, 22);
this.tpLetter.Name = "tpLetter";
this.tpLetter.Size = new System.Drawing.Size(490, 318);
this.tpLetter.TabIndex = 1;
this.tpLetter.Text = "Reminder Letter";
//
// label9
//
this.label9.Location = new System.Drawing.Point(32, 24);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(416, 32);
this.label9.TabIndex = 1;
this.label9.Text = "Enter the text which will appear on reminder letters sent to patients with appoin" +
"tments in this clinic. Use CTRL+Enter to start a new line.";
//
// txtLetter
//
this.txtLetter.Location = new System.Drawing.Point(32, 72);
this.txtLetter.Multiline = true;
this.txtLetter.Name = "txtLetter";
this.txtLetter.Size = new System.Drawing.Size(416, 216);
this.txtLetter.TabIndex = 20;
this.txtLetter.Text = "Dear Patient,\r\n\r\nThis letter is to remind you that you have the appointments list" +
"ed below.\r\n\r\nPlease contact us at 555-1234 if you are unable to keep this appoin" +
"tment.\r\n\r\nThank you,\r\n\r\nThe Clinic";
//
// tpRebookLetter
//
this.tpRebookLetter.Controls.Add(this.label12);
this.tpRebookLetter.Controls.Add(this.txtRebookLetter);
this.tpRebookLetter.Location = new System.Drawing.Point(4, 22);
this.tpRebookLetter.Name = "tpRebookLetter";
this.tpRebookLetter.Size = new System.Drawing.Size(490, 318);
this.tpRebookLetter.TabIndex = 2;
this.tpRebookLetter.Text = "Rebook Letter";
//
// label12
//
this.label12.Location = new System.Drawing.Point(37, 27);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(416, 32);
this.label12.TabIndex = 21;
this.label12.Text = "Enter the text which will appear on rebook letters sent to patients with appointm" +
"ents in this clinic. Use CTRL+Enter to start a new line.";
//
// txtRebookLetter
//
this.txtRebookLetter.Location = new System.Drawing.Point(37, 75);
this.txtRebookLetter.Multiline = true;
this.txtRebookLetter.Name = "txtRebookLetter";
this.txtRebookLetter.Size = new System.Drawing.Size(416, 216);
this.txtRebookLetter.TabIndex = 22;
this.txtRebookLetter.Text = resources.GetString("txtRebookLetter.Text");
//
// tpCancellationLetter
//
this.tpCancellationLetter.Controls.Add(this.label13);
this.tpCancellationLetter.Controls.Add(this.txtCancellationLetter);
this.tpCancellationLetter.Location = new System.Drawing.Point(4, 22);
this.tpCancellationLetter.Name = "tpCancellationLetter";
this.tpCancellationLetter.Size = new System.Drawing.Size(490, 318);
this.tpCancellationLetter.TabIndex = 3;
this.tpCancellationLetter.Text = "Cancellation Letter";
//
// label13
//
this.label13.Location = new System.Drawing.Point(37, 27);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(416, 32);
this.label13.TabIndex = 21;
this.label13.Text = "Enter the text which will appear on cancellation letters sent to patients with ap" +
"pointments in this clinic. Use CTRL+Enter to start a new line.";
//
// txtCancellationLetter
//
this.txtCancellationLetter.Location = new System.Drawing.Point(37, 75);
this.txtCancellationLetter.Multiline = true;
this.txtCancellationLetter.Name = "txtCancellationLetter";
this.txtCancellationLetter.Size = new System.Drawing.Size(416, 216);
this.txtCancellationLetter.TabIndex = 22;
this.txtCancellationLetter.Text = resources.GetString("txtCancellationLetter.Text");
//
// DResource
//
this.AcceptButton = this.cmdOK;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.CancelButton = this.cmdCancel;
this.ClientSize = new System.Drawing.Size(498, 464);
this.Controls.Add(this.tabResources);
this.Controls.Add(this.pnlDescription);
this.Controls.Add(this.pnlOkCancel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "DResource";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Manage Resource";
this.Activated += new System.EventHandler(this.DResource_Activated);
this.pnlOkCancel.ResumeLayout(false);
this.pnlDescription.ResumeLayout(false);
this.grpDescription.ResumeLayout(false);
this.tabResources.ResumeLayout(false);
this.tpRPMSLink.ResumeLayout(false);
this.tpRPMSLink.PerformLayout();
this.grpRPMSClinicLink.ResumeLayout(false);
this.tpLetter.ResumeLayout(false);
this.tpLetter.PerformLayout();
this.tpRebookLetter.ResumeLayout(false);
this.tpRebookLetter.PerformLayout();
this.tpCancellationLetter.ResumeLayout(false);
this.tpCancellationLetter.PerformLayout();
this.ResumeLayout(false);
}
#endregion

View File

@ -3,7 +3,7 @@
<!--
Microsoft ResX Schema
Version 1.3
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
@ -14,16 +14,17 @@
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">1.3</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1">this is my long string</data>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
[base64 mime encoded serialized .NET Framework object]
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
[base64 mime encoded string representing a byte array form of the .NET Framework object]
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
@ -35,7 +36,7 @@
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used forserialized objects, and tells the
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
@ -45,7 +46,7 @@
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
@ -59,18 +60,37 @@
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
@ -89,465 +109,37 @@
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="pnlOkCancel.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="pnlOkCancel.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="pnlOkCancel.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="pnlOkCancel.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="pnlOkCancel.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="pnlOkCancel.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="cmdCancel.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="cmdCancel.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="cmdCancel.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="cmdOK.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="cmdOK.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="cmdOK.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="pnlDescription.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="pnlDescription.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="pnlDescription.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="pnlDescription.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="pnlDescription.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="pnlDescription.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="grpDescription.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="grpDescription.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="grpDescription.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="grpDescription.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="grpDescription.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="grpDescription.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblDescription.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="lblDescription.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblDescription.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tabResources.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="tabResources.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="tabResources.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="tabResources.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tabResources.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tabResources.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="tpRPMSLink.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="tpRPMSLink.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="tpRPMSLink.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="tpRPMSLink.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tpRPMSLink.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tpRPMSLink.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="label11.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label11.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label11.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label5.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label5.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label5.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="cboTimeInterval.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="cboTimeInterval.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="cboTimeInterval.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="chkInactivate.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="chkInactivate.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="chkInactivate.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="grpRPMSClinicLink.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="grpRPMSClinicLink.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="grpRPMSClinicLink.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="grpRPMSClinicLink.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="grpRPMSClinicLink.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="grpRPMSClinicLink.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblReactivateDate.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="lblReactivateDate.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblReactivateDate.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label10.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label10.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label10.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblInactivateDate.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="lblInactivateDate.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblInactivateDate.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label8.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label8.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label8.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblClinicCode.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="lblClinicCode.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblClinicCode.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label6.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label6.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label6.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblProvider.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="lblProvider.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblProvider.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label7.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label7.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label7.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblVisitServiceCategory.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="lblVisitServiceCategory.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblVisitServiceCategory.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label3.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label3.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label3.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblCreateVisit.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="lblCreateVisit.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblCreateVisit.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label2.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label2.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label2.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label4.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label4.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label4.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="cboRPMSClinic.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="cboRPMSClinic.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="cboRPMSClinic.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="txtResourceName.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="txtResourceName.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="txtResourceName.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tpLetter.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="tpLetter.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="tpLetter.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="tpLetter.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tpLetter.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tpLetter.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="label9.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label9.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label9.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="txtLetter.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="txtLetter.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="txtLetter.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tpRebookLetter.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="tpRebookLetter.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="tpRebookLetter.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="tpRebookLetter.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tpRebookLetter.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tpRebookLetter.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="label12.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label12.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label12.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="txtRebookLetter.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="txtRebookLetter.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="txtRebookLetter.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tpCancellationLetter.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="tpCancellationLetter.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="tpCancellationLetter.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="tpCancellationLetter.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tpCancellationLetter.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="tpCancellationLetter.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="label13.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label13.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label13.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="txtCancellationLetter.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="txtCancellationLetter.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="txtCancellationLetter.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="$this.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>(Default)</value>
</data>
<data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="$this.Localizable" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="$this.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="$this.Name">
<value>DResource</value>
</data>
<data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="$this.TrayHeight" type="System.Int32, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>80</value>
</data>
<data name="$this.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
<data name="lblDescription.Text" xml:space="preserve">
<value>Resources may optionally be linked to a VistA Clinic. To define the parameters for an VistA clinic, you must log into VistA and use the VistA Scheduling Supervisor's menus. The Time Interval field controls the increment of time used on the Calendar display. The Letter Text tab contains the body text of reminder letters for this clinic.</value>
</data>
<data name="txtRebookLetter.Text" xml:space="preserve">
<value>Dear Patient,
This letter is to inform you that we have changed the appointments listed below.
Please contact us at 555-1234 if you are unable to keep your appointment.
Thank you,
The Clinic</value>
</data>
<data name="txtCancellationLetter.Text" xml:space="preserve">
<value>Dear Patient,
This letter is to inform you that the appointments listed below have been cancelled.
Please contact us at 555-1234 if you have questions about your appointments.
Thank you,
The Clinic</value>
</data>
</root>

View File

@ -59,77 +59,77 @@ namespace IndianHealthService.ClinicalScheduling
/// </summary>
private void InitializeComponent()
{
this.pnlPageBottom = new System.Windows.Forms.Panel();
this.cmdCancel = new System.Windows.Forms.Button();
this.cmdOK = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.cboResource = new System.Windows.Forms.ComboBox();
this.pnlPageBottom.SuspendLayout();
this.SuspendLayout();
//
// pnlPageBottom
//
this.pnlPageBottom.Controls.AddRange(new System.Windows.Forms.Control[] {
this.cmdCancel,
this.cmdOK});
this.pnlPageBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlPageBottom.Location = new System.Drawing.Point(0, 112);
this.pnlPageBottom.Name = "pnlPageBottom";
this.pnlPageBottom.Size = new System.Drawing.Size(456, 40);
this.pnlPageBottom.TabIndex = 5;
//
// cmdCancel
//
this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cmdCancel.Location = new System.Drawing.Point(376, 8);
this.cmdCancel.Name = "cmdCancel";
this.cmdCancel.Size = new System.Drawing.Size(56, 24);
this.cmdCancel.TabIndex = 2;
this.cmdCancel.Text = "Cancel";
//
// cmdOK
//
this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.cmdOK.Location = new System.Drawing.Point(296, 8);
this.cmdOK.Name = "cmdOK";
this.cmdOK.Size = new System.Drawing.Size(64, 24);
this.cmdOK.TabIndex = 1;
this.cmdOK.Text = "OK";
this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
//
// label1
//
this.label1.Location = new System.Drawing.Point(40, 40);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(96, 16);
this.label1.TabIndex = 8;
this.label1.Text = "Select Resource:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// cboResource
//
this.cboResource.Location = new System.Drawing.Point(144, 40);
this.cboResource.Name = "cboResource";
this.cboResource.Size = new System.Drawing.Size(248, 21);
this.cboResource.TabIndex = 7;
this.cboResource.Text = "cboResource";
//
// DResourceGroupItem
//
this.AcceptButton = this.cmdOK;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.CancelButton = this.cmdCancel;
this.ClientSize = new System.Drawing.Size(456, 152);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.label1,
this.cboResource,
this.pnlPageBottom});
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "DResourceGroupItem";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "DResourceGroupItem";
this.pnlPageBottom.ResumeLayout(false);
this.ResumeLayout(false);
this.pnlPageBottom = new System.Windows.Forms.Panel();
this.cmdCancel = new System.Windows.Forms.Button();
this.cmdOK = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.cboResource = new System.Windows.Forms.ComboBox();
this.pnlPageBottom.SuspendLayout();
this.SuspendLayout();
//
// pnlPageBottom
//
this.pnlPageBottom.Controls.Add(this.cmdCancel);
this.pnlPageBottom.Controls.Add(this.cmdOK);
this.pnlPageBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlPageBottom.Location = new System.Drawing.Point(0, 112);
this.pnlPageBottom.Name = "pnlPageBottom";
this.pnlPageBottom.Size = new System.Drawing.Size(456, 40);
this.pnlPageBottom.TabIndex = 5;
//
// cmdCancel
//
this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cmdCancel.Location = new System.Drawing.Point(376, 8);
this.cmdCancel.Name = "cmdCancel";
this.cmdCancel.Size = new System.Drawing.Size(56, 24);
this.cmdCancel.TabIndex = 2;
this.cmdCancel.Text = "Cancel";
//
// cmdOK
//
this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.cmdOK.Location = new System.Drawing.Point(296, 8);
this.cmdOK.Name = "cmdOK";
this.cmdOK.Size = new System.Drawing.Size(64, 24);
this.cmdOK.TabIndex = 1;
this.cmdOK.Text = "OK";
this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
//
// label1
//
this.label1.Location = new System.Drawing.Point(40, 40);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(96, 16);
this.label1.TabIndex = 8;
this.label1.Text = "Select Resource:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// cboResource
//
this.cboResource.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.cboResource.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.cboResource.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboResource.Location = new System.Drawing.Point(144, 40);
this.cboResource.Name = "cboResource";
this.cboResource.Size = new System.Drawing.Size(248, 21);
this.cboResource.TabIndex = 7;
//
// DResourceGroupItem
//
this.AcceptButton = this.cmdOK;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.CancelButton = this.cmdCancel;
this.ClientSize = new System.Drawing.Size(456, 152);
this.Controls.Add(this.label1);
this.Controls.Add(this.cboResource);
this.Controls.Add(this.pnlPageBottom);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "DResourceGroupItem";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "DResourceGroupItem";
this.pnlPageBottom.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
@ -150,7 +150,7 @@ namespace IndianHealthService.ClinicalScheduling
//Datasource the RESOURCE combo box
DataTable dtResource = dsGlobal.Tables["Resources"];
DataView dvResource = new DataView(dtResource);
dvResource.Sort = "RESOURCE_NAME ASC";
cboResource.DataSource = dvResource;
cboResource.DisplayMember = "RESOURCE_NAME";

View File

@ -1,75 +1,96 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">1.3</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1">this is my long string</data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
[base64 mime encoded serialized .NET Framework object]
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
[base64 mime encoded string representing a byte array form of the .NET Framework object]
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
@ -88,18 +109,12 @@
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="pnlPageBottom.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="$this.Name">
<value>DResourceGroupItem</value>
</data>
</root>

View File

@ -64,150 +64,151 @@ namespace IndianHealthService.ClinicalScheduling
/// </summary>
private void InitializeComponent()
{
this.cboScheduleUser = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.pnlPageBottom = new System.Windows.Forms.Panel();
this.cmdCancel = new System.Windows.Forms.Button();
this.cmdOK = new System.Windows.Forms.Button();
this.pnlDescription = new System.Windows.Forms.Panel();
this.grpDescriptionResourceGroup = new System.Windows.Forms.GroupBox();
this.lblDescriptionResourceGroup = new System.Windows.Forms.Label();
this.chkModifySchedule = new System.Windows.Forms.CheckBox();
this.chkOverbook = new System.Windows.Forms.CheckBox();
this.chkAppointments = new System.Windows.Forms.CheckBox();
this.pnlPageBottom.SuspendLayout();
this.pnlDescription.SuspendLayout();
this.grpDescriptionResourceGroup.SuspendLayout();
this.SuspendLayout();
//
// cboScheduleUser
//
this.cboScheduleUser.Location = new System.Drawing.Point(144, 32);
this.cboScheduleUser.Name = "cboScheduleUser";
this.cboScheduleUser.Size = new System.Drawing.Size(248, 21);
this.cboScheduleUser.TabIndex = 0;
this.cboScheduleUser.Text = "cboScheduleUser";
this.cboScheduleUser.SelectedIndexChanged += new System.EventHandler(this.cboScheduleUser_SelectedIndexChanged);
//
// label1
//
this.label1.Location = new System.Drawing.Point(16, 32);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(120, 16);
this.label1.TabIndex = 1;
this.label1.Text = "Select Resource User:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// pnlPageBottom
//
this.pnlPageBottom.Controls.Add(this.cmdCancel);
this.pnlPageBottom.Controls.Add(this.cmdOK);
this.pnlPageBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlPageBottom.Location = new System.Drawing.Point(0, 254);
this.pnlPageBottom.Name = "pnlPageBottom";
this.pnlPageBottom.Size = new System.Drawing.Size(448, 40);
this.pnlPageBottom.TabIndex = 4;
//
// cmdCancel
//
this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cmdCancel.Location = new System.Drawing.Point(376, 8);
this.cmdCancel.Name = "cmdCancel";
this.cmdCancel.Size = new System.Drawing.Size(56, 24);
this.cmdCancel.TabIndex = 2;
this.cmdCancel.Text = "Cancel";
//
// cmdOK
//
this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.cmdOK.Location = new System.Drawing.Point(296, 8);
this.cmdOK.Name = "cmdOK";
this.cmdOK.Size = new System.Drawing.Size(64, 24);
this.cmdOK.TabIndex = 1;
this.cmdOK.Text = "OK";
this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
//
// pnlDescription
//
this.pnlDescription.Controls.Add(this.grpDescriptionResourceGroup);
this.pnlDescription.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlDescription.Location = new System.Drawing.Point(0, 182);
this.pnlDescription.Name = "pnlDescription";
this.pnlDescription.Size = new System.Drawing.Size(448, 72);
this.pnlDescription.TabIndex = 5;
//
// grpDescriptionResourceGroup
//
this.grpDescriptionResourceGroup.Controls.Add(this.lblDescriptionResourceGroup);
this.grpDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill;
this.grpDescriptionResourceGroup.Location = new System.Drawing.Point(0, 0);
this.grpDescriptionResourceGroup.Name = "grpDescriptionResourceGroup";
this.grpDescriptionResourceGroup.Size = new System.Drawing.Size(448, 72);
this.grpDescriptionResourceGroup.TabIndex = 1;
this.grpDescriptionResourceGroup.TabStop = false;
this.grpDescriptionResourceGroup.Text = "Description";
//
// lblDescriptionResourceGroup
//
this.lblDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblDescriptionResourceGroup.Location = new System.Drawing.Point(3, 16);
this.lblDescriptionResourceGroup.Name = "lblDescriptionResourceGroup";
this.lblDescriptionResourceGroup.Size = new System.Drawing.Size(442, 53);
this.lblDescriptionResourceGroup.TabIndex = 0;
this.lblDescriptionResourceGroup.Text = "Use this panel to assign user access to Resources. Only users who have the BSDXZ" +
"MENU key in VistA will appear in the selection list. If Modify Schedule is check" +
"ed, then the user will be able to add and edit the resource\'s availability.";
//
// chkModifySchedule
//
this.chkModifySchedule.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
this.chkModifySchedule.Location = new System.Drawing.Point(96, 136);
this.chkModifySchedule.Name = "chkModifySchedule";
this.chkModifySchedule.Size = new System.Drawing.Size(152, 16);
this.chkModifySchedule.TabIndex = 7;
this.chkModifySchedule.Text = "Modify Clinic Availability:";
this.chkModifySchedule.CheckedChanged += new System.EventHandler(this.chkModifySchedule_CheckedChanged);
//
// chkOverbook
//
this.chkOverbook.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
this.chkOverbook.Location = new System.Drawing.Point(160, 104);
this.chkOverbook.Name = "chkOverbook";
this.chkOverbook.Size = new System.Drawing.Size(88, 16);
this.chkOverbook.TabIndex = 8;
this.chkOverbook.Text = "Overbook:";
this.chkOverbook.CheckedChanged += new System.EventHandler(this.chkOverbook_CheckedChanged);
//
// chkAppointments
//
this.chkAppointments.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
this.chkAppointments.Location = new System.Drawing.Point(40, 72);
this.chkAppointments.Name = "chkAppointments";
this.chkAppointments.Size = new System.Drawing.Size(208, 16);
this.chkAppointments.TabIndex = 9;
this.chkAppointments.Text = "Add, Edit and Delete appointments:";
this.chkAppointments.CheckedChanged += new System.EventHandler(this.chkAppointments_CheckedChanged);
//
// DResourceUser
//
this.AcceptButton = this.cmdOK;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.CancelButton = this.cmdCancel;
this.ClientSize = new System.Drawing.Size(448, 294);
this.Controls.Add(this.chkAppointments);
this.Controls.Add(this.chkOverbook);
this.Controls.Add(this.chkModifySchedule);
this.Controls.Add(this.pnlDescription);
this.Controls.Add(this.pnlPageBottom);
this.Controls.Add(this.label1);
this.Controls.Add(this.cboScheduleUser);
this.Name = "DResourceUser";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "DResourceUser";
this.pnlPageBottom.ResumeLayout(false);
this.pnlDescription.ResumeLayout(false);
this.grpDescriptionResourceGroup.ResumeLayout(false);
this.ResumeLayout(false);
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DResourceUser));
this.cboScheduleUser = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.pnlPageBottom = new System.Windows.Forms.Panel();
this.cmdCancel = new System.Windows.Forms.Button();
this.cmdOK = new System.Windows.Forms.Button();
this.pnlDescription = new System.Windows.Forms.Panel();
this.grpDescriptionResourceGroup = new System.Windows.Forms.GroupBox();
this.lblDescriptionResourceGroup = new System.Windows.Forms.Label();
this.chkModifySchedule = new System.Windows.Forms.CheckBox();
this.chkOverbook = new System.Windows.Forms.CheckBox();
this.chkAppointments = new System.Windows.Forms.CheckBox();
this.pnlPageBottom.SuspendLayout();
this.pnlDescription.SuspendLayout();
this.grpDescriptionResourceGroup.SuspendLayout();
this.SuspendLayout();
//
// cboScheduleUser
//
this.cboScheduleUser.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.cboScheduleUser.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.cboScheduleUser.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboScheduleUser.Location = new System.Drawing.Point(144, 32);
this.cboScheduleUser.Name = "cboScheduleUser";
this.cboScheduleUser.Size = new System.Drawing.Size(248, 21);
this.cboScheduleUser.TabIndex = 0;
this.cboScheduleUser.SelectedIndexChanged += new System.EventHandler(this.cboScheduleUser_SelectedIndexChanged);
//
// label1
//
this.label1.Location = new System.Drawing.Point(16, 32);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(120, 16);
this.label1.TabIndex = 1;
this.label1.Text = "Select Resource User:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// pnlPageBottom
//
this.pnlPageBottom.Controls.Add(this.cmdCancel);
this.pnlPageBottom.Controls.Add(this.cmdOK);
this.pnlPageBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlPageBottom.Location = new System.Drawing.Point(0, 254);
this.pnlPageBottom.Name = "pnlPageBottom";
this.pnlPageBottom.Size = new System.Drawing.Size(448, 40);
this.pnlPageBottom.TabIndex = 4;
//
// cmdCancel
//
this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cmdCancel.Location = new System.Drawing.Point(376, 8);
this.cmdCancel.Name = "cmdCancel";
this.cmdCancel.Size = new System.Drawing.Size(56, 24);
this.cmdCancel.TabIndex = 6;
this.cmdCancel.Text = "Cancel";
//
// cmdOK
//
this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.cmdOK.Location = new System.Drawing.Point(296, 8);
this.cmdOK.Name = "cmdOK";
this.cmdOK.Size = new System.Drawing.Size(64, 24);
this.cmdOK.TabIndex = 5;
this.cmdOK.Text = "OK";
this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
//
// pnlDescription
//
this.pnlDescription.Controls.Add(this.grpDescriptionResourceGroup);
this.pnlDescription.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlDescription.Location = new System.Drawing.Point(0, 182);
this.pnlDescription.Name = "pnlDescription";
this.pnlDescription.Size = new System.Drawing.Size(448, 72);
this.pnlDescription.TabIndex = 5;
//
// grpDescriptionResourceGroup
//
this.grpDescriptionResourceGroup.Controls.Add(this.lblDescriptionResourceGroup);
this.grpDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill;
this.grpDescriptionResourceGroup.Location = new System.Drawing.Point(0, 0);
this.grpDescriptionResourceGroup.Name = "grpDescriptionResourceGroup";
this.grpDescriptionResourceGroup.Size = new System.Drawing.Size(448, 72);
this.grpDescriptionResourceGroup.TabIndex = 1;
this.grpDescriptionResourceGroup.TabStop = false;
this.grpDescriptionResourceGroup.Text = "Description";
//
// lblDescriptionResourceGroup
//
this.lblDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblDescriptionResourceGroup.Location = new System.Drawing.Point(3, 16);
this.lblDescriptionResourceGroup.Name = "lblDescriptionResourceGroup";
this.lblDescriptionResourceGroup.Size = new System.Drawing.Size(442, 53);
this.lblDescriptionResourceGroup.TabIndex = 0;
this.lblDescriptionResourceGroup.Text = resources.GetString("lblDescriptionResourceGroup.Text");
//
// chkModifySchedule
//
this.chkModifySchedule.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
this.chkModifySchedule.Location = new System.Drawing.Point(96, 136);
this.chkModifySchedule.Name = "chkModifySchedule";
this.chkModifySchedule.Size = new System.Drawing.Size(152, 16);
this.chkModifySchedule.TabIndex = 4;
this.chkModifySchedule.Text = "Modify Clinic Availability:";
this.chkModifySchedule.CheckedChanged += new System.EventHandler(this.chkModifySchedule_CheckedChanged);
//
// chkOverbook
//
this.chkOverbook.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
this.chkOverbook.Location = new System.Drawing.Point(160, 104);
this.chkOverbook.Name = "chkOverbook";
this.chkOverbook.Size = new System.Drawing.Size(88, 16);
this.chkOverbook.TabIndex = 3;
this.chkOverbook.Text = "Overbook:";
this.chkOverbook.CheckedChanged += new System.EventHandler(this.chkOverbook_CheckedChanged);
//
// chkAppointments
//
this.chkAppointments.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
this.chkAppointments.Location = new System.Drawing.Point(40, 72);
this.chkAppointments.Name = "chkAppointments";
this.chkAppointments.Size = new System.Drawing.Size(208, 16);
this.chkAppointments.TabIndex = 2;
this.chkAppointments.Text = "Add, Edit and Delete appointments:";
this.chkAppointments.CheckedChanged += new System.EventHandler(this.chkAppointments_CheckedChanged);
//
// DResourceUser
//
this.AcceptButton = this.cmdOK;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.CancelButton = this.cmdCancel;
this.ClientSize = new System.Drawing.Size(448, 294);
this.Controls.Add(this.chkAppointments);
this.Controls.Add(this.chkOverbook);
this.Controls.Add(this.chkModifySchedule);
this.Controls.Add(this.pnlDescription);
this.Controls.Add(this.pnlPageBottom);
this.Controls.Add(this.label1);
this.Controls.Add(this.cboScheduleUser);
this.Name = "DResourceUser";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "DResourceUser";
this.pnlPageBottom.ResumeLayout(false);
this.pnlDescription.ResumeLayout(false);
this.grpDescriptionResourceGroup.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion

View File

@ -3,7 +3,7 @@
<!--
Microsoft ResX Schema
Version 1.3
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
@ -14,16 +14,17 @@
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">1.3</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1">this is my long string</data>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
[base64 mime encoded serialized .NET Framework object]
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
[base64 mime encoded string representing a byte array form of the .NET Framework object]
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
@ -35,7 +36,7 @@
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used forserialized objects, and tells the
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
@ -45,7 +46,7 @@
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
@ -59,18 +60,37 @@
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
@ -89,168 +109,15 @@
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="cboScheduleUser.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="cboScheduleUser.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="cboScheduleUser.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="label1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="label1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="pnlPageBottom.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="pnlPageBottom.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="pnlPageBottom.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="pnlPageBottom.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="pnlPageBottom.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="pnlPageBottom.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="cmdCancel.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="cmdCancel.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="cmdCancel.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="cmdOK.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="cmdOK.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="cmdOK.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="pnlDescription.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="pnlDescription.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="pnlDescription.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="pnlDescription.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="pnlDescription.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="pnlDescription.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="grpDescriptionResourceGroup.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="grpDescriptionResourceGroup.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="grpDescriptionResourceGroup.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="grpDescriptionResourceGroup.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="grpDescriptionResourceGroup.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="grpDescriptionResourceGroup.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblDescriptionResourceGroup.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="lblDescriptionResourceGroup.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="lblDescriptionResourceGroup.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="chkModifySchedule.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="chkModifySchedule.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="chkModifySchedule.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="chkOverbook.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="chkOverbook.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="chkOverbook.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="chkAppointments.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="chkAppointments.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="chkAppointments.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="$this.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="$this.Name">
<value>DResourceUser</value>
</data>
<data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>(Default)</value>
</data>
<data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="$this.Localizable" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
<data name="$this.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
<data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="$this.TrayHeight" type="System.Int32, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>80</value>
</data>
<data name="$this.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
<data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
<data name="lblDescriptionResourceGroup.Text" xml:space="preserve">
<value>Use this panel to assign user access to Resources. Only users who have the BSDXZMENU key in VistA will appear in the selection list. If Modify Schedule is checked, then the user will be able to add and edit the resource's availability.</value>
</data>
</root>