Ignore:
Timestamp:
Aug 30, 2010, 2:51:30 PM (14 years ago)
Author:
Sam Habiel
Message:

Changes in handling of Divisions. Now prompts if more than one division assigned to user.

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  
    972972                                m_nDivisionCount = rsDivisions.Rows.Count;
    973973
    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               
    985991                        }
    986992                        catch(Exception bmxEx)
     
    10111017                {
    10121018                        DSelectDivision dsd = new DSelectDivision();
    1013                         dsd.InitializePage(UserDivisions, DUZ2);
     1019                        dsd.InitializePage(UserDivisions);
    10141020
    10151021                        if (dsd.ShowDialog(frmCaller) == DialogResult.Cancel)
  • BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk/cs/bmx_0200scr/BMX2/BMXNet/DSelectDivision.cs

    r815 r923  
    3030                private void InitializeComponent()
    3131                {
    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);
    134135
    135136                }
     
    165166                #region Methods
    166167
    167                 public void InitializePage(DataTable dtDivisions, string sDUZ2)
     168                public void InitializePage(DataTable dtDivisions)
    168169                {
    169170                        m_dtDivisions = dtDivisions;
    170                         m_sDUZ2 = sDUZ2;
    171171                        UpdateDialogData(true);
    172172                }
     
    181181                        if (b == true) //move member vars into controls
    182182                        {
    183                                 this.lstDivision.DataSource = m_dtDivisions;
     183                m_dtDivisions.DefaultView.Sort="DEFAULT ASC";
     184                this.lstDivision.DataSource = m_dtDivisions.DefaultView;
    184185                                lstDivision.DisplayMember = "FACILITY_NAME";
    185186                                lstDivision.ValueMember = "FACILITY_IEN";
    186                                 lstDivision.SelectedValue = m_sDUZ2;
     187                lstDivision.SelectedIndex = m_dtDivisions.DefaultView.Find(1);
    187188                        }
    188189                        else //move control data into member vars
     
    217218                private void cmdOK_Click(object sender, System.EventArgs e)
    218219                {
     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            }
    219226                        this.UpdateDialogData(false);
    220227                        return;
    221228                }
     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
    222243        }
    223244}
  • BMXNET_RPMS_dotNET_UTILITIES-BMX/trunk/cs/bmx_0200scr/BMX2/BMXNet/DSelectDivision.resx

    r815 r923  
    44    Microsoft ResX Schema
    55   
    6     Version 1.3
     6    Version 2.0
    77   
    88    The primary goals of this format is to allow a simple XML format
     
    1515    ... ado.net/XML headers & schema ...
    1616    <resheader name="resmimetype">text/microsoft-resx</resheader>
    17     <resheader name="version">1.3</resheader>
     17    <resheader name="version">2.0</resheader>
    1818    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
    1919    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
    20     <data name="Name1">this is my long string</data>
     20    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
    2121    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
    2222    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
    23         [base64 mime encoded serialized .NET Framework object]
     23        <value>[base64 mime encoded serialized .NET Framework object]</value>
    2424    </data>
    2525    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
    26         [base64 mime encoded string representing a byte array form of the .NET Framework object]
     26        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
     27        <comment>This is a comment</comment>
    2728    </data>
    2829               
     
    3637    mimetype set.
    3738   
    38     The mimetype is used forserialized objects, and tells the
     39    The mimetype is used for serialized objects, and tells the
    3940    ResXResourceReader how to depersist the object. This is currently not
    4041    extensible. For a given mimetype the value must be set accordingly:
     
    4647    mimetype: application/x-microsoft.net.object.binary.base64
    4748    value   : The object must be serialized with
    48             : System.Serialization.Formatters.Binary.BinaryFormatter
     49            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
    4950            : and then encoded with base64 encoding.
    5051   
     
    6061    -->
    6162  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
     63    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
    6264    <xsd:element name="root" msdata:IsDataSet="true">
    6365      <xsd:complexType>
    6466        <xsd:choice maxOccurs="unbounded">
     67          <xsd:element name="metadata">
     68            <xsd:complexType>
     69              <xsd:sequence>
     70                <xsd:element name="value" type="xsd:string" minOccurs="0" />
     71              </xsd:sequence>
     72              <xsd:attribute name="name" use="required" type="xsd:string" />
     73              <xsd:attribute name="type" type="xsd:string" />
     74              <xsd:attribute name="mimetype" type="xsd:string" />
     75              <xsd:attribute ref="xml:space" />
     76            </xsd:complexType>
     77          </xsd:element>
     78          <xsd:element name="assembly">
     79            <xsd:complexType>
     80              <xsd:attribute name="alias" type="xsd:string" />
     81              <xsd:attribute name="name" type="xsd:string" />
     82            </xsd:complexType>
     83          </xsd:element>
    6584          <xsd:element name="data">
    6685            <xsd:complexType>
     
    6988                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
    7089              </xsd:sequence>
    71               <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
     90              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
    7291              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
    7392              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
     93              <xsd:attribute ref="xml:space" />
    7494            </xsd:complexType>
    7595          </xsd:element>
     
    90110  </resheader>
    91111  <resheader name="version">
    92     <value>1.3</value>
     112    <value>2.0</value>
    93113  </resheader>
    94114  <resheader name="reader">
    95     <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
     115    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
    96116  </resheader>
    97117  <resheader name="writer">
    98     <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
     118    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
    99119  </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>
    229120</root>
Note: See TracChangeset for help on using the changeset viewer.