Changeset 847
- Timestamp:
- Jul 9, 2010, 5:32:10 PM (14 years ago)
- Location:
- BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk/cs/bmx_0200scr/BMX2
- Files:
-
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk/cs/bmx_0200scr/BMX2/BMXNet/AssemblyInfo.cs
r815 r847 8 8 // associated with an assembly. 9 9 // 10 [assembly: AssemblyTitle("BMXNet2 0")]11 [assembly: AssemblyDescription("ADO.NET 2.0 Data Provider for RPMS")]10 [assembly: AssemblyTitle("BMXNet21")] 11 [assembly: AssemblyDescription("ADO.NET 2.0 Data Provider for VISTA")] 12 12 [assembly: AssemblyConfiguration("")] 13 [assembly: AssemblyCompany(" Indian Health Service")]13 [assembly: AssemblyCompany("")] 14 14 [assembly: AssemblyProduct("")] 15 [assembly: AssemblyCopyright(" ")]15 [assembly: AssemblyCopyright("(None)")] 16 16 [assembly: AssemblyTrademark("")] 17 17 [assembly: AssemblyCulture("")] … … 28 28 // by using the '*' as shown below: 29 29 30 [assembly: AssemblyVersion("2. 0.*")]30 [assembly: AssemblyVersion("2.1.*")] 31 31 32 32 // … … 58 58 //[assembly: AssemblyKeyFile("")] 59 59 //[assembly: AssemblyKeyName("")] 60 [assembly: AssemblyFileVersionAttribute("2. 0.0.0")]60 [assembly: AssemblyFileVersionAttribute("2.1.1.0")] 61 61 [assembly: ComVisibleAttribute(false)] -
BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk/cs/bmx_0200scr/BMX2/BMXNet/DLoginInfo.cs
r815 r847 39 39 private void InitializeComponent() 40 40 { 41 this.pnlPageBottom = new System.Windows.Forms.Panel(); 42 this.cmdCancel = new System.Windows.Forms.Button(); 43 this.cmdOK = new System.Windows.Forms.Button(); 44 this.pnlDescription = new System.Windows.Forms.Panel(); 45 this.grpDescriptionResourceGroup = new System.Windows.Forms.GroupBox(); 46 this.lblDescriptionResourceGroup = new System.Windows.Forms.Label(); 47 this.txtVerify = new System.Windows.Forms.TextBox(); 48 this.txtAccess = new System.Windows.Forms.TextBox(); 49 this.label2 = new System.Windows.Forms.Label(); 50 this.label1 = new System.Windows.Forms.Label(); 51 this.pnlPageBottom.SuspendLayout(); 52 this.pnlDescription.SuspendLayout(); 53 this.grpDescriptionResourceGroup.SuspendLayout(); 54 this.SuspendLayout(); 55 // 56 // pnlPageBottom 57 // 58 this.pnlPageBottom.Controls.Add(this.cmdCancel); 59 this.pnlPageBottom.Controls.Add(this.cmdOK); 60 this.pnlPageBottom.Dock = System.Windows.Forms.DockStyle.Bottom; 61 this.pnlPageBottom.Location = new System.Drawing.Point(0, 174); 62 this.pnlPageBottom.Name = "pnlPageBottom"; 63 this.pnlPageBottom.Size = new System.Drawing.Size(448, 40); 64 this.pnlPageBottom.TabIndex = 6; 65 // 66 // cmdCancel 67 // 68 this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; 69 this.cmdCancel.Location = new System.Drawing.Point(376, 8); 70 this.cmdCancel.Name = "cmdCancel"; 71 this.cmdCancel.Size = new System.Drawing.Size(56, 24); 72 this.cmdCancel.TabIndex = 4; 73 this.cmdCancel.Text = "Cancel"; 74 // 75 // cmdOK 76 // 77 this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK; 78 this.cmdOK.Location = new System.Drawing.Point(296, 8); 79 this.cmdOK.Name = "cmdOK"; 80 this.cmdOK.Size = new System.Drawing.Size(64, 24); 81 this.cmdOK.TabIndex = 3; 82 this.cmdOK.Text = "OK"; 83 this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click); 84 // 85 // pnlDescription 86 // 87 this.pnlDescription.Controls.Add(this.grpDescriptionResourceGroup); 88 this.pnlDescription.Dock = System.Windows.Forms.DockStyle.Bottom; 89 this.pnlDescription.Location = new System.Drawing.Point(0, 102); 90 this.pnlDescription.Name = "pnlDescription"; 91 this.pnlDescription.Size = new System.Drawing.Size(448, 72); 92 this.pnlDescription.TabIndex = 7; 93 // 94 // grpDescriptionResourceGroup 95 // 96 this.grpDescriptionResourceGroup.Controls.Add(this.lblDescriptionResourceGroup); 97 this.grpDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill; 98 this.grpDescriptionResourceGroup.Location = new System.Drawing.Point(0, 0); 99 this.grpDescriptionResourceGroup.Name = "grpDescriptionResourceGroup"; 100 this.grpDescriptionResourceGroup.Size = new System.Drawing.Size(448, 72); 101 this.grpDescriptionResourceGroup.TabIndex = 1; 102 this.grpDescriptionResourceGroup.TabStop = false; 103 this.grpDescriptionResourceGroup.Text = "Description"; 104 // 105 // lblDescriptionResourceGroup 106 // 107 this.lblDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill; 108 this.lblDescriptionResourceGroup.Location = new System.Drawing.Point(3, 16); 109 this.lblDescriptionResourceGroup.Name = "lblDescriptionResourceGroup"; 110 this.lblDescriptionResourceGroup.Size = new System.Drawing.Size(442, 53); 111 this.lblDescriptionResourceGroup.TabIndex = 0; 112 this.lblDescriptionResourceGroup.Text = "Use this panel to enter the Access and Verify codes that you use to log in to the" + 113 " RPMS server. "; 114 // 115 // txtVerify 116 // 117 this.txtVerify.Location = new System.Drawing.Point(160, 56); 118 this.txtVerify.Name = "txtVerify"; 119 this.txtVerify.PasswordChar = '*'; 120 this.txtVerify.Size = new System.Drawing.Size(160, 20); 121 this.txtVerify.TabIndex = 2; 122 this.txtVerify.Text = ""; 123 // 124 // txtAccess 125 // 126 this.txtAccess.Location = new System.Drawing.Point(160, 24); 127 this.txtAccess.Name = "txtAccess"; 128 this.txtAccess.PasswordChar = '*'; 129 this.txtAccess.Size = new System.Drawing.Size(160, 20); 130 this.txtAccess.TabIndex = 1; 131 this.txtAccess.Text = ""; 132 // 133 // label2 134 // 135 this.label2.Location = new System.Drawing.Point(24, 56); 136 this.label2.Name = "label2"; 137 this.label2.Size = new System.Drawing.Size(128, 16); 138 this.label2.TabIndex = 12; 139 this.label2.Text = "RPMS Verify Code:"; 140 // 141 // label1 142 // 143 this.label1.Location = new System.Drawing.Point(24, 24); 144 this.label1.Name = "label1"; 145 this.label1.Size = new System.Drawing.Size(128, 16); 146 this.label1.TabIndex = 11; 147 this.label1.Text = "RPMS Access Code:"; 148 // 149 // DLoginInfo 150 // 151 this.AcceptButton = this.cmdOK; 152 this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); 153 this.ClientSize = new System.Drawing.Size(448, 214); 154 this.Controls.Add(this.txtVerify); 155 this.Controls.Add(this.txtAccess); 156 this.Controls.Add(this.label2); 157 this.Controls.Add(this.label1); 158 this.Controls.Add(this.pnlDescription); 159 this.Controls.Add(this.pnlPageBottom); 160 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 161 this.Name = "DLoginInfo"; 162 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 163 this.Text = "RPMS Login"; 164 this.Load += new System.EventHandler(this.DLoginInfo_Load); 165 this.Activated += new System.EventHandler(this.DLoginInfo_Activated); 166 this.pnlPageBottom.ResumeLayout(false); 167 this.pnlDescription.ResumeLayout(false); 168 this.grpDescriptionResourceGroup.ResumeLayout(false); 169 this.ResumeLayout(false); 41 this.pnlPageBottom = new System.Windows.Forms.Panel(); 42 this.cmdCancel = new System.Windows.Forms.Button(); 43 this.cmdOK = new System.Windows.Forms.Button(); 44 this.pnlDescription = new System.Windows.Forms.Panel(); 45 this.grpDescriptionResourceGroup = new System.Windows.Forms.GroupBox(); 46 this.lblDescriptionResourceGroup = new System.Windows.Forms.Label(); 47 this.txtVerify = new System.Windows.Forms.TextBox(); 48 this.txtAccess = new System.Windows.Forms.TextBox(); 49 this.label2 = new System.Windows.Forms.Label(); 50 this.label1 = new System.Windows.Forms.Label(); 51 this.pnlPageBottom.SuspendLayout(); 52 this.pnlDescription.SuspendLayout(); 53 this.grpDescriptionResourceGroup.SuspendLayout(); 54 this.SuspendLayout(); 55 // 56 // pnlPageBottom 57 // 58 this.pnlPageBottom.Controls.Add(this.cmdCancel); 59 this.pnlPageBottom.Controls.Add(this.cmdOK); 60 this.pnlPageBottom.Dock = System.Windows.Forms.DockStyle.Bottom; 61 this.pnlPageBottom.Location = new System.Drawing.Point(0, 174); 62 this.pnlPageBottom.Name = "pnlPageBottom"; 63 this.pnlPageBottom.Size = new System.Drawing.Size(448, 40); 64 this.pnlPageBottom.TabIndex = 6; 65 // 66 // cmdCancel 67 // 68 this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; 69 this.cmdCancel.Location = new System.Drawing.Point(376, 8); 70 this.cmdCancel.Name = "cmdCancel"; 71 this.cmdCancel.Size = new System.Drawing.Size(56, 24); 72 this.cmdCancel.TabIndex = 4; 73 this.cmdCancel.Text = "Cancel"; 74 // 75 // cmdOK 76 // 77 this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK; 78 this.cmdOK.Location = new System.Drawing.Point(296, 8); 79 this.cmdOK.Name = "cmdOK"; 80 this.cmdOK.Size = new System.Drawing.Size(64, 24); 81 this.cmdOK.TabIndex = 3; 82 this.cmdOK.Text = "OK"; 83 this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click); 84 // 85 // pnlDescription 86 // 87 this.pnlDescription.Controls.Add(this.grpDescriptionResourceGroup); 88 this.pnlDescription.Dock = System.Windows.Forms.DockStyle.Bottom; 89 this.pnlDescription.Location = new System.Drawing.Point(0, 102); 90 this.pnlDescription.Name = "pnlDescription"; 91 this.pnlDescription.Size = new System.Drawing.Size(448, 72); 92 this.pnlDescription.TabIndex = 7; 93 // 94 // grpDescriptionResourceGroup 95 // 96 this.grpDescriptionResourceGroup.Controls.Add(this.lblDescriptionResourceGroup); 97 this.grpDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill; 98 this.grpDescriptionResourceGroup.Location = new System.Drawing.Point(0, 0); 99 this.grpDescriptionResourceGroup.Name = "grpDescriptionResourceGroup"; 100 this.grpDescriptionResourceGroup.Size = new System.Drawing.Size(448, 72); 101 this.grpDescriptionResourceGroup.TabIndex = 1; 102 this.grpDescriptionResourceGroup.TabStop = false; 103 this.grpDescriptionResourceGroup.Text = "Description"; 104 // 105 // lblDescriptionResourceGroup 106 // 107 this.lblDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill; 108 this.lblDescriptionResourceGroup.Location = new System.Drawing.Point(3, 16); 109 this.lblDescriptionResourceGroup.Name = "lblDescriptionResourceGroup"; 110 this.lblDescriptionResourceGroup.Size = new System.Drawing.Size(442, 53); 111 this.lblDescriptionResourceGroup.TabIndex = 0; 112 this.lblDescriptionResourceGroup.Text = "Use this panel to enter the Access and Verify codes that you use to log in to the" + 113 " VISTA server. "; 114 // 115 // txtVerify 116 // 117 this.txtVerify.Location = new System.Drawing.Point(160, 56); 118 this.txtVerify.Name = "txtVerify"; 119 this.txtVerify.PasswordChar = '*'; 120 this.txtVerify.Size = new System.Drawing.Size(160, 20); 121 this.txtVerify.TabIndex = 2; 122 // 123 // txtAccess 124 // 125 this.txtAccess.Location = new System.Drawing.Point(160, 24); 126 this.txtAccess.Name = "txtAccess"; 127 this.txtAccess.PasswordChar = '*'; 128 this.txtAccess.Size = new System.Drawing.Size(160, 20); 129 this.txtAccess.TabIndex = 1; 130 // 131 // label2 132 // 133 this.label2.Location = new System.Drawing.Point(24, 56); 134 this.label2.Name = "label2"; 135 this.label2.Size = new System.Drawing.Size(128, 16); 136 this.label2.TabIndex = 12; 137 this.label2.Text = "VISTA Verify Code:"; 138 // 139 // label1 140 // 141 this.label1.Location = new System.Drawing.Point(24, 24); 142 this.label1.Name = "label1"; 143 this.label1.Size = new System.Drawing.Size(128, 16); 144 this.label1.TabIndex = 11; 145 this.label1.Text = "VISTA Access Code:"; 146 // 147 // DLoginInfo 148 // 149 this.AcceptButton = this.cmdOK; 150 this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); 151 this.ClientSize = new System.Drawing.Size(448, 214); 152 this.Controls.Add(this.txtVerify); 153 this.Controls.Add(this.txtAccess); 154 this.Controls.Add(this.label2); 155 this.Controls.Add(this.label1); 156 this.Controls.Add(this.pnlDescription); 157 this.Controls.Add(this.pnlPageBottom); 158 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 159 this.Name = "DLoginInfo"; 160 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 161 this.Text = "VISTA Login"; 162 this.Load += new System.EventHandler(this.DLoginInfo_Load); 163 this.Activated += new System.EventHandler(this.DLoginInfo_Activated); 164 this.pnlPageBottom.ResumeLayout(false); 165 this.pnlDescription.ResumeLayout(false); 166 this.grpDescriptionResourceGroup.ResumeLayout(false); 167 this.ResumeLayout(false); 168 this.PerformLayout(); 170 169 171 170 } -
BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk/cs/bmx_0200scr/BMX2/BMXNet/DLoginInfo.resx
r815 r847 4 4 Microsoft ResX Schema 5 5 6 Version 1.36 Version 2.0 7 7 8 8 The primary goals of this format is to allow a simple XML format … … 15 15 ... ado.net/XML headers & schema ... 16 16 <resheader name="resmimetype">text/microsoft-resx</resheader> 17 <resheader name="version"> 1.3</resheader>17 <resheader name="version">2.0</resheader> 18 18 <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> 19 19 <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> 20 <data name="Name1"> this is my long string</data>20 <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> 21 21 <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> 22 22 <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> 23 [base64 mime encoded serialized .NET Framework object]23 <value>[base64 mime encoded serialized .NET Framework object]</value> 24 24 </data> 25 25 <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> 26 [base64 mime encoded string representing a byte array form of the .NET Framework object] 26 <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> 27 <comment>This is a comment</comment> 27 28 </data> 28 29 … … 36 37 mimetype set. 37 38 38 The mimetype is used for serialized objects, and tells the39 The mimetype is used for serialized objects, and tells the 39 40 ResXResourceReader how to depersist the object. This is currently not 40 41 extensible. For a given mimetype the value must be set accordingly: … … 46 47 mimetype: application/x-microsoft.net.object.binary.base64 47 48 value : The object must be serialized with 48 : System. Serialization.Formatters.Binary.BinaryFormatter49 : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter 49 50 : and then encoded with base64 encoding. 50 51 … … 60 61 --> 61 62 <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> 63 <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> 62 64 <xsd:element name="root" msdata:IsDataSet="true"> 63 65 <xsd:complexType> 64 66 <xsd:choice maxOccurs="unbounded"> 67 <xsd:element name="metadata"> 68 <xsd:complexType> 69 <xsd:sequence> 70 <xsd:element name="value" type="xsd:string" minOccurs="0" /> 71 </xsd:sequence> 72 <xsd:attribute name="name" use="required" type="xsd:string" /> 73 <xsd:attribute name="type" type="xsd:string" /> 74 <xsd:attribute name="mimetype" type="xsd:string" /> 75 <xsd:attribute ref="xml:space" /> 76 </xsd:complexType> 77 </xsd:element> 78 <xsd:element name="assembly"> 79 <xsd:complexType> 80 <xsd:attribute name="alias" type="xsd:string" /> 81 <xsd:attribute name="name" type="xsd:string" /> 82 </xsd:complexType> 83 </xsd:element> 65 84 <xsd:element name="data"> 66 85 <xsd:complexType> … … 69 88 <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> 70 89 </xsd:sequence> 71 <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />90 <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> 72 91 <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> 73 92 <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> 93 <xsd:attribute ref="xml:space" /> 74 94 </xsd:complexType> 75 95 </xsd:element> … … 90 110 </resheader> 91 111 <resheader name="version"> 92 <value> 1.3</value>112 <value>2.0</value> 93 113 </resheader> 94 114 <resheader name="reader"> 95 <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version= 1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>115 <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 96 116 </resheader> 97 117 <resheader name="writer"> 98 <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version= 1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>118 <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 99 119 </resheader> 100 <data name="pnlPageBottom.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">101 <value>False</value>102 </data>103 <data name="pnlPageBottom.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">104 <value>True</value>105 </data>106 <data name="pnlPageBottom.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">107 <value>Private</value>108 </data>109 <data name="pnlPageBottom.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">110 <value>8, 8</value>111 </data>112 <data name="pnlPageBottom.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">113 <value>False</value>114 </data>115 <data name="pnlPageBottom.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">116 <value>Private</value>117 </data>118 <data name="cmdCancel.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">119 <value>False</value>120 </data>121 <data name="cmdCancel.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">122 <value>Private</value>123 </data>124 <data name="cmdCancel.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">125 <value>Private</value>126 </data>127 <data name="cmdOK.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">128 <value>False</value>129 </data>130 <data name="cmdOK.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">131 <value>Private</value>132 </data>133 <data name="cmdOK.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">134 <value>Private</value>135 </data>136 <data name="pnlDescription.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">137 <value>False</value>138 </data>139 <data name="pnlDescription.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">140 <value>True</value>141 </data>142 <data name="pnlDescription.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">143 <value>Private</value>144 </data>145 <data name="pnlDescription.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">146 <value>8, 8</value>147 </data>148 <data name="pnlDescription.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">149 <value>True</value>150 </data>151 <data name="pnlDescription.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">152 <value>Private</value>153 </data>154 <data name="grpDescriptionResourceGroup.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">155 <value>Private</value>156 </data>157 <data name="grpDescriptionResourceGroup.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">158 <value>8, 8</value>159 </data>160 <data name="grpDescriptionResourceGroup.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">161 <value>True</value>162 </data>163 <data name="grpDescriptionResourceGroup.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">164 <value>False</value>165 </data>166 <data name="grpDescriptionResourceGroup.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">167 <value>True</value>168 </data>169 <data name="grpDescriptionResourceGroup.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">170 <value>Private</value>171 </data>172 <data name="lblDescriptionResourceGroup.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">173 <value>False</value>174 </data>175 <data name="lblDescriptionResourceGroup.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">176 <value>Private</value>177 </data>178 <data name="lblDescriptionResourceGroup.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">179 <value>Private</value>180 </data>181 <data name="txtVerify.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">182 <value>Private</value>183 </data>184 <data name="txtVerify.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">185 <value>False</value>186 </data>187 <data name="txtVerify.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">188 <value>Private</value>189 </data>190 <data name="txtAccess.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">191 <value>Private</value>192 </data>193 <data name="txtAccess.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">194 <value>False</value>195 </data>196 <data name="txtAccess.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">197 <value>Private</value>198 </data>199 <data name="label2.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">200 <value>False</value>201 </data>202 <data name="label2.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">203 <value>Private</value>204 </data>205 <data name="label2.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">206 <value>Private</value>207 </data>208 <data name="label1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">209 <value>False</value>210 </data>211 <data name="label1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">212 <value>Private</value>213 </data>214 <data name="label1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">215 <value>Private</value>216 </data>217 <data name="$this.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">218 <value>False</value>219 </data>220 <data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">221 <value>(Default)</value>222 </data>223 <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">224 <value>False</value>225 </data>226 <data name="$this.Localizable" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">227 <value>False</value>228 </data>229 <data name="$this.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">230 <value>8, 8</value>231 </data>232 <data name="$this.Name">233 <value>DLoginInfo</value>234 </data>235 <data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">236 <value>True</value>237 </data>238 <data name="$this.TrayHeight" type="System.Int32, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">239 <value>80</value>240 </data>241 <data name="$this.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">242 <value>True</value>243 </data>244 <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">245 <value>Private</value>246 </data>247 120 </root> -
BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk/cs/bmx_0200scr/BMX2/BMXNet/DServerInfo.cs
r815 r847 146 146 this.label1.Size = new System.Drawing.Size(128, 16); 147 147 this.label1.TabIndex = 7; 148 this.label1.Text = " RPMSServer Address:";148 this.label1.Text = "VISTA Server Address:"; 149 149 // 150 150 // label2 … … 201 201 this.Name = "DServerInfo"; 202 202 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 203 this.Text = " RPMSServer Address";203 this.Text = "VISTA Server Address"; 204 204 this.Load += new System.EventHandler(this.DServerInfo_Load); 205 205 this.pnlPageBottom.ResumeLayout(false); -
BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk/cs/bmx_0200scr/BMX2/BMXNet/DServerInfo.resx
r815 r847 119 119 </resheader> 120 120 <data name="lblDescriptionResourceGroup.Text" xml:space="preserve"> 121 <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 RPMSServer. You may optionally specify the namespace (UCI) in which the applicaiton will run.</value>121 <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> 122 122 </data> 123 123 </root>
Note:
See TracChangeset
for help on using the changeset viewer.