Changeset 923 for BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk
- Timestamp:
- Aug 30, 2010, 2:51:30 PM (14 years ago)
- Location:
- BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk/cs/bmx_0200scr/BMX2/BMXNet
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk/cs/bmx_0200scr/BMX2/BMXNet/BMXNetConnectInfo.cs
r822 r923 972 972 m_nDivisionCount = rsDivisions.Rows.Count; 973 973 974 //The MOST_RECENT_LOOKUP field contains DUZ(2) 975 foreach (System.Data.DataRow r in rsDivisions.Rows) 976 { 977 string sTemp = r["MOST_RECENT_LOOKUP"].ToString(); 978 if ((sTemp == "1") || (rsDivisions.Rows.Count == 1)) 979 { 980 this.m_sDivision = r["FACILITY_NAME"].ToString(); 981 this.m_sDUZ2 = r["FACILITY_IEN"].ToString(); 982 break; 983 } 984 } 974 // Must have at least one division in order for our code to work 975 // If user has no divisions, M routine will invent one for our sake (get it from kernel). 976 // 977 Debug.Assert(m_nDivisionCount > 0, "Must get at least one division from VISTA"); 978 979 // if more than one division, have user pick 980 // if just one, get the DUZ(2) and then set it via the property DUZ2. 981 982 if (m_nDivisionCount > 1) 983 { 984 ChangeDivision(null); 985 // following true if user cancelled. 986 if (DUZ2 == null) throw new BMXNetException("No division chosen -- can't log in"); 987 } 988 // if just one 989 else DUZ2 = m_sDUZ2 = rsDivisions.Rows[0]["FACILITY_IEN"].ToString(); 990 985 991 } 986 992 catch(Exception bmxEx) … … 1011 1017 { 1012 1018 DSelectDivision dsd = new DSelectDivision(); 1013 dsd.InitializePage(UserDivisions , DUZ2);1019 dsd.InitializePage(UserDivisions); 1014 1020 1015 1021 if (dsd.ShowDialog(frmCaller) == DialogResult.Cancel) -
BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk/cs/bmx_0200scr/BMX2/BMXNet/DSelectDivision.cs
r815 r923 30 30 private void InitializeComponent() 31 31 { 32 this.pnlPageBottom = new System.Windows.Forms.Panel(); 33 this.cmdCancel = new System.Windows.Forms.Button(); 34 this.cmdOK = new System.Windows.Forms.Button(); 35 this.pnlDescription = new System.Windows.Forms.Panel(); 36 this.grpDescriptionResourceGroup = new System.Windows.Forms.GroupBox(); 37 this.lblDescriptionResourceGroup = new System.Windows.Forms.Label(); 38 this.lstDivision = new System.Windows.Forms.ListBox(); 39 this.label1 = new System.Windows.Forms.Label(); 40 this.pnlPageBottom.SuspendLayout(); 41 this.pnlDescription.SuspendLayout(); 42 this.grpDescriptionResourceGroup.SuspendLayout(); 43 this.SuspendLayout(); 44 // 45 // pnlPageBottom 46 // 47 this.pnlPageBottom.Controls.Add(this.cmdCancel); 48 this.pnlPageBottom.Controls.Add(this.cmdOK); 49 this.pnlPageBottom.Dock = System.Windows.Forms.DockStyle.Bottom; 50 this.pnlPageBottom.Location = new System.Drawing.Point(0, 262); 51 this.pnlPageBottom.Name = "pnlPageBottom"; 52 this.pnlPageBottom.Size = new System.Drawing.Size(456, 40); 53 this.pnlPageBottom.TabIndex = 7; 54 // 55 // cmdCancel 56 // 57 this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; 58 this.cmdCancel.Location = new System.Drawing.Point(376, 8); 59 this.cmdCancel.Name = "cmdCancel"; 60 this.cmdCancel.Size = new System.Drawing.Size(56, 24); 61 this.cmdCancel.TabIndex = 4; 62 this.cmdCancel.Text = "Cancel"; 63 // 64 // cmdOK 65 // 66 this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK; 67 this.cmdOK.Location = new System.Drawing.Point(296, 8); 68 this.cmdOK.Name = "cmdOK"; 69 this.cmdOK.Size = new System.Drawing.Size(64, 24); 70 this.cmdOK.TabIndex = 3; 71 this.cmdOK.Text = "OK"; 72 this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click); 73 // 74 // pnlDescription 75 // 76 this.pnlDescription.Controls.Add(this.grpDescriptionResourceGroup); 77 this.pnlDescription.Dock = System.Windows.Forms.DockStyle.Bottom; 78 this.pnlDescription.Location = new System.Drawing.Point(0, 190); 79 this.pnlDescription.Name = "pnlDescription"; 80 this.pnlDescription.Size = new System.Drawing.Size(456, 72); 81 this.pnlDescription.TabIndex = 8; 82 // 83 // grpDescriptionResourceGroup 84 // 85 this.grpDescriptionResourceGroup.Controls.Add(this.lblDescriptionResourceGroup); 86 this.grpDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill; 87 this.grpDescriptionResourceGroup.Location = new System.Drawing.Point(0, 0); 88 this.grpDescriptionResourceGroup.Name = "grpDescriptionResourceGroup"; 89 this.grpDescriptionResourceGroup.Size = new System.Drawing.Size(456, 72); 90 this.grpDescriptionResourceGroup.TabIndex = 1; 91 this.grpDescriptionResourceGroup.TabStop = false; 92 this.grpDescriptionResourceGroup.Text = "Description"; 93 // 94 // lblDescriptionResourceGroup 95 // 96 this.lblDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill; 97 this.lblDescriptionResourceGroup.Location = new System.Drawing.Point(3, 16); 98 this.lblDescriptionResourceGroup.Name = "lblDescriptionResourceGroup"; 99 this.lblDescriptionResourceGroup.Size = new System.Drawing.Size(450, 53); 100 this.lblDescriptionResourceGroup.TabIndex = 0; 101 this.lblDescriptionResourceGroup.Text = "Use this panel to select the Division."; 102 // 103 // lstDivision 104 // 105 this.lstDivision.Location = new System.Drawing.Point(40, 48); 106 this.lstDivision.Name = "lstDivision"; 107 this.lstDivision.Size = new System.Drawing.Size(384, 121); 108 this.lstDivision.TabIndex = 9; 109 // 110 // label1 111 // 112 this.label1.Location = new System.Drawing.Point(40, 24); 113 this.label1.Name = "label1"; 114 this.label1.Size = new System.Drawing.Size(240, 16); 115 this.label1.TabIndex = 10; 116 this.label1.Text = "Select Division:"; 117 // 118 // DSelectDivision 119 // 120 this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); 121 this.ClientSize = new System.Drawing.Size(456, 302); 122 this.Controls.Add(this.label1); 123 this.Controls.Add(this.lstDivision); 124 this.Controls.Add(this.pnlDescription); 125 this.Controls.Add(this.pnlPageBottom); 126 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 127 this.Name = "DSelectDivision"; 128 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 129 this.Text = "Select Division"; 130 this.pnlPageBottom.ResumeLayout(false); 131 this.pnlDescription.ResumeLayout(false); 132 this.grpDescriptionResourceGroup.ResumeLayout(false); 133 this.ResumeLayout(false); 32 this.pnlPageBottom = new System.Windows.Forms.Panel(); 33 this.cmdCancel = new System.Windows.Forms.Button(); 34 this.cmdOK = new System.Windows.Forms.Button(); 35 this.pnlDescription = new System.Windows.Forms.Panel(); 36 this.grpDescriptionResourceGroup = new System.Windows.Forms.GroupBox(); 37 this.lblDescriptionResourceGroup = new System.Windows.Forms.Label(); 38 this.lstDivision = new System.Windows.Forms.ListBox(); 39 this.label1 = new System.Windows.Forms.Label(); 40 this.pnlPageBottom.SuspendLayout(); 41 this.pnlDescription.SuspendLayout(); 42 this.grpDescriptionResourceGroup.SuspendLayout(); 43 this.SuspendLayout(); 44 // 45 // pnlPageBottom 46 // 47 this.pnlPageBottom.Controls.Add(this.cmdCancel); 48 this.pnlPageBottom.Controls.Add(this.cmdOK); 49 this.pnlPageBottom.Dock = System.Windows.Forms.DockStyle.Bottom; 50 this.pnlPageBottom.Location = new System.Drawing.Point(0, 262); 51 this.pnlPageBottom.Name = "pnlPageBottom"; 52 this.pnlPageBottom.Size = new System.Drawing.Size(456, 40); 53 this.pnlPageBottom.TabIndex = 7; 54 // 55 // cmdCancel 56 // 57 this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; 58 this.cmdCancel.Location = new System.Drawing.Point(376, 8); 59 this.cmdCancel.Name = "cmdCancel"; 60 this.cmdCancel.Size = new System.Drawing.Size(56, 24); 61 this.cmdCancel.TabIndex = 4; 62 this.cmdCancel.Text = "Cancel"; 63 // 64 // cmdOK 65 // 66 this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK; 67 this.cmdOK.Location = new System.Drawing.Point(296, 8); 68 this.cmdOK.Name = "cmdOK"; 69 this.cmdOK.Size = new System.Drawing.Size(64, 24); 70 this.cmdOK.TabIndex = 3; 71 this.cmdOK.Text = "OK"; 72 this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click); 73 // 74 // pnlDescription 75 // 76 this.pnlDescription.Controls.Add(this.grpDescriptionResourceGroup); 77 this.pnlDescription.Dock = System.Windows.Forms.DockStyle.Bottom; 78 this.pnlDescription.Location = new System.Drawing.Point(0, 190); 79 this.pnlDescription.Name = "pnlDescription"; 80 this.pnlDescription.Size = new System.Drawing.Size(456, 72); 81 this.pnlDescription.TabIndex = 8; 82 // 83 // grpDescriptionResourceGroup 84 // 85 this.grpDescriptionResourceGroup.Controls.Add(this.lblDescriptionResourceGroup); 86 this.grpDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill; 87 this.grpDescriptionResourceGroup.Location = new System.Drawing.Point(0, 0); 88 this.grpDescriptionResourceGroup.Name = "grpDescriptionResourceGroup"; 89 this.grpDescriptionResourceGroup.Size = new System.Drawing.Size(456, 72); 90 this.grpDescriptionResourceGroup.TabIndex = 1; 91 this.grpDescriptionResourceGroup.TabStop = false; 92 this.grpDescriptionResourceGroup.Text = "Description"; 93 // 94 // lblDescriptionResourceGroup 95 // 96 this.lblDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill; 97 this.lblDescriptionResourceGroup.Location = new System.Drawing.Point(3, 16); 98 this.lblDescriptionResourceGroup.Name = "lblDescriptionResourceGroup"; 99 this.lblDescriptionResourceGroup.Size = new System.Drawing.Size(450, 53); 100 this.lblDescriptionResourceGroup.TabIndex = 0; 101 this.lblDescriptionResourceGroup.Text = "Use this panel to select the Division."; 102 // 103 // lstDivision 104 // 105 this.lstDivision.Location = new System.Drawing.Point(40, 48); 106 this.lstDivision.Name = "lstDivision"; 107 this.lstDivision.Size = new System.Drawing.Size(384, 121); 108 this.lstDivision.TabIndex = 9; 109 this.lstDivision.DoubleClick += new System.EventHandler(this.lstDivision_DoubleClick); 110 // 111 // label1 112 // 113 this.label1.Location = new System.Drawing.Point(40, 24); 114 this.label1.Name = "label1"; 115 this.label1.Size = new System.Drawing.Size(240, 16); 116 this.label1.TabIndex = 10; 117 this.label1.Text = "Select Division:"; 118 // 119 // DSelectDivision 120 // 121 this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); 122 this.ClientSize = new System.Drawing.Size(456, 302); 123 this.Controls.Add(this.label1); 124 this.Controls.Add(this.lstDivision); 125 this.Controls.Add(this.pnlDescription); 126 this.Controls.Add(this.pnlPageBottom); 127 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 128 this.Name = "DSelectDivision"; 129 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 130 this.Text = "Select Division"; 131 this.pnlPageBottom.ResumeLayout(false); 132 this.pnlDescription.ResumeLayout(false); 133 this.grpDescriptionResourceGroup.ResumeLayout(false); 134 this.ResumeLayout(false); 134 135 135 136 } … … 165 166 #region Methods 166 167 167 public void InitializePage(DataTable dtDivisions , string sDUZ2)168 public void InitializePage(DataTable dtDivisions) 168 169 { 169 170 m_dtDivisions = dtDivisions; 170 m_sDUZ2 = sDUZ2;171 171 UpdateDialogData(true); 172 172 } … … 181 181 if (b == true) //move member vars into controls 182 182 { 183 this.lstDivision.DataSource = m_dtDivisions; 183 m_dtDivisions.DefaultView.Sort="DEFAULT ASC"; 184 this.lstDivision.DataSource = m_dtDivisions.DefaultView; 184 185 lstDivision.DisplayMember = "FACILITY_NAME"; 185 186 lstDivision.ValueMember = "FACILITY_IEN"; 186 lstDivision.SelectedValue = m_sDUZ2;187 lstDivision.SelectedIndex = m_dtDivisions.DefaultView.Find(1); 187 188 } 188 189 else //move control data into member vars … … 217 218 private void cmdOK_Click(object sender, System.EventArgs e) 218 219 { 220 if (lstDivision.SelectedIndex < 0) { 221 this.lblDescriptionResourceGroup.Text="Must select a division"; 222 this.lblDescriptionResourceGroup.ForeColor = Color.Red; 223 this.DialogResult = DialogResult.None; //forestall acceptance. 224 return; 225 } 219 226 this.UpdateDialogData(false); 220 227 return; 221 228 } 229 230 private void lstDivision_DoubleClick(object sender, EventArgs e) 231 { 232 if (lstDivision.SelectedIndex < 0) { 233 this.lblDescriptionResourceGroup.Text = "Must select a division"; 234 this.lblDescriptionResourceGroup.ForeColor = Color.Red; 235 return; 236 } 237 this.UpdateDialogData(false); 238 this.DialogResult = DialogResult.OK; 239 return; 240 } 241 242 222 243 } 223 244 } -
BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk/cs/bmx_0200scr/BMX2/BMXNet/DSelectDivision.resx
r815 r923 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=4.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=4.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="lstDivision.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">182 <value>Private</value>183 </data>184 <data name="lstDivision.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">185 <value>False</value>186 </data>187 <data name="lstDivision.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">188 <value>Private</value>189 </data>190 <data name="label1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">191 <value>False</value>192 </data>193 <data name="label1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">194 <value>Private</value>195 </data>196 <data name="label1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">197 <value>Private</value>198 </data>199 <data name="$this.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">200 <value>False</value>201 </data>202 <data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">203 <value>(Default)</value>204 </data>205 <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">206 <value>False</value>207 </data>208 <data name="$this.Localizable" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">209 <value>False</value>210 </data>211 <data name="$this.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">212 <value>8, 8</value>213 </data>214 <data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">215 <value>True</value>216 </data>217 <data name="$this.TrayHeight" type="System.Int32, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">218 <value>80</value>219 </data>220 <data name="$this.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">221 <value>True</value>222 </data>223 <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">224 <value>Private</value>225 </data>226 <data name="$this.Name">227 <value>DSelectDivision</value>228 </data>229 120 </root>
Note:
See TracChangeset
for help on using the changeset viewer.