Dialogs now say 'VISTA' instead of 'RPMS'.
Updated AssemblyInfo.cs
This commit is contained in:
parent
74124836bf
commit
b4e510e292
|
@ -7,12 +7,12 @@ using System.Runtime.InteropServices;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
//
|
||||
[assembly: AssemblyTitle("BMXNet20")]
|
||||
[assembly: AssemblyDescription("ADO.NET 2.0 Data Provider for RPMS")]
|
||||
[assembly: AssemblyTitle("BMXNet21")]
|
||||
[assembly: AssemblyDescription("ADO.NET 2.0 Data Provider for VISTA")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Indian Health Service")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("")]
|
||||
[assembly: AssemblyCopyright("")]
|
||||
[assembly: AssemblyCopyright("(None)")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
|
@ -27,7 +27,7 @@ using System.Runtime.InteropServices;
|
|||
// You can specify all the values or you can default the Revision and Build Numbers
|
||||
// by using the '*' as shown below:
|
||||
|
||||
[assembly: AssemblyVersion("2.0.*")]
|
||||
[assembly: AssemblyVersion("2.1.*")]
|
||||
|
||||
//
|
||||
// In order to sign your assembly you must specify a key to use. Refer to the
|
||||
|
@ -57,5 +57,5 @@ using System.Runtime.InteropServices;
|
|||
//[assembly: AssemblyDelaySign(false)]
|
||||
//[assembly: AssemblyKeyFile("")]
|
||||
//[assembly: AssemblyKeyName("")]
|
||||
[assembly: AssemblyFileVersionAttribute("2.0.0.0")]
|
||||
[assembly: AssemblyFileVersionAttribute("2.1.1.0")]
|
||||
[assembly: ComVisibleAttribute(false)]
|
||||
|
|
|
@ -38,135 +38,134 @@ namespace IndianHealthService.BMXNet
|
|||
/// </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.pnlDescription = new System.Windows.Forms.Panel();
|
||||
this.grpDescriptionResourceGroup = new System.Windows.Forms.GroupBox();
|
||||
this.lblDescriptionResourceGroup = new System.Windows.Forms.Label();
|
||||
this.txtVerify = new System.Windows.Forms.TextBox();
|
||||
this.txtAccess = new System.Windows.Forms.TextBox();
|
||||
this.label2 = new System.Windows.Forms.Label();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.pnlPageBottom.SuspendLayout();
|
||||
this.pnlDescription.SuspendLayout();
|
||||
this.grpDescriptionResourceGroup.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, 174);
|
||||
this.pnlPageBottom.Name = "pnlPageBottom";
|
||||
this.pnlPageBottom.Size = new System.Drawing.Size(448, 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 = 4;
|
||||
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 = 3;
|
||||
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, 102);
|
||||
this.pnlDescription.Name = "pnlDescription";
|
||||
this.pnlDescription.Size = new System.Drawing.Size(448, 72);
|
||||
this.pnlDescription.TabIndex = 7;
|
||||
//
|
||||
// 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 enter the Access and Verify codes that you use to log in to the" +
|
||||
" RPMS server. ";
|
||||
//
|
||||
// txtVerify
|
||||
//
|
||||
this.txtVerify.Location = new System.Drawing.Point(160, 56);
|
||||
this.txtVerify.Name = "txtVerify";
|
||||
this.txtVerify.PasswordChar = '*';
|
||||
this.txtVerify.Size = new System.Drawing.Size(160, 20);
|
||||
this.txtVerify.TabIndex = 2;
|
||||
this.txtVerify.Text = "";
|
||||
//
|
||||
// txtAccess
|
||||
//
|
||||
this.txtAccess.Location = new System.Drawing.Point(160, 24);
|
||||
this.txtAccess.Name = "txtAccess";
|
||||
this.txtAccess.PasswordChar = '*';
|
||||
this.txtAccess.Size = new System.Drawing.Size(160, 20);
|
||||
this.txtAccess.TabIndex = 1;
|
||||
this.txtAccess.Text = "";
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Location = new System.Drawing.Point(24, 56);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(128, 16);
|
||||
this.label2.TabIndex = 12;
|
||||
this.label2.Text = "RPMS Verify Code:";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Location = new System.Drawing.Point(24, 24);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(128, 16);
|
||||
this.label1.TabIndex = 11;
|
||||
this.label1.Text = "RPMS Access Code:";
|
||||
//
|
||||
// DLoginInfo
|
||||
//
|
||||
this.AcceptButton = this.cmdOK;
|
||||
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
|
||||
this.ClientSize = new System.Drawing.Size(448, 214);
|
||||
this.Controls.Add(this.txtVerify);
|
||||
this.Controls.Add(this.txtAccess);
|
||||
this.Controls.Add(this.label2);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.pnlDescription);
|
||||
this.Controls.Add(this.pnlPageBottom);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||
this.Name = "DLoginInfo";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "RPMS Login";
|
||||
this.Load += new System.EventHandler(this.DLoginInfo_Load);
|
||||
this.Activated += new System.EventHandler(this.DLoginInfo_Activated);
|
||||
this.pnlPageBottom.ResumeLayout(false);
|
||||
this.pnlDescription.ResumeLayout(false);
|
||||
this.grpDescriptionResourceGroup.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.pnlDescription = new System.Windows.Forms.Panel();
|
||||
this.grpDescriptionResourceGroup = new System.Windows.Forms.GroupBox();
|
||||
this.lblDescriptionResourceGroup = new System.Windows.Forms.Label();
|
||||
this.txtVerify = new System.Windows.Forms.TextBox();
|
||||
this.txtAccess = new System.Windows.Forms.TextBox();
|
||||
this.label2 = new System.Windows.Forms.Label();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.pnlPageBottom.SuspendLayout();
|
||||
this.pnlDescription.SuspendLayout();
|
||||
this.grpDescriptionResourceGroup.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, 174);
|
||||
this.pnlPageBottom.Name = "pnlPageBottom";
|
||||
this.pnlPageBottom.Size = new System.Drawing.Size(448, 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 = 4;
|
||||
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 = 3;
|
||||
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, 102);
|
||||
this.pnlDescription.Name = "pnlDescription";
|
||||
this.pnlDescription.Size = new System.Drawing.Size(448, 72);
|
||||
this.pnlDescription.TabIndex = 7;
|
||||
//
|
||||
// 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 enter the Access and Verify codes that you use to log in to the" +
|
||||
" VISTA server. ";
|
||||
//
|
||||
// txtVerify
|
||||
//
|
||||
this.txtVerify.Location = new System.Drawing.Point(160, 56);
|
||||
this.txtVerify.Name = "txtVerify";
|
||||
this.txtVerify.PasswordChar = '*';
|
||||
this.txtVerify.Size = new System.Drawing.Size(160, 20);
|
||||
this.txtVerify.TabIndex = 2;
|
||||
//
|
||||
// txtAccess
|
||||
//
|
||||
this.txtAccess.Location = new System.Drawing.Point(160, 24);
|
||||
this.txtAccess.Name = "txtAccess";
|
||||
this.txtAccess.PasswordChar = '*';
|
||||
this.txtAccess.Size = new System.Drawing.Size(160, 20);
|
||||
this.txtAccess.TabIndex = 1;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Location = new System.Drawing.Point(24, 56);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(128, 16);
|
||||
this.label2.TabIndex = 12;
|
||||
this.label2.Text = "VISTA Verify Code:";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Location = new System.Drawing.Point(24, 24);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(128, 16);
|
||||
this.label1.TabIndex = 11;
|
||||
this.label1.Text = "VISTA Access Code:";
|
||||
//
|
||||
// DLoginInfo
|
||||
//
|
||||
this.AcceptButton = this.cmdOK;
|
||||
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
|
||||
this.ClientSize = new System.Drawing.Size(448, 214);
|
||||
this.Controls.Add(this.txtVerify);
|
||||
this.Controls.Add(this.txtAccess);
|
||||
this.Controls.Add(this.label2);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.pnlDescription);
|
||||
this.Controls.Add(this.pnlPageBottom);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||
this.Name = "DLoginInfo";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "VISTA Login";
|
||||
this.Load += new System.EventHandler(this.DLoginInfo_Load);
|
||||
this.Activated += new System.EventHandler(this.DLoginInfo_Activated);
|
||||
this.pnlPageBottom.ResumeLayout(false);
|
||||
this.pnlDescription.ResumeLayout(false);
|
||||
this.grpDescriptionResourceGroup.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
#endregion
|
||||
|
|
|
@ -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,159 +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.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="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="txtVerify.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>Private</value>
|
||||
</data>
|
||||
<data name="txtVerify.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</data>
|
||||
<data name="txtVerify.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>Private</value>
|
||||
</data>
|
||||
<data name="txtAccess.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>Private</value>
|
||||
</data>
|
||||
<data name="txtAccess.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</data>
|
||||
<data name="txtAccess.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="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="$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>DLoginInfo</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>
|
||||
</root>
|
|
@ -145,7 +145,7 @@ namespace IndianHealthService.BMXNet
|
|||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(128, 16);
|
||||
this.label1.TabIndex = 7;
|
||||
this.label1.Text = "RPMS Server Address:";
|
||||
this.label1.Text = "VISTA Server Address:";
|
||||
//
|
||||
// label2
|
||||
//
|
||||
|
@ -200,7 +200,7 @@ namespace IndianHealthService.BMXNet
|
|||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||
this.Name = "DServerInfo";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "RPMS Server Address";
|
||||
this.Text = "VISTA Server Address";
|
||||
this.Load += new System.EventHandler(this.DServerInfo_Load);
|
||||
this.pnlPageBottom.ResumeLayout(false);
|
||||
this.pnlDescription.ResumeLayout(false);
|
||||
|
|
|
@ -118,6 +118,6 @@
|
|||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="lblDescriptionResourceGroup.Text" xml:space="preserve">
|
||||
<value>Use this panel to specify the internet address and port of the RPMS server. The RPMS Server Port refers to the IP Port to which the VA RPC Broker is assigned on the RPMS Server. You may optionally specify the namespace (UCI) in which the applicaiton will run.</value>
|
||||
<value>Use this panel to specify the internet address and port of the VISTA server. The VISTA Server Port refers to the IP Port to which the VA RPC Broker is assigned on the VISTA Server. You may optionally specify the namespace (UCI) in which the applicaiton will run.</value>
|
||||
</data>
|
||||
</root>
|
Binary file not shown.
|
@ -1,447 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>BMXNet21</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:IndianHealthService.BMXNet.DServerInfo">
|
||||
<summary>
|
||||
Prompts for RPMS Server address and port
|
||||
Obtains current values, if any, from isolated storage
|
||||
and uses them as defaults.
|
||||
If OK, then writes values to isolated storage and returns
|
||||
Address and Port as properties.
|
||||
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:IndianHealthService.BMXNet.DServerInfo.components">
|
||||
<summary>
|
||||
Required designer variable.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.DServerInfo.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Clean up any resources being used.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.DServerInfo.InitializeComponent">
|
||||
<summary>
|
||||
Required method for Designer support - do not modify
|
||||
the contents of this method with the code editor.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.DServerInfo.UpdateDialogData(System.Boolean)">
|
||||
<summary>
|
||||
If b is true, moves member vars into control data
|
||||
otherwise, moves control data into member vars
|
||||
</summary>
|
||||
<param name="b"></param>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.DServerInfo.MServerAddress">
|
||||
<summary>
|
||||
Gets/sets the internet address of the RPMS Server
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.DServerInfo.MServerNamespace">
|
||||
<summary>
|
||||
Gets/sets the namespace of the RPMS Server
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.DServerInfo.MServerPort">
|
||||
<summary>
|
||||
Gets/sets the TCP/IP Port of the RPMS Server
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:IndianHealthService.BMXNet.DSelectDivision">
|
||||
<summary>
|
||||
Summary description for DSelectDivision.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.DSelectDivision.InitializeComponent">
|
||||
<summary>
|
||||
Required method for Designer support - do not modify
|
||||
the contents of this method with the code editor.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.DSelectDivision.UpdateDialogData(System.Boolean)">
|
||||
<summary>
|
||||
If b is true, moves member vars into control data
|
||||
otherwise, moves control data into member vars
|
||||
</summary>
|
||||
<param name="b"></param>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.DSelectDivision.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Clean up any resources being used.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:IndianHealthService.BMXNet.BMXNetLib">
|
||||
<summary>
|
||||
BMXNetLib implements low-level socket connectivity to RPMS databases.
|
||||
The VA RPC Broker must be running on the RPMS server in order for
|
||||
BMXNetLib to connect.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetLib.#ctor">
|
||||
<summary>
|
||||
Main constructor with default machine encoding
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetLib.#ctor(System.String)">
|
||||
<summary>
|
||||
Constructor specifiying encoding
|
||||
</summary>
|
||||
<param name="charset">String name of character set</param>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetLib.PieceLength(System.String,System.String)">
|
||||
<summary>
|
||||
Corresponds to M's $L(STRING,DELIMITER)
|
||||
</summary>
|
||||
<param name="sInput"></param>
|
||||
<param name="sDelim"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetLib.Piece(System.String,System.String,System.Int32)">
|
||||
<summary>
|
||||
Corresponds to M's $$Piece function
|
||||
</summary>
|
||||
<param name="sInput"></param>
|
||||
<param name="sDelim"></param>
|
||||
<param name="nNumber"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetLib.ADEBLDPadString(System.String)">
|
||||
<summary>
|
||||
Given strInput = "13" builds "013" if nLength = 3. Default for nLength is 3.
|
||||
</summary>
|
||||
<param name="strInput"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetLib.ADEBLDPadString(System.String,System.Int32)">
|
||||
<summary>
|
||||
Given strInput = "13" builds "013" if nLength = 3 Default for nLength is 3.
|
||||
</summary>
|
||||
<param name="strInput"></param>
|
||||
<param name="nLength">Default = 3</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetLib.ADEBLDB(System.String)">
|
||||
<summary>
|
||||
Concatenates zero-padded length of sInput to sInput
|
||||
Given "Hello" returns "004Hello"
|
||||
If nSize = 5, returns "00004Hello"
|
||||
Default for nSize is 3.
|
||||
</summary>
|
||||
<param name="sInput"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetLib.ADEBLDB(System.String,System.Int32)">
|
||||
<summary>
|
||||
Concatenates zero-padded length of sInput to sInput
|
||||
Given "Hello" returns "004Hello"
|
||||
If nSize = 5, returns "00004Hello"
|
||||
Default for nSize is 3.
|
||||
</summary>
|
||||
<param name="sInput"></param>
|
||||
<param name="nSize"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetLib.ADEBHDR(System.String,System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Build protocol header
|
||||
</summary>
|
||||
<param name="sWKID"></param>
|
||||
<param name="sWINH"></param>
|
||||
<param name="sPRCH"></param>
|
||||
<param name="sWISH"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetLib.FindSubString(System.String,System.String)">
|
||||
<summary>
|
||||
Returns index of first instance of sSubString in sString.
|
||||
If sSubString not found, returns -1.
|
||||
</summary>
|
||||
<param name="sString"></param>
|
||||
<param name="sSubString"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetLib.Lock(System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Lock a local or global M variable
|
||||
Returns true if lock is obtained during TimeOut seconds
|
||||
Use + to increment, - to decrement lock.
|
||||
</summary>
|
||||
<param name="Variable"></param>
|
||||
<param name="Increment"></param>
|
||||
<param name="TimeOut"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.BMXNetLib.BMXRWL">
|
||||
<summary>
|
||||
Returns a reference to the internal ReaderWriterLock member.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.BMXNetLib.RWLTimeout">
|
||||
<summary>
|
||||
Sets and returns the timeout in milliseconds for locking the transmit port.
|
||||
If the transmit port is unavailable an ApplicationException will be thrown.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.BMXNetLib.ReceiveTimeout">
|
||||
<summary>
|
||||
Set and retrieve the timeout, in milliseconds, to receive a response from the RPMS server.
|
||||
If the retrieve time exceeds the timeout, an exception will be thrown and the connection will be closed.
|
||||
The default is 30 seconds.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.BMXNetLib.AppContext">
|
||||
<summary>
|
||||
Gets/sets the Kernel Application context
|
||||
Throws an exception if unable to set the context.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.BMXNetLib.Encoder">
|
||||
<summary>
|
||||
Gets or Sets the Default Encoder to use
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:IndianHealthService.BMXNet.BMXNetException">
|
||||
<summary>
|
||||
Custom exception class for BMXNet
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.RPMSDb.ResultSets">
|
||||
<summary>
|
||||
Returns the array of RMPSResultSets retrieved from RPMS
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.RPMSDb.CurrentRecordSet">
|
||||
<summary>
|
||||
Sets and Returns the current recordset
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:IndianHealthService.BMXNet.DLoginInfo">
|
||||
<summary>
|
||||
Summary description for DLoginInfo.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:IndianHealthService.BMXNet.DLoginInfo.components">
|
||||
<summary>
|
||||
Required designer variable.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.DLoginInfo.InitializeComponent">
|
||||
<summary>
|
||||
Required method for Designer support - do not modify
|
||||
the contents of this method with the code editor.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.DLoginInfo.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Clean up any resources being used.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.DLoginInfo.UpdateDialogData(System.Boolean)">
|
||||
<summary>
|
||||
If b is true, moves member vars into control data
|
||||
otherwise, moves control data into member vars
|
||||
</summary>
|
||||
<param name="b"></param>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.DLoginInfo.AccessCode">
|
||||
<summary>
|
||||
Gets the access code entered by the user.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.DLoginInfo.VerifyCode">
|
||||
<summary>
|
||||
Gets the verify code entered by the user.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:IndianHealthService.BMXNet.BMXNetConnectInfo">
|
||||
<summary>
|
||||
Contains methods and properties to support RPMS Login for .NET applications
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.#ctor">
|
||||
<summary>
|
||||
BMXNetConnector With Default Encoding (invokes BMXNetLib)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.#ctor(System.String)">
|
||||
<summary>
|
||||
BMXNetConnector with a specific encoding
|
||||
</summary>
|
||||
<param name="encoding">String representation of encoding (e.g. windows-1256 for arabic).
|
||||
If encoding is not found, we fall back to the default windows encoding. A debug message
|
||||
is printed to that effect.</param>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.SubscribeEvent(System.String)">
|
||||
<summary>
|
||||
Register interest in an RPMS event.
|
||||
</summary>
|
||||
<param name="EventName"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.UnSubscribeEvent(System.String)">
|
||||
<summary>
|
||||
Unregister an RPMS event
|
||||
</summary>
|
||||
<param name="EventName"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.RaiseEvent(System.String,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Raise an RPMS event
|
||||
</summary>
|
||||
<param name="EventName">The name of the event to raise</param>
|
||||
<param name="Param">Parameters associated with the event</param>
|
||||
<param name="RaiseBack">True if the event should be raised back to the caller</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.Login">
|
||||
<summary>
|
||||
For backwards compatibility. Internally calls LoadConnectInfo()
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.ChangeServerInfo">
|
||||
<summary>
|
||||
Change the internet address and port of the RPMS server
|
||||
Throws a BMXNetException if user cancels
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.LoadConnectInfo">
|
||||
<summary>
|
||||
Called to connect to an M server
|
||||
Server address, port, Access and Verify codes will be
|
||||
prompted for depending on whether these values are
|
||||
cached.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.LoadConnectInfo(System.String,System.Int32)">
|
||||
<summary>
|
||||
Called to connect to the M server specified by
|
||||
server address and listener port. The default namespace on the server will be used.
|
||||
Access and Verify codes will be prompted if
|
||||
valid values for the current Windows Identity are
|
||||
not cached on the server.
|
||||
</summary>
|
||||
<param name="MServerAddress">The IP address or name of the MServer</param>
|
||||
<param name="Port">The port on which the BMXNet Monitor is listening</param>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.LoadConnectInfo(System.String,System.Int32,System.String)">
|
||||
<summary>
|
||||
Called to connect to the M server specified by
|
||||
server address, listener port and namespace.
|
||||
Access and Verify codes will be prompted if
|
||||
valid values for the current Windows Identity are
|
||||
not cached on the server.
|
||||
</summary>
|
||||
<param name="MServerAddress">The IP address or name of the MServer</param>
|
||||
<param name="Port">The port on which the BMXNet Monitor is listening</param>
|
||||
<param name="Namespace">The namespace in which the BMXNet application will run</param>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.LoadConnectInfo(System.String,System.String)">
|
||||
<summary>
|
||||
Called to connect to an M server
|
||||
using specific Access and Verify codes.
|
||||
Server address and port will be prompted if they
|
||||
are not cached in local storage.
|
||||
</summary>
|
||||
<param name="AccessCode">The user's access code</param>
|
||||
<param name="VerifyCode">The user's verify code</param>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.LoadConnectInfo(System.String,System.Int32,System.String,System.String)">
|
||||
<summary>
|
||||
Called to connect to a specific M server
|
||||
using specific Access and Verify codes.
|
||||
</summary>
|
||||
<param name="AccessCode">The user's access code</param>
|
||||
<param name="VerifyCode">The user's verify code</param>
|
||||
<param name="MServerAddress">The IP address or name of the MServer</param>
|
||||
<param name="Port">The port on which the BMXNet Monitor is listening</param>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.LoadConnectInfo(System.String,System.Int32,System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Called to connect to a specific namespace on the M server
|
||||
using specific Access and Verify codes.
|
||||
</summary>
|
||||
<param name="AccessCode">The user's access code</param>
|
||||
<param name="VerifyCode">The user's verify code</param>
|
||||
<param name="MServerAddress">The IP address or name of the MServer</param>
|
||||
<param name="Port">The port on which the BMXNet Monitor is listening</param>
|
||||
<param name="Namespace">The namespace in which the BMXNet application will run</param>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.RPMSDataTable(System.String,System.String)">
|
||||
<summary>
|
||||
Creates and names a DataTable using the command in CommandString
|
||||
and the name in TableName.
|
||||
</summary>
|
||||
<param name="CommandString"> The SQL or RPC call</param>
|
||||
<param name="TableName">The name of the resulting table</param>
|
||||
<returns>
|
||||
Returns the resulting DataTable.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:IndianHealthService.BMXNet.BMXNetConnectInfo.RPMSDataTable(System.String,System.String,System.Data.DataSet)">
|
||||
<summary>
|
||||
Creates and names a DataTable using the command in CommandString
|
||||
and the name in TableName then adds it to DataSet.
|
||||
</summary>
|
||||
<param name="CommandString">The SQL or RPC call</param>
|
||||
<param name="TableName">The name of the resulting table</param>
|
||||
<param name="dsDataSet">The dataset in which to place the table</param>
|
||||
<returns>
|
||||
Returns the resulting DataTable.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.BMXNetConnectInfo.EventPollingEnabled">
|
||||
<summary>
|
||||
Enables and disables event polling for the RPMS connection
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.BMXNetConnectInfo.EventPollingInterval">
|
||||
<summary>
|
||||
Sets and retrieves the interval in milliseconds for RPMS event polling
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.BMXNetConnectInfo.AutoFire">
|
||||
<summary>
|
||||
Sets and retrieves the number of times that the Event Timer will generage a BMXNet AutoFire event.
|
||||
For example, if AutoFire == 3, then every 3rd time the Event Timer fires, it will generate an AutoFire event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.BMXNetConnectInfo.ReceiveTimeout">
|
||||
<summary>
|
||||
Set and retrieve the timeout, in milliseconds, to receive a response from the RPMS server.
|
||||
If the retrieve time exceeds the timeout, an exception will be thrown and the connection will be closed.
|
||||
The default is 30 seconds.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.BMXNetConnectInfo.DUZ">
|
||||
<summary>
|
||||
Returns a string representation of DUZ
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.BMXNetConnectInfo.DUZ2">
|
||||
<summary>
|
||||
Sets and Returns DUZ(2)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.BMXNetConnectInfo.MServerAddress">
|
||||
<summary>
|
||||
Gets the address of the RPMS Server
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IndianHealthService.BMXNet.BMXNetConnectInfo.MServerPort">
|
||||
<summary>
|
||||
Gets the port on which the MServer is connected
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:IndianHealthService.BMXNet.BMXNetConnectInfo.ServerData">
|
||||
<summary>
|
||||
Serializes RPMS server address and port
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
Loading…
Reference in New Issue