Пример #1
0
        /// <summary>
        /// Update attribute value for the view.
        /// </summary>
        /// <param name="view">Updated view.</param>
        /// <param name="controls">Update controls.</param>
        /// <param name="index">Attribute index.</param>
        /// <param name="value">Updated value.</param>
        /// <returns></returns>
        private static GXValueField UpdateProperty(IGXDLMSView view, ControlCollection controls, int index, object value)
        {
            GXValueField item = null;

            foreach (Control it in controls)
            {
                if (it is GXValueField)
                {
                    GXValueField obj = it as GXValueField;
                    if (obj.Index == index)
                    {
                        obj.Target = view.Target;
                        obj.UpdateValueItems(view.Target, index, value);
                        obj.Value = value;
                        item      = obj;
                    }
                }
                else if (it is GXButton)
                {
                    //Do nothing.
                }
                else if (it.Controls.Count != 0)
                {
                    item = UpdateProperty(view, it.Controls, index, value);
                }
                if (item != null)
                {
                    break;
                }
            }
            return(item);
        }
Пример #2
0
        private static bool UpdateError(IGXDLMSView view, System.Windows.Forms.Control.ControlCollection controls,
                                        GXDLMSObject target, int index, Exception ex)
        {
            bool found = false;

            foreach (Control it in controls)
            {
                if (it is GXValueField)
                {
                    GXValueField obj = it as GXValueField;
                    if (obj.Index == index)
                    {
                        if (ex == null)
                        {
                            view.ErrorProvider.SetError(it, null);
                        }
                        else
                        {
                            view.ErrorProvider.SetError(it, ex.Message);
                        }
                        found = true;
                        break;
                    }
                }
                else if (it.Controls.Count != 0)
                {
                    found = UpdateError(view, it.Controls, target, index, ex);
                }
                if (found)
                {
                    break;
                }
            }
            return(found);
        }
Пример #3
0
        /// <summary>
        /// Update attribute value for the view.
        /// </summary>
        /// <param name="view">Updated view.</param>
        /// <param name="controls">Update controls.</param>
        /// <param name="index">Attribute index.</param>
        /// <param name="value">Updated value.</param>
        /// <returns></returns>
        private static bool UpdateProperty(IGXDLMSView view, ControlCollection controls, int index, object value)
        {
            bool found = false;

            foreach (Control it in controls)
            {
                if (it is GXValueField)
                {
                    GXValueField obj = it as GXValueField;
                    if (obj.Index == index)
                    {
                        obj.Target = view.Target;
                        obj.UpdateValueItems(view.Target, index, value);
                        obj.Value = value;
                        found     = true;
                    }
                }
                else if (it is GXButton)
                {
                    GXButton obj = it as GXButton;
                    obj.Enabled = false;
                }
                else if (it.Controls.Count != 0)
                {
                    found = UpdateProperty(view, it.Controls, index, value);
                }
                if (found)
                {
                    break;
                }
            }
            return(found);
        }
Пример #4
0
        public static bool UpdateDirty(IGXDLMSView view, System.Windows.Forms.Control.ControlCollection controls, GXDLMSObject target, int index, bool dirty)
        {
            bool found = false;

            foreach (Control it in controls)
            {
                if (it is GXValueField)
                {
                    GXValueField obj = it as GXValueField;
                    if (obj.Index == index)
                    {
                        if (dirty && index != 0)
                        {
                            view.ErrorProvider.SetError(it, Properties.Resources.ValueChangedTxt);
                        }
                        else
                        {
                            view.ErrorProvider.Clear();
                        }
                        found = true;
                    }
                }
                else if (it.Controls.Count != 0)
                {
                    found = UpdateDirty(view, it.Controls, target, index, dirty);
                }
                if (found)
                {
                    break;
                }
            }
            return(found);
        }
Пример #5
0
 private static bool UpdateAccessRights(IGXDLMSView view, System.Windows.Forms.Control.ControlCollection controls, GXDLMSObject target, int index, bool method, bool connected)
 {
     foreach (Control it in controls)
     {
         if (!method && it is GXValueField)
         {
             GXValueField obj = it as GXValueField;
             if (obj.Index == index)
             {
                 obj.Target = target;
                 AccessMode am = target.GetAccess(index);
                 OnUpdateAccessRights(view, obj, connected && ((am & AccessMode.Write) != 0));
                 return(!obj.NotifyChanges);
             }
         }
         else if (it is GXButton)
         {
             GXButton btn = it as GXButton;
             btn.Target = target;
             //Update custom buttons.
             if (method && index == 0 && btn.Index < 1)
             {
                 OnUpdateAccessRights(view, btn, connected);
                 continue;
             }
             if (method && btn.Index == index && btn.Action == ActionType.Action)
             {
                 MethodAccessMode ma = target.GetMethodAccess(index);
                 OnUpdateAccessRights(view, btn, connected && ma != MethodAccessMode.NoAccess);
                 return(true);
             }
             if (!method && btn.Index == index && (btn.Action == ActionType.Read || btn.Action == ActionType.Write))
             {
                 AccessMode am = target.GetAccess(index);
                 if (btn.Action == ActionType.Read)
                 {
                     OnUpdateAccessRights(view, btn, connected && ((am & AccessMode.Read) != 0));
                 }
                 else if (btn.Action == ActionType.Write)
                 {
                     OnUpdateAccessRights(view, btn, connected && ((am & AccessMode.Write) != 0));
                 }
             }
         }
         else if (it.Controls.Count != 0)
         {
             bool ret = UpdateAccessRights(view, it.Controls, target, index, method, connected);
             //If object is updated.
             if (ret)
             {
                 return(true);
             }
         }
     }
     return(false);
 }
Пример #6
0
        /// <summary>
        /// Update selected values of given COSEM object.
        /// </summary>
        /// <param name="obj"></param>
        /// <param name="view"></param>
        public static void UpdateProperty(GXDLMSClient client, GXDLMSObject obj, int index, IGXDLMSView view, bool connected, bool user)
        {
            if (obj == null)
            {
                return;
            }
            if ((view as Form).InvokeRequired)
            {
                try
                {
                    (view as Form).BeginInvoke(new UpdatePropertyEventHandler(UpdateProperty), client, obj, index, view, connected, user);
                }
                catch (Exception ex)
                {
                    System.Windows.Forms.MessageBox.Show(view as Form, ex.Message, "Error", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error);
                }
                return;
            }
            GXDLMSObject tmp = view.Target;

            view.Description = tmp.Description;
            //If we want to show what properties are changed.
            if (view.ErrorProvider != null)
            {
                view.ErrorProvider.Clear();
                foreach (int it in tmp.GetDirtyAttributeIndexes())
                {
                    UpdateDirty(view, ((Form)view).Controls, tmp, it, true);
                }
            }
            //Update atribute values.
            for (int it = 1; it != (obj as IGXDLMSBase).GetAttributeCount() + 1; ++it)
            {
                if (index == 0 || it == index)
                {
                    object value = null;
                    bool   dirty = view.Target.GetDirty(it, out value);
                    value = view.Target.GetValues()[it - 1];
                    GXValueField item = UpdateProperty(view, ((Form)view).Controls, it, value);
                    if (item == null || item.NotifyChanges)
                    {
                        GXDLMSViewArguments arg = new GXDLMSViewArguments()
                        {
                            Client = client, Index = it, Connected = connected, User = user, Value = value
                        };
                        view.OnValueChanged(arg);
                    }
                    if (it == index)
                    {
                        break;
                    }
                }
            }
        }
Пример #7
0
 private static void Init(IGXDLMSView view, System.Windows.Forms.Control.ControlCollection controls, EventHandler eventHandler)
 {
     foreach (Control it in controls)
     {
         if (it is GXButton)
         {
             GXButton btn = it as GXButton;
             btn.View   = view;
             btn.Click += eventHandler;
         }
         else if (it is GXValueField)
         {
             GXValueField vf = it as GXValueField;
             vf.DefaultType = vf.Type;
         }
         else if (it.Controls.Count != 0)
         {
             Init(view, it.Controls, eventHandler);
         }
     }
 }
Пример #8
0
        /// <summary>
        /// Update attribute value for the view.
        /// </summary>
        /// <param name="view">Updated view.</param>
        /// <param name="controls">Update controls.</param>
        /// <param name="index">Attribute index.</param>
        /// <param name="value">Updated value.</param>
        /// <returns></returns>
        private static GXValueField UpdateProperty(IGXDLMSView view, ControlCollection controls, int index, object value)
        {
            GXValueField item = null;

            foreach (Control it in controls)
            {
                if (it is GXValueField)
                {
                    GXValueField obj = it as GXValueField;
                    if (obj.Index == index)
                    {
                        obj.Target = view.Target;
                        obj.UpdateValueItems(view.Target, index, value);
                        if (obj.Index != 1 && view.Target.GetLastReadTime(index) == DateTime.MinValue &&
                            obj.Type != ValueFieldType.CheckedListBox)
                        {
                            obj.Value = null;
                        }
                        else
                        {
                            obj.Value = value;
                        }
                        item = obj;
                    }
                }
                else if (it is GXButton)
                {
                    //Do nothing.
                }
                else if (it.Controls.Count != 0)
                {
                    item = UpdateProperty(view, it.Controls, index, value);
                }
                if (item != null)
                {
                    break;
                }
            }
            return(item);
        }
Пример #9
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSPrimeNbOfdmPlcMacFunctionalParametersView));
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.CapabilitiesCb        = new Gurux.DLMS.UI.GXValueField();
     this.CapabilitiesLbl       = new System.Windows.Forms.Label();
     this.BeaconTXFrequencyTb   = new Gurux.DLMS.UI.GXValueField();
     this.BeaconTXFrequencyLbl  = new System.Windows.Forms.Label();
     this.BeaconRXFrequencyTb   = new Gurux.DLMS.UI.GXValueField();
     this.BeaconRXFrequencyLbl  = new System.Windows.Forms.Label();
     this.BeaconTXSlotTb        = new Gurux.DLMS.UI.GXValueField();
     this.BeaconTXSlotLbl       = new System.Windows.Forms.Label();
     this.BeaconRXSlotTb        = new Gurux.DLMS.UI.GXValueField();
     this.BeaconRXSlotLbl       = new System.Windows.Forms.Label();
     this.BeaconSlotCountTb     = new Gurux.DLMS.UI.GXValueField();
     this.BeaconSlotCountLbl    = new System.Windows.Forms.Label();
     this.NodeHierarchyLevelTb  = new Gurux.DLMS.UI.GXValueField();
     this.NodeHierarchyLevelLbl = new System.Windows.Forms.Label();
     this.SCPLengtTb            = new Gurux.DLMS.UI.GXValueField();
     this.SCPLengtLbl           = new System.Windows.Forms.Label();
     this.StateTb        = new Gurux.DLMS.UI.GXValueField();
     this.StateLbl       = new System.Windows.Forms.Label();
     this.SNATb          = new Gurux.DLMS.UI.GXValueField();
     this.SNALbl         = new System.Windows.Forms.Label();
     this.SIDTb          = new Gurux.DLMS.UI.GXValueField();
     this.SIDLbl         = new System.Windows.Forms.Label();
     this.LSIDTb         = new Gurux.DLMS.UI.GXValueField();
     this.LSIDLbl        = new System.Windows.Forms.Label();
     this.LNIDTb         = new Gurux.DLMS.UI.GXValueField();
     this.LNIDLbl        = new System.Windows.Forms.Label();
     this.DescriptionLbl = new System.Windows.Forms.Label();
     this.DescriptionTB  = new System.Windows.Forms.TextBox();
     this.LogicalNameTB  = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl = new System.Windows.Forms.Label();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.CapabilitiesCb);
     this.groupBox1.Controls.Add(this.CapabilitiesLbl);
     this.groupBox1.Controls.Add(this.BeaconTXFrequencyTb);
     this.groupBox1.Controls.Add(this.BeaconTXFrequencyLbl);
     this.groupBox1.Controls.Add(this.BeaconRXFrequencyTb);
     this.groupBox1.Controls.Add(this.BeaconRXFrequencyLbl);
     this.groupBox1.Controls.Add(this.BeaconTXSlotTb);
     this.groupBox1.Controls.Add(this.BeaconTXSlotLbl);
     this.groupBox1.Controls.Add(this.BeaconRXSlotTb);
     this.groupBox1.Controls.Add(this.BeaconRXSlotLbl);
     this.groupBox1.Controls.Add(this.BeaconSlotCountTb);
     this.groupBox1.Controls.Add(this.BeaconSlotCountLbl);
     this.groupBox1.Controls.Add(this.NodeHierarchyLevelTb);
     this.groupBox1.Controls.Add(this.NodeHierarchyLevelLbl);
     this.groupBox1.Controls.Add(this.SCPLengtTb);
     this.groupBox1.Controls.Add(this.SCPLengtLbl);
     this.groupBox1.Controls.Add(this.StateTb);
     this.groupBox1.Controls.Add(this.StateLbl);
     this.groupBox1.Controls.Add(this.SNATb);
     this.groupBox1.Controls.Add(this.SNALbl);
     this.groupBox1.Controls.Add(this.SIDTb);
     this.groupBox1.Controls.Add(this.SIDLbl);
     this.groupBox1.Controls.Add(this.LSIDTb);
     this.groupBox1.Controls.Add(this.LSIDLbl);
     this.groupBox1.Controls.Add(this.LNIDTb);
     this.groupBox1.Controls.Add(this.LNIDLbl);
     this.groupBox1.Controls.Add(this.DescriptionLbl);
     this.groupBox1.Controls.Add(this.DescriptionTB);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(296, 608);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "PRIME NB OFDM PLC MAC functional parameters Object";
     //
     // CapabilitiesCb
     //
     this.CapabilitiesCb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.CapabilitiesCb.Index         = 14;
     this.CapabilitiesCb.Location      = new System.Drawing.Point(104, 383);
     this.CapabilitiesCb.Name          = "CapabilitiesCb";
     this.CapabilitiesCb.NotifyChanges = false;
     this.CapabilitiesCb.Size          = new System.Drawing.Size(171, 248);
     this.CapabilitiesCb.TabIndex      = 34;
     this.CapabilitiesCb.Type          = Gurux.DLMS.Enums.ValueFieldType.CheckedListBox;
     this.CapabilitiesCb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.CapabilitiesCb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // CapabilitiesLbl
     //
     this.CapabilitiesLbl.AutoSize = true;
     this.CapabilitiesLbl.Location = new System.Drawing.Point(8, 386);
     this.CapabilitiesLbl.Name     = "CapabilitiesLbl";
     this.CapabilitiesLbl.Size     = new System.Drawing.Size(63, 13);
     this.CapabilitiesLbl.TabIndex = 33;
     this.CapabilitiesLbl.Text     = "Capabilities:";
     //
     // BeaconTXFrequencyTb
     //
     this.BeaconTXFrequencyTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.BeaconTXFrequencyTb.Index         = 13;
     this.BeaconTXFrequencyTb.Location      = new System.Drawing.Point(131, 357);
     this.BeaconTXFrequencyTb.Name          = "BeaconTXFrequencyTb";
     this.BeaconTXFrequencyTb.NotifyChanges = false;
     this.BeaconTXFrequencyTb.Size          = new System.Drawing.Size(144, 20);
     this.BeaconTXFrequencyTb.TabIndex      = 32;
     this.BeaconTXFrequencyTb.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.BeaconTXFrequencyTb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.BeaconTXFrequencyTb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // BeaconTXFrequencyLbl
     //
     this.BeaconTXFrequencyLbl.AutoSize = true;
     this.BeaconTXFrequencyLbl.Location = new System.Drawing.Point(8, 360);
     this.BeaconTXFrequencyLbl.Name     = "BeaconTXFrequencyLbl";
     this.BeaconTXFrequencyLbl.Size     = new System.Drawing.Size(117, 13);
     this.BeaconTXFrequencyLbl.TabIndex = 31;
     this.BeaconTXFrequencyLbl.Text     = "Beacon TX Frequency:";
     //
     // BeaconRXFrequencyTb
     //
     this.BeaconRXFrequencyTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.BeaconRXFrequencyTb.Index         = 12;
     this.BeaconRXFrequencyTb.Location      = new System.Drawing.Point(130, 331);
     this.BeaconRXFrequencyTb.Name          = "BeaconRXFrequencyTb";
     this.BeaconRXFrequencyTb.NotifyChanges = false;
     this.BeaconRXFrequencyTb.Size          = new System.Drawing.Size(144, 20);
     this.BeaconRXFrequencyTb.TabIndex      = 30;
     this.BeaconRXFrequencyTb.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.BeaconRXFrequencyTb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.BeaconRXFrequencyTb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // BeaconRXFrequencyLbl
     //
     this.BeaconRXFrequencyLbl.AutoSize = true;
     this.BeaconRXFrequencyLbl.Location = new System.Drawing.Point(7, 334);
     this.BeaconRXFrequencyLbl.Name     = "BeaconRXFrequencyLbl";
     this.BeaconRXFrequencyLbl.Size     = new System.Drawing.Size(118, 13);
     this.BeaconRXFrequencyLbl.TabIndex = 29;
     this.BeaconRXFrequencyLbl.Text     = "Beacon RX Frequency:";
     //
     // BeaconTXSlotTb
     //
     this.BeaconTXSlotTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.BeaconTXSlotTb.Index         = 11;
     this.BeaconTXSlotTb.Location      = new System.Drawing.Point(130, 305);
     this.BeaconTXSlotTb.Name          = "BeaconTXSlotTb";
     this.BeaconTXSlotTb.NotifyChanges = false;
     this.BeaconTXSlotTb.Size          = new System.Drawing.Size(144, 20);
     this.BeaconTXSlotTb.TabIndex      = 28;
     this.BeaconTXSlotTb.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.BeaconTXSlotTb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.BeaconTXSlotTb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // BeaconTXSlotLbl
     //
     this.BeaconTXSlotLbl.AutoSize = true;
     this.BeaconTXSlotLbl.Location = new System.Drawing.Point(7, 308);
     this.BeaconTXSlotLbl.Name     = "BeaconTXSlotLbl";
     this.BeaconTXSlotLbl.Size     = new System.Drawing.Size(85, 13);
     this.BeaconTXSlotLbl.TabIndex = 27;
     this.BeaconTXSlotLbl.Text     = "Beacon TX Slot:";
     //
     // BeaconRXSlotTb
     //
     this.BeaconRXSlotTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.BeaconRXSlotTb.Index         = 10;
     this.BeaconRXSlotTb.Location      = new System.Drawing.Point(131, 279);
     this.BeaconRXSlotTb.Name          = "BeaconRXSlotTb";
     this.BeaconRXSlotTb.NotifyChanges = false;
     this.BeaconRXSlotTb.Size          = new System.Drawing.Size(144, 20);
     this.BeaconRXSlotTb.TabIndex      = 26;
     this.BeaconRXSlotTb.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.BeaconRXSlotTb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.BeaconRXSlotTb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // BeaconRXSlotLbl
     //
     this.BeaconRXSlotLbl.AutoSize = true;
     this.BeaconRXSlotLbl.Location = new System.Drawing.Point(8, 282);
     this.BeaconRXSlotLbl.Name     = "BeaconRXSlotLbl";
     this.BeaconRXSlotLbl.Size     = new System.Drawing.Size(86, 13);
     this.BeaconRXSlotLbl.TabIndex = 25;
     this.BeaconRXSlotLbl.Text     = "Beacon RX Slot:";
     //
     // BeaconSlotCountTb
     //
     this.BeaconSlotCountTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.BeaconSlotCountTb.Index         = 9;
     this.BeaconSlotCountTb.Location      = new System.Drawing.Point(131, 253);
     this.BeaconSlotCountTb.Name          = "BeaconSlotCountTb";
     this.BeaconSlotCountTb.NotifyChanges = false;
     this.BeaconSlotCountTb.Size          = new System.Drawing.Size(144, 20);
     this.BeaconSlotCountTb.TabIndex      = 24;
     this.BeaconSlotCountTb.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.BeaconSlotCountTb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.BeaconSlotCountTb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // BeaconSlotCountLbl
     //
     this.BeaconSlotCountLbl.AutoSize = true;
     this.BeaconSlotCountLbl.Location = new System.Drawing.Point(8, 256);
     this.BeaconSlotCountLbl.Name     = "BeaconSlotCountLbl";
     this.BeaconSlotCountLbl.Size     = new System.Drawing.Size(99, 13);
     this.BeaconSlotCountLbl.TabIndex = 23;
     this.BeaconSlotCountLbl.Text     = "Beacon Slot Count:";
     //
     // NodeHierarchyLevelTb
     //
     this.NodeHierarchyLevelTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.NodeHierarchyLevelTb.Index         = 8;
     this.NodeHierarchyLevelTb.Location      = new System.Drawing.Point(130, 227);
     this.NodeHierarchyLevelTb.Name          = "NodeHierarchyLevelTb";
     this.NodeHierarchyLevelTb.NotifyChanges = false;
     this.NodeHierarchyLevelTb.Size          = new System.Drawing.Size(144, 20);
     this.NodeHierarchyLevelTb.TabIndex      = 22;
     this.NodeHierarchyLevelTb.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.NodeHierarchyLevelTb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.NodeHierarchyLevelTb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // NodeHierarchyLevelLbl
     //
     this.NodeHierarchyLevelLbl.AutoSize = true;
     this.NodeHierarchyLevelLbl.Location = new System.Drawing.Point(7, 230);
     this.NodeHierarchyLevelLbl.Name     = "NodeHierarchyLevelLbl";
     this.NodeHierarchyLevelLbl.Size     = new System.Drawing.Size(113, 13);
     this.NodeHierarchyLevelLbl.TabIndex = 21;
     this.NodeHierarchyLevelLbl.Text     = "Node Hierarchy Level:";
     //
     // SCPLengtTb
     //
     this.SCPLengtTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.SCPLengtTb.Index         = 7;
     this.SCPLengtTb.Location      = new System.Drawing.Point(131, 201);
     this.SCPLengtTb.Name          = "SCPLengtTb";
     this.SCPLengtTb.NotifyChanges = false;
     this.SCPLengtTb.Size          = new System.Drawing.Size(144, 20);
     this.SCPLengtTb.TabIndex      = 20;
     this.SCPLengtTb.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.SCPLengtTb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.SCPLengtTb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // SCPLengtLbl
     //
     this.SCPLengtLbl.AutoSize = true;
     this.SCPLengtLbl.Location = new System.Drawing.Point(8, 204);
     this.SCPLengtLbl.Name     = "SCPLengtLbl";
     this.SCPLengtLbl.Size     = new System.Drawing.Size(61, 13);
     this.SCPLengtLbl.TabIndex = 19;
     this.SCPLengtLbl.Text     = "SCP Lengt:";
     //
     // StateTb
     //
     this.StateTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.StateTb.Index         = 6;
     this.StateTb.Location      = new System.Drawing.Point(131, 175);
     this.StateTb.Name          = "StateTb";
     this.StateTb.NotifyChanges = false;
     this.StateTb.Size          = new System.Drawing.Size(144, 20);
     this.StateTb.TabIndex      = 18;
     this.StateTb.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.StateTb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.StateTb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // StateLbl
     //
     this.StateLbl.AutoSize = true;
     this.StateLbl.Location = new System.Drawing.Point(8, 178);
     this.StateLbl.Name     = "StateLbl";
     this.StateLbl.Size     = new System.Drawing.Size(35, 13);
     this.StateLbl.TabIndex = 17;
     this.StateLbl.Text     = "State:";
     //
     // SNATb
     //
     this.SNATb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.SNATb.Index         = 5;
     this.SNATb.Location      = new System.Drawing.Point(130, 149);
     this.SNATb.Name          = "SNATb";
     this.SNATb.NotifyChanges = false;
     this.SNATb.Size          = new System.Drawing.Size(144, 20);
     this.SNATb.TabIndex      = 16;
     this.SNATb.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.SNATb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.SNATb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // SNALbl
     //
     this.SNALbl.AutoSize = true;
     this.SNALbl.Location = new System.Drawing.Point(7, 152);
     this.SNALbl.Name     = "SNALbl";
     this.SNALbl.Size     = new System.Drawing.Size(32, 13);
     this.SNALbl.TabIndex = 15;
     this.SNALbl.Text     = "SNA:";
     //
     // SIDTb
     //
     this.SIDTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.SIDTb.Index         = 4;
     this.SIDTb.Location      = new System.Drawing.Point(131, 123);
     this.SIDTb.Name          = "SIDTb";
     this.SIDTb.NotifyChanges = false;
     this.SIDTb.Size          = new System.Drawing.Size(144, 20);
     this.SIDTb.TabIndex      = 14;
     this.SIDTb.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.SIDTb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.SIDTb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // SIDLbl
     //
     this.SIDLbl.AutoSize = true;
     this.SIDLbl.Location = new System.Drawing.Point(8, 126);
     this.SIDLbl.Name     = "SIDLbl";
     this.SIDLbl.Size     = new System.Drawing.Size(28, 13);
     this.SIDLbl.TabIndex = 13;
     this.SIDLbl.Text     = "SID:";
     //
     // LSIDTb
     //
     this.LSIDTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.LSIDTb.Index         = 3;
     this.LSIDTb.Location      = new System.Drawing.Point(130, 97);
     this.LSIDTb.Name          = "LSIDTb";
     this.LSIDTb.NotifyChanges = false;
     this.LSIDTb.Size          = new System.Drawing.Size(144, 20);
     this.LSIDTb.TabIndex      = 12;
     this.LSIDTb.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.LSIDTb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.LSIDTb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // LSIDLbl
     //
     this.LSIDLbl.AutoSize = true;
     this.LSIDLbl.Location = new System.Drawing.Point(7, 100);
     this.LSIDLbl.Name     = "LSIDLbl";
     this.LSIDLbl.Size     = new System.Drawing.Size(34, 13);
     this.LSIDLbl.TabIndex = 11;
     this.LSIDLbl.Text     = "LSID:";
     //
     // LNIDTb
     //
     this.LNIDTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.LNIDTb.Index         = 2;
     this.LNIDTb.Location      = new System.Drawing.Point(130, 71);
     this.LNIDTb.Name          = "LNIDTb";
     this.LNIDTb.NotifyChanges = false;
     this.LNIDTb.Size          = new System.Drawing.Size(144, 20);
     this.LNIDTb.TabIndex      = 10;
     this.LNIDTb.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.LNIDTb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.LNIDTb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // LNIDLbl
     //
     this.LNIDLbl.AutoSize = true;
     this.LNIDLbl.Location = new System.Drawing.Point(7, 74);
     this.LNIDLbl.Name     = "LNIDLbl";
     this.LNIDLbl.Size     = new System.Drawing.Size(35, 13);
     this.LNIDLbl.TabIndex = 9;
     this.LNIDLbl.Text     = "LNID:";
     //
     // DescriptionLbl
     //
     this.DescriptionLbl.AutoSize = true;
     this.DescriptionLbl.Location = new System.Drawing.Point(7, 22);
     this.DescriptionLbl.Name     = "DescriptionLbl";
     this.DescriptionLbl.Size     = new System.Drawing.Size(63, 13);
     this.DescriptionLbl.TabIndex = 5;
     this.DescriptionLbl.Text     = "Description:";
     //
     // DescriptionTB
     //
     this.DescriptionTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.DescriptionTB.Location = new System.Drawing.Point(103, 19);
     this.DescriptionTB.Name     = "DescriptionTB";
     this.DescriptionTB.ReadOnly = true;
     this.DescriptionTB.Size     = new System.Drawing.Size(172, 20);
     this.DescriptionTB.TabIndex = 1;
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index         = 1;
     this.LogicalNameTB.Location      = new System.Drawing.Point(103, 45);
     this.LogicalNameTB.Name          = "LogicalNameTB";
     this.LogicalNameTB.NotifyChanges = false;
     this.LogicalNameTB.Size          = new System.Drawing.Size(171, 20);
     this.LogicalNameTB.TabIndex      = 2;
     this.LogicalNameTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(7, 48);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSPrimeNbOfdmPlcMacFunctionalParametersView
     //
     this.ClientSize = new System.Drawing.Size(320, 632);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSPrimeNbOfdmPlcMacFunctionalParametersView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSIEC14908PhysicalStatusView));
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.MessagesValidatedTB   = new Gurux.DLMS.UI.GXValueField();
     this.MessagesValidatedLbl  = new System.Windows.Forms.Label();
     this.MessagesReceivedTB    = new Gurux.DLMS.UI.GXValueField();
     this.MessagesReceivedLbl   = new System.Windows.Forms.Label();
     this.Layer3ReceivedTB      = new Gurux.DLMS.UI.GXValueField();
     this.Layer3ReceivedLbl     = new System.Windows.Forms.Label();
     this.Layer2ReceivedTB      = new Gurux.DLMS.UI.GXValueField();
     this.Layer2ReceivedLbl     = new System.Windows.Forms.Label();
     this.MissedMessagesTB      = new Gurux.DLMS.UI.GXValueField();
     this.MissedMessagesLbl     = new System.Windows.Forms.Label();
     this.LostMessagesTB        = new Gurux.DLMS.UI.GXValueField();
     this.LostMessagesLbl       = new System.Windows.Forms.Label();
     this.ReceiveFullTB         = new Gurux.DLMS.UI.GXValueField();
     this.ReceiveFullLbl        = new System.Windows.Forms.Label();
     this.TransmitRetriesTB     = new Gurux.DLMS.UI.GXValueField();
     this.TransmitRetriesLbl    = new System.Windows.Forms.Label();
     this.TransmitFailureTB     = new Gurux.DLMS.UI.GXValueField();
     this.TransmitFailureLbl    = new System.Windows.Forms.Label();
     this.TransmissionErrorsTB  = new Gurux.DLMS.UI.GXValueField();
     this.TransmissionErrorsLbl = new System.Windows.Forms.Label();
     this.LogicalNameTB         = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl        = new System.Windows.Forms.Label();
     this.errorProvider1        = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.MessagesValidatedTB);
     this.groupBox1.Controls.Add(this.MessagesValidatedLbl);
     this.groupBox1.Controls.Add(this.MessagesReceivedTB);
     this.groupBox1.Controls.Add(this.MessagesReceivedLbl);
     this.groupBox1.Controls.Add(this.Layer3ReceivedTB);
     this.groupBox1.Controls.Add(this.Layer3ReceivedLbl);
     this.groupBox1.Controls.Add(this.Layer2ReceivedTB);
     this.groupBox1.Controls.Add(this.Layer2ReceivedLbl);
     this.groupBox1.Controls.Add(this.MissedMessagesTB);
     this.groupBox1.Controls.Add(this.MissedMessagesLbl);
     this.groupBox1.Controls.Add(this.LostMessagesTB);
     this.groupBox1.Controls.Add(this.LostMessagesLbl);
     this.groupBox1.Controls.Add(this.ReceiveFullTB);
     this.groupBox1.Controls.Add(this.ReceiveFullLbl);
     this.groupBox1.Controls.Add(this.TransmitRetriesTB);
     this.groupBox1.Controls.Add(this.TransmitRetriesLbl);
     this.groupBox1.Controls.Add(this.TransmitFailureTB);
     this.groupBox1.Controls.Add(this.TransmitFailureLbl);
     this.groupBox1.Controls.Add(this.TransmissionErrorsTB);
     this.groupBox1.Controls.Add(this.TransmissionErrorsLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(348, 312);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = " IEC 14908 Physical status Object";
     this.groupBox1.UseCompatibleTextRendering = true;
     //
     // MessagesValidatedTB
     //
     this.MessagesValidatedTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.MessagesValidatedTB.Index    = 11;
     this.MessagesValidatedTB.Location = new System.Drawing.Point(136, 280);
     this.MessagesValidatedTB.Name     = "MessagesValidatedTB";
     this.MessagesValidatedTB.Size     = new System.Drawing.Size(206, 20);
     this.MessagesValidatedTB.TabIndex = 19;
     this.MessagesValidatedTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // MessagesValidatedLbl
     //
     this.MessagesValidatedLbl.AutoSize = true;
     this.MessagesValidatedLbl.Location = new System.Drawing.Point(6, 283);
     this.MessagesValidatedLbl.Name     = "MessagesValidatedLbl";
     this.MessagesValidatedLbl.Size     = new System.Drawing.Size(104, 13);
     this.MessagesValidatedLbl.TabIndex = 20;
     this.MessagesValidatedLbl.Text     = "Messages validated:";
     //
     // MessagesReceivedTB
     //
     this.MessagesReceivedTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.MessagesReceivedTB.Index    = 10;
     this.MessagesReceivedTB.Location = new System.Drawing.Point(136, 254);
     this.MessagesReceivedTB.Name     = "MessagesReceivedTB";
     this.MessagesReceivedTB.Size     = new System.Drawing.Size(206, 20);
     this.MessagesReceivedTB.TabIndex = 15;
     this.MessagesReceivedTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // MessagesReceivedLbl
     //
     this.MessagesReceivedLbl.AutoSize = true;
     this.MessagesReceivedLbl.Location = new System.Drawing.Point(6, 257);
     this.MessagesReceivedLbl.Name     = "MessagesReceivedLbl";
     this.MessagesReceivedLbl.Size     = new System.Drawing.Size(102, 13);
     this.MessagesReceivedLbl.TabIndex = 18;
     this.MessagesReceivedLbl.Text     = "Messages received:";
     //
     // Layer3ReceivedTB
     //
     this.Layer3ReceivedTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.Layer3ReceivedTB.Index    = 9;
     this.Layer3ReceivedTB.Location = new System.Drawing.Point(136, 228);
     this.Layer3ReceivedTB.Name     = "Layer3ReceivedTB";
     this.Layer3ReceivedTB.Size     = new System.Drawing.Size(206, 20);
     this.Layer3ReceivedTB.TabIndex = 14;
     this.Layer3ReceivedTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // Layer3ReceivedLbl
     //
     this.Layer3ReceivedLbl.AutoSize = true;
     this.Layer3ReceivedLbl.Location = new System.Drawing.Point(6, 231);
     this.Layer3ReceivedLbl.Name     = "Layer3ReceivedLbl";
     this.Layer3ReceivedLbl.Size     = new System.Drawing.Size(86, 13);
     this.Layer3ReceivedLbl.TabIndex = 17;
     this.Layer3ReceivedLbl.Text     = "Layer3 received:";
     //
     // Layer2ReceivedTB
     //
     this.Layer2ReceivedTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.Layer2ReceivedTB.Index    = 8;
     this.Layer2ReceivedTB.Location = new System.Drawing.Point(136, 202);
     this.Layer2ReceivedTB.Name     = "Layer2ReceivedTB";
     this.Layer2ReceivedTB.Size     = new System.Drawing.Size(206, 20);
     this.Layer2ReceivedTB.TabIndex = 12;
     this.Layer2ReceivedTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // Layer2ReceivedLbl
     //
     this.Layer2ReceivedLbl.AutoSize = true;
     this.Layer2ReceivedLbl.Location = new System.Drawing.Point(6, 205);
     this.Layer2ReceivedLbl.Name     = "Layer2ReceivedLbl";
     this.Layer2ReceivedLbl.Size     = new System.Drawing.Size(86, 13);
     this.Layer2ReceivedLbl.TabIndex = 16;
     this.Layer2ReceivedLbl.Text     = "Layer2 received:";
     //
     // MissedMessagesTB
     //
     this.MissedMessagesTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.MissedMessagesTB.Index    = 7;
     this.MissedMessagesTB.Location = new System.Drawing.Point(136, 176);
     this.MissedMessagesTB.Name     = "MissedMessagesTB";
     this.MissedMessagesTB.Size     = new System.Drawing.Size(206, 20);
     this.MissedMessagesTB.TabIndex = 11;
     this.MissedMessagesTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // MissedMessagesLbl
     //
     this.MissedMessagesLbl.AutoSize = true;
     this.MissedMessagesLbl.Location = new System.Drawing.Point(6, 179);
     this.MissedMessagesLbl.Name     = "MissedMessagesLbl";
     this.MissedMessagesLbl.Size     = new System.Drawing.Size(93, 13);
     this.MissedMessagesLbl.TabIndex = 13;
     this.MissedMessagesLbl.Text     = "Missed messages:";
     //
     // LostMessagesTB
     //
     this.LostMessagesTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.LostMessagesTB.Index    = 6;
     this.LostMessagesTB.Location = new System.Drawing.Point(136, 151);
     this.LostMessagesTB.Name     = "LostMessagesTB";
     this.LostMessagesTB.Size     = new System.Drawing.Size(206, 20);
     this.LostMessagesTB.TabIndex = 9;
     this.LostMessagesTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // LostMessagesLbl
     //
     this.LostMessagesLbl.AutoSize = true;
     this.LostMessagesLbl.Location = new System.Drawing.Point(6, 154);
     this.LostMessagesLbl.Name     = "LostMessagesLbl";
     this.LostMessagesLbl.Size     = new System.Drawing.Size(80, 13);
     this.LostMessagesLbl.TabIndex = 10;
     this.LostMessagesLbl.Text     = "Lost messages:";
     //
     // ReceiveFullTB
     //
     this.ReceiveFullTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.ReceiveFullTB.Index    = 5;
     this.ReceiveFullTB.Location = new System.Drawing.Point(136, 125);
     this.ReceiveFullTB.Name     = "ReceiveFullTB";
     this.ReceiveFullTB.Size     = new System.Drawing.Size(206, 20);
     this.ReceiveFullTB.TabIndex = 4;
     this.ReceiveFullTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // ReceiveFullLbl
     //
     this.ReceiveFullLbl.AutoSize = true;
     this.ReceiveFullLbl.Location = new System.Drawing.Point(6, 128);
     this.ReceiveFullLbl.Name     = "ReceiveFullLbl";
     this.ReceiveFullLbl.Size     = new System.Drawing.Size(66, 13);
     this.ReceiveFullLbl.TabIndex = 8;
     this.ReceiveFullLbl.Text     = "Receive full:";
     //
     // TransmitRetriesTB
     //
     this.TransmitRetriesTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.TransmitRetriesTB.Index    = 4;
     this.TransmitRetriesTB.Location = new System.Drawing.Point(136, 99);
     this.TransmitRetriesTB.Name     = "TransmitRetriesTB";
     this.TransmitRetriesTB.Size     = new System.Drawing.Size(206, 20);
     this.TransmitRetriesTB.TabIndex = 3;
     this.TransmitRetriesTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // TransmitRetriesLbl
     //
     this.TransmitRetriesLbl.AutoSize = true;
     this.TransmitRetriesLbl.Location = new System.Drawing.Point(6, 102);
     this.TransmitRetriesLbl.Name     = "TransmitRetriesLbl";
     this.TransmitRetriesLbl.Size     = new System.Drawing.Size(81, 13);
     this.TransmitRetriesLbl.TabIndex = 6;
     this.TransmitRetriesLbl.Text     = "Transmit retries:";
     //
     // TransmitFailureTB
     //
     this.TransmitFailureTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.TransmitFailureTB.Index    = 3;
     this.TransmitFailureTB.Location = new System.Drawing.Point(136, 73);
     this.TransmitFailureTB.Name     = "TransmitFailureTB";
     this.TransmitFailureTB.Size     = new System.Drawing.Size(206, 20);
     this.TransmitFailureTB.TabIndex = 2;
     this.TransmitFailureTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // TransmitFailureLbl
     //
     this.TransmitFailureLbl.AutoSize = true;
     this.TransmitFailureLbl.Location = new System.Drawing.Point(6, 76);
     this.TransmitFailureLbl.Name     = "TransmitFailureLbl";
     this.TransmitFailureLbl.Size     = new System.Drawing.Size(81, 13);
     this.TransmitFailureLbl.TabIndex = 4;
     this.TransmitFailureLbl.Text     = "Transmit failure:";
     //
     // TransmissionErrorsTB
     //
     this.TransmissionErrorsTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.TransmissionErrorsTB.Index    = 2;
     this.TransmissionErrorsTB.Location = new System.Drawing.Point(136, 47);
     this.TransmissionErrorsTB.Name     = "TransmissionErrorsTB";
     this.TransmissionErrorsTB.Size     = new System.Drawing.Size(206, 20);
     this.TransmissionErrorsTB.TabIndex = 1;
     this.TransmissionErrorsTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // TransmissionErrorsLbl
     //
     this.TransmissionErrorsLbl.AutoSize = true;
     this.TransmissionErrorsLbl.Location = new System.Drawing.Point(6, 50);
     this.TransmissionErrorsLbl.Name     = "TransmissionErrorsLbl";
     this.TransmissionErrorsLbl.Size     = new System.Drawing.Size(100, 13);
     this.TransmissionErrorsLbl.TabIndex = 2;
     this.TransmissionErrorsLbl.Text     = "Transmission errors:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index    = 1;
     this.LogicalNameTB.Location = new System.Drawing.Point(136, 21);
     this.LogicalNameTB.Name     = "LogicalNameTB";
     this.LogicalNameTB.Size     = new System.Drawing.Size(206, 20);
     this.LogicalNameTB.TabIndex = 0;
     this.LogicalNameTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSIEC14908PhysicalStatusView
     //
     this.ClientSize = new System.Drawing.Size(372, 337);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSIEC14908PhysicalStatusView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #11
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSIEC14908DiagnosticView));
     this.groupBox1                    = new System.Windows.Forms.GroupBox();
     this.PlcTestRateTB                = new Gurux.DLMS.UI.GXValueField();
     this.PlcTestRateLbl               = new System.Windows.Forms.Label();
     this.FrequencyInvalidTB           = new Gurux.DLMS.UI.GXValueField();
     this.FrequencyInvalidLbl          = new System.Windows.Forms.Label();
     this.LateAckTB                    = new Gurux.DLMS.UI.GXValueField();
     this.LateAckLbl                   = new System.Windows.Forms.Label();
     this.BacklogOverflowsTB           = new Gurux.DLMS.UI.GXValueField();
     this.BacklogOverflowsLbl          = new System.Windows.Forms.Label();
     this.UnexpectedPlcCommandCountTB  = new Gurux.DLMS.UI.GXValueField();
     this.UnexpectedPlcCommandCountLbl = new System.Windows.Forms.Label();
     this.TransmitNoDataTB             = new Gurux.DLMS.UI.GXValueField();
     this.TransmitNoDataLbl            = new System.Windows.Forms.Label();
     this.NoReceiveBufferTB            = new Gurux.DLMS.UI.GXValueField();
     this.NoReceiveBufferLbl           = new System.Windows.Forms.Label();
     this.ReceivedMessageStatusTB      = new Gurux.DLMS.UI.GXValueField();
     this.ReceivedMessageStatusLbl     = new System.Windows.Forms.Label();
     this.TransceiverStateTB           = new Gurux.DLMS.UI.GXValueField();
     this.TransceiverStateLbl          = new System.Windows.Forms.Label();
     this.PlcSignalQualityStatusTB     = new Gurux.DLMS.UI.GXValueField();
     this.PlcSignalQualityStatusLbl    = new System.Windows.Forms.Label();
     this.LogicalNameTB                = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl               = new System.Windows.Forms.Label();
     this.errorProvider1               = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.PlcTestRateTB);
     this.groupBox1.Controls.Add(this.PlcTestRateLbl);
     this.groupBox1.Controls.Add(this.FrequencyInvalidTB);
     this.groupBox1.Controls.Add(this.FrequencyInvalidLbl);
     this.groupBox1.Controls.Add(this.LateAckTB);
     this.groupBox1.Controls.Add(this.LateAckLbl);
     this.groupBox1.Controls.Add(this.BacklogOverflowsTB);
     this.groupBox1.Controls.Add(this.BacklogOverflowsLbl);
     this.groupBox1.Controls.Add(this.UnexpectedPlcCommandCountTB);
     this.groupBox1.Controls.Add(this.UnexpectedPlcCommandCountLbl);
     this.groupBox1.Controls.Add(this.TransmitNoDataTB);
     this.groupBox1.Controls.Add(this.TransmitNoDataLbl);
     this.groupBox1.Controls.Add(this.NoReceiveBufferTB);
     this.groupBox1.Controls.Add(this.NoReceiveBufferLbl);
     this.groupBox1.Controls.Add(this.ReceivedMessageStatusTB);
     this.groupBox1.Controls.Add(this.ReceivedMessageStatusLbl);
     this.groupBox1.Controls.Add(this.TransceiverStateTB);
     this.groupBox1.Controls.Add(this.TransceiverStateLbl);
     this.groupBox1.Controls.Add(this.PlcSignalQualityStatusTB);
     this.groupBox1.Controls.Add(this.PlcSignalQualityStatusLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(348, 312);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = " IEC 14908  Diagnostic Object";
     this.groupBox1.UseCompatibleTextRendering = true;
     //
     // PlcTestRateTB
     //
     this.PlcTestRateTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.PlcTestRateTB.Index    = 11;
     this.PlcTestRateTB.Location = new System.Drawing.Point(136, 280);
     this.PlcTestRateTB.Name     = "PlcTestRateTB";
     this.PlcTestRateTB.Size     = new System.Drawing.Size(206, 20);
     this.PlcTestRateTB.TabIndex = 19;
     this.PlcTestRateTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // PlcTestRateLbl
     //
     this.PlcTestRateLbl.AutoSize = true;
     this.PlcTestRateLbl.Location = new System.Drawing.Point(6, 283);
     this.PlcTestRateLbl.Name     = "PlcTestRateLbl";
     this.PlcTestRateLbl.Size     = new System.Drawing.Size(71, 13);
     this.PlcTestRateLbl.TabIndex = 20;
     this.PlcTestRateLbl.Text     = "PLC test rate:";
     //
     // FrequencyInvalidTB
     //
     this.FrequencyInvalidTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.FrequencyInvalidTB.Index    = 10;
     this.FrequencyInvalidTB.Location = new System.Drawing.Point(136, 254);
     this.FrequencyInvalidTB.Name     = "FrequencyInvalidTB";
     this.FrequencyInvalidTB.Size     = new System.Drawing.Size(206, 20);
     this.FrequencyInvalidTB.TabIndex = 15;
     this.FrequencyInvalidTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // FrequencyInvalidLbl
     //
     this.FrequencyInvalidLbl.AutoSize = true;
     this.FrequencyInvalidLbl.Location = new System.Drawing.Point(6, 257);
     this.FrequencyInvalidLbl.Name     = "FrequencyInvalidLbl";
     this.FrequencyInvalidLbl.Size     = new System.Drawing.Size(93, 13);
     this.FrequencyInvalidLbl.TabIndex = 18;
     this.FrequencyInvalidLbl.Text     = "Frequency invalid:";
     //
     // LateAckTB
     //
     this.LateAckTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.LateAckTB.Index    = 9;
     this.LateAckTB.Location = new System.Drawing.Point(136, 228);
     this.LateAckTB.Name     = "LateAckTB";
     this.LateAckTB.Size     = new System.Drawing.Size(206, 20);
     this.LateAckTB.TabIndex = 14;
     this.LateAckTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LateAckLbl
     //
     this.LateAckLbl.AutoSize = true;
     this.LateAckLbl.Location = new System.Drawing.Point(6, 231);
     this.LateAckLbl.Name     = "LateAckLbl";
     this.LateAckLbl.Size     = new System.Drawing.Size(55, 13);
     this.LateAckLbl.TabIndex = 17;
     this.LateAckLbl.Text     = "Late ACK:";
     //
     // BacklogOverflowsTB
     //
     this.BacklogOverflowsTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.BacklogOverflowsTB.Index    = 8;
     this.BacklogOverflowsTB.Location = new System.Drawing.Point(136, 202);
     this.BacklogOverflowsTB.Name     = "BacklogOverflowsTB";
     this.BacklogOverflowsTB.Size     = new System.Drawing.Size(206, 20);
     this.BacklogOverflowsTB.TabIndex = 12;
     this.BacklogOverflowsTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // BacklogOverflowsLbl
     //
     this.BacklogOverflowsLbl.AutoSize = true;
     this.BacklogOverflowsLbl.Location = new System.Drawing.Point(6, 205);
     this.BacklogOverflowsLbl.Name     = "BacklogOverflowsLbl";
     this.BacklogOverflowsLbl.Size     = new System.Drawing.Size(97, 13);
     this.BacklogOverflowsLbl.TabIndex = 16;
     this.BacklogOverflowsLbl.Text     = "Backlog overflows:";
     //
     // UnexpectedPlcCommandCountTB
     //
     this.UnexpectedPlcCommandCountTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.UnexpectedPlcCommandCountTB.Index    = 7;
     this.UnexpectedPlcCommandCountTB.Location = new System.Drawing.Point(136, 176);
     this.UnexpectedPlcCommandCountTB.Name     = "UnexpectedPlcCommandCountTB";
     this.UnexpectedPlcCommandCountTB.Size     = new System.Drawing.Size(206, 20);
     this.UnexpectedPlcCommandCountTB.TabIndex = 11;
     this.UnexpectedPlcCommandCountTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // UnexpectedPlcCommandCountLbl
     //
     this.UnexpectedPlcCommandCountLbl.AutoSize = true;
     this.UnexpectedPlcCommandCountLbl.Location = new System.Drawing.Point(6, 179);
     this.UnexpectedPlcCommandCountLbl.Name     = "UnexpectedPlcCommandCountLbl";
     this.UnexpectedPlcCommandCountLbl.Size     = new System.Drawing.Size(99, 13);
     this.UnexpectedPlcCommandCountLbl.TabIndex = 13;
     this.UnexpectedPlcCommandCountLbl.Text     = "Unexpected Count:";
     //
     // TransmitNoDataTB
     //
     this.TransmitNoDataTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.TransmitNoDataTB.Index    = 6;
     this.TransmitNoDataTB.Location = new System.Drawing.Point(136, 151);
     this.TransmitNoDataTB.Name     = "TransmitNoDataTB";
     this.TransmitNoDataTB.Size     = new System.Drawing.Size(206, 20);
     this.TransmitNoDataTB.TabIndex = 9;
     this.TransmitNoDataTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // TransmitNoDataLbl
     //
     this.TransmitNoDataLbl.AutoSize = true;
     this.TransmitNoDataLbl.Location = new System.Drawing.Point(6, 154);
     this.TransmitNoDataLbl.Name     = "TransmitNoDataLbl";
     this.TransmitNoDataLbl.Size     = new System.Drawing.Size(93, 13);
     this.TransmitNoDataLbl.TabIndex = 10;
     this.TransmitNoDataLbl.Text     = "Transmit No Data:";
     //
     // NoReceiveBufferTB
     //
     this.NoReceiveBufferTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.NoReceiveBufferTB.Index    = 5;
     this.NoReceiveBufferTB.Location = new System.Drawing.Point(136, 125);
     this.NoReceiveBufferTB.Name     = "NoReceiveBufferTB";
     this.NoReceiveBufferTB.Size     = new System.Drawing.Size(206, 20);
     this.NoReceiveBufferTB.TabIndex = 4;
     this.NoReceiveBufferTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // NoReceiveBufferLbl
     //
     this.NoReceiveBufferLbl.AutoSize = true;
     this.NoReceiveBufferLbl.Location = new System.Drawing.Point(6, 128);
     this.NoReceiveBufferLbl.Name     = "NoReceiveBufferLbl";
     this.NoReceiveBufferLbl.Size     = new System.Drawing.Size(98, 13);
     this.NoReceiveBufferLbl.TabIndex = 8;
     this.NoReceiveBufferLbl.Text     = "No Receive Buffer:";
     //
     // ReceivedMessageStatusTB
     //
     this.ReceivedMessageStatusTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ReceivedMessageStatusTB.Index    = 4;
     this.ReceivedMessageStatusTB.Location = new System.Drawing.Point(136, 99);
     this.ReceivedMessageStatusTB.Name     = "ReceivedMessageStatusTB";
     this.ReceivedMessageStatusTB.Size     = new System.Drawing.Size(206, 20);
     this.ReceivedMessageStatusTB.TabIndex = 3;
     this.ReceivedMessageStatusTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // ReceivedMessageStatusLbl
     //
     this.ReceivedMessageStatusLbl.AutoSize = true;
     this.ReceivedMessageStatusLbl.Location = new System.Drawing.Point(6, 102);
     this.ReceivedMessageStatusLbl.Name     = "ReceivedMessageStatusLbl";
     this.ReceivedMessageStatusLbl.Size     = new System.Drawing.Size(132, 13);
     this.ReceivedMessageStatusLbl.TabIndex = 6;
     this.ReceivedMessageStatusLbl.Text     = "Received message status:";
     //
     // TransceiverStateTB
     //
     this.TransceiverStateTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.TransceiverStateTB.Index    = 3;
     this.TransceiverStateTB.Location = new System.Drawing.Point(136, 73);
     this.TransceiverStateTB.Name     = "TransceiverStateTB";
     this.TransceiverStateTB.Size     = new System.Drawing.Size(206, 20);
     this.TransceiverStateTB.TabIndex = 2;
     this.TransceiverStateTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // TransceiverStateLbl
     //
     this.TransceiverStateLbl.AutoSize = true;
     this.TransceiverStateLbl.Location = new System.Drawing.Point(6, 76);
     this.TransceiverStateLbl.Name     = "TransceiverStateLbl";
     this.TransceiverStateLbl.Size     = new System.Drawing.Size(92, 13);
     this.TransceiverStateLbl.TabIndex = 4;
     this.TransceiverStateLbl.Text     = "Transceiver state:";
     //
     // PlcSignalQualityStatusTB
     //
     this.PlcSignalQualityStatusTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.PlcSignalQualityStatusTB.Index    = 2;
     this.PlcSignalQualityStatusTB.Location = new System.Drawing.Point(136, 47);
     this.PlcSignalQualityStatusTB.Name     = "PlcSignalQualityStatusTB";
     this.PlcSignalQualityStatusTB.Size     = new System.Drawing.Size(206, 20);
     this.PlcSignalQualityStatusTB.TabIndex = 1;
     this.PlcSignalQualityStatusTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // PlcSignalQualityStatusLbl
     //
     this.PlcSignalQualityStatusLbl.AutoSize = true;
     this.PlcSignalQualityStatusLbl.Location = new System.Drawing.Point(6, 50);
     this.PlcSignalQualityStatusLbl.Name     = "PlcSignalQualityStatusLbl";
     this.PlcSignalQualityStatusLbl.Size     = new System.Drawing.Size(124, 13);
     this.PlcSignalQualityStatusLbl.TabIndex = 2;
     this.PlcSignalQualityStatusLbl.Text     = "PLC signal quality status:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index    = 1;
     this.LogicalNameTB.Location = new System.Drawing.Point(136, 21);
     this.LogicalNameTB.Name     = "LogicalNameTB";
     this.LogicalNameTB.Size     = new System.Drawing.Size(206, 20);
     this.LogicalNameTB.TabIndex = 0;
     this.LogicalNameTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSIEC14908DiagnosticView
     //
     this.ClientSize = new System.Drawing.Size(372, 337);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSIEC14908DiagnosticView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #12
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSSpecialDaysTableView));
     this.groupBox1            = new System.Windows.Forms.GroupBox();
     this.CallingWindowLV      = new System.Windows.Forms.ListView();
     this.IndexHeader          = new System.Windows.Forms.ColumnHeader();
     this.SpecialDayDateHeader = new System.Windows.Forms.ColumnHeader();
     this.DayIdHeader          = new System.Windows.Forms.ColumnHeader();
     this.LogicalNameTB        = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl       = new System.Windows.Forms.Label();
     this.errorProvider1       = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.CallingWindowLV);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(333, 266);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Special Days Table Object";
     //
     // CallingWindowLV
     //
     this.CallingWindowLV.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                          | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.CallingWindowLV.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.IndexHeader,
         this.SpecialDayDateHeader,
         this.DayIdHeader
     });
     this.CallingWindowLV.FullRowSelect = true;
     this.CallingWindowLV.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.CallingWindowLV.HideSelection = false;
     this.CallingWindowLV.Location      = new System.Drawing.Point(6, 57);
     this.CallingWindowLV.Name          = "CallingWindowLV";
     this.CallingWindowLV.Size          = new System.Drawing.Size(304, 193);
     this.CallingWindowLV.TabIndex      = 9;
     this.CallingWindowLV.UseCompatibleStateImageBehavior = false;
     this.CallingWindowLV.View = System.Windows.Forms.View.Details;
     //
     // IndexHeader
     //
     this.IndexHeader.Text  = "Index:";
     this.IndexHeader.Width = 77;
     //
     // SpecialDayDateHeader
     //
     this.SpecialDayDateHeader.Text  = "Special Day Date:";
     this.SpecialDayDateHeader.Width = 115;
     //
     // DayIdHeader
     //
     this.DayIdHeader.Text = "Day ID:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index    = 1;
     this.LogicalNameTB.Location = new System.Drawing.Point(102, 21);
     this.LogicalNameTB.Name     = "LogicalNameTB";
     this.LogicalNameTB.Size     = new System.Drawing.Size(208, 20);
     this.LogicalNameTB.TabIndex = 1;
     this.LogicalNameTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSSpecialDaysTableView
     //
     this.ClientSize = new System.Drawing.Size(357, 290);
     this.Controls.Add(this.groupBox1);
     this.Name = "GXDLMSSpecialDaysTableView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSScriptTableView));
     this.groupBox1               = new System.Windows.Forms.GroupBox();
     this.UpdateTimeBtn           = new Gurux.DLMS.UI.GXButton();
     this.RemoveBtn               = new System.Windows.Forms.Button();
     this.EditBtn                 = new System.Windows.Forms.Button();
     this.AddBtn                  = new System.Windows.Forms.Button();
     this.ScriptsTree             = new System.Windows.Forms.TreeView();
     this.contextMenuStrip1       = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.ScriptsLbl              = new System.Windows.Forms.Label();
     this.LogicalNameTB           = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl          = new System.Windows.Forms.Label();
     this.errorProvider1          = new System.Windows.Forms.ErrorProvider(this.components);
     this.ScriptId                = new System.Windows.Forms.TextBox();
     this.label1                  = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.ScriptId);
     this.groupBox1.Controls.Add(this.UpdateTimeBtn);
     this.groupBox1.Controls.Add(this.RemoveBtn);
     this.groupBox1.Controls.Add(this.EditBtn);
     this.groupBox1.Controls.Add(this.AddBtn);
     this.groupBox1.Controls.Add(this.ScriptsTree);
     this.groupBox1.Controls.Add(this.ScriptsLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(474, 196);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Script Table Object";
     //
     // UpdateTimeBtn
     //
     this.UpdateTimeBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.UpdateTimeBtn.Index    = 1;
     this.UpdateTimeBtn.Location = new System.Drawing.Point(350, 21);
     this.UpdateTimeBtn.Name     = "UpdateTimeBtn";
     this.UpdateTimeBtn.Size     = new System.Drawing.Size(75, 23);
     this.UpdateTimeBtn.TabIndex = 4;
     this.UpdateTimeBtn.Text     = "Execute";
     this.UpdateTimeBtn.UseVisualStyleBackColor = true;
     //
     // RemoveBtn
     //
     this.RemoveBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.RemoveBtn.Location = new System.Drawing.Point(352, 167);
     this.RemoveBtn.Name     = "RemoveBtn";
     this.RemoveBtn.Size     = new System.Drawing.Size(75, 23);
     this.RemoveBtn.TabIndex = 3;
     this.RemoveBtn.Text     = "Remove...";
     this.RemoveBtn.UseVisualStyleBackColor = true;
     this.RemoveBtn.Click += new System.EventHandler(this.RemoveBtn_Click);
     //
     // EditBtn
     //
     this.EditBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.EditBtn.Location = new System.Drawing.Point(271, 167);
     this.EditBtn.Name     = "EditBtn";
     this.EditBtn.Size     = new System.Drawing.Size(75, 23);
     this.EditBtn.TabIndex = 2;
     this.EditBtn.Text     = "Edit...";
     this.EditBtn.UseVisualStyleBackColor = true;
     this.EditBtn.Click += new System.EventHandler(this.EditBtn_Click);
     //
     // AddBtn
     //
     this.AddBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.AddBtn.Location = new System.Drawing.Point(190, 167);
     this.AddBtn.Name     = "AddBtn";
     this.AddBtn.Size     = new System.Drawing.Size(75, 23);
     this.AddBtn.TabIndex = 1;
     this.AddBtn.Text     = "Add...";
     this.AddBtn.UseVisualStyleBackColor = true;
     this.AddBtn.Click += new System.EventHandler(this.AddBtn_Click);
     //
     // ScriptsTree
     //
     this.ScriptsTree.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.ScriptsTree.ContextMenuStrip = this.contextMenuStrip1;
     this.ScriptsTree.FullRowSelect    = true;
     this.ScriptsTree.HideSelection    = false;
     this.ScriptsTree.Indent           = 15;
     this.ScriptsTree.Location         = new System.Drawing.Point(102, 47);
     this.ScriptsTree.Name             = "ScriptsTree";
     this.ScriptsTree.Size             = new System.Drawing.Size(325, 114);
     this.ScriptsTree.TabIndex         = 0;
     this.ScriptsTree.AfterSelect     += new System.Windows.Forms.TreeViewEventHandler(this.ScriptsTree_AfterSelect);
     this.ScriptsTree.DoubleClick     += new System.EventHandler(this.ScriptsTree_DoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.addToolStripMenuItem,
         this.editToolStripMenuItem,
         this.removeToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(118, 70);
     //
     // addToolStripMenuItem
     //
     this.addToolStripMenuItem.Name   = "addToolStripMenuItem";
     this.addToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.addToolStripMenuItem.Text   = "Add";
     this.addToolStripMenuItem.Click += new System.EventHandler(this.AddBtn_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.Name   = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.editToolStripMenuItem.Text   = "Edit";
     this.editToolStripMenuItem.Click += new System.EventHandler(this.EditBtn_Click);
     //
     // removeToolStripMenuItem
     //
     this.removeToolStripMenuItem.Name   = "removeToolStripMenuItem";
     this.removeToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.removeToolStripMenuItem.Text   = "Remove";
     this.removeToolStripMenuItem.Click += new System.EventHandler(this.RemoveBtn_Click);
     //
     // ScriptsLbl
     //
     this.ScriptsLbl.AutoSize = true;
     this.ScriptsLbl.Location = new System.Drawing.Point(6, 47);
     this.ScriptsLbl.Name     = "ScriptsLbl";
     this.ScriptsLbl.Size     = new System.Drawing.Size(42, 13);
     this.ScriptsLbl.TabIndex = 2;
     this.ScriptsLbl.Text     = "Scripts:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index         = 1;
     this.LogicalNameTB.Location      = new System.Drawing.Point(102, 21);
     this.LogicalNameTB.Name          = "LogicalNameTB";
     this.LogicalNameTB.NotifyChanges = false;
     this.LogicalNameTB.Size          = new System.Drawing.Size(126, 20);
     this.LogicalNameTB.TabIndex      = 1;
     this.LogicalNameTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // ScriptId
     //
     this.ScriptId.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ScriptId.Location = new System.Drawing.Point(283, 22);
     this.ScriptId.Name     = "ScriptId";
     this.ScriptId.Size     = new System.Drawing.Size(64, 20);
     this.ScriptId.TabIndex = 5;
     //
     // label1
     //
     this.label1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(231, 25);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(49, 13);
     this.label1.TabIndex = 6;
     this.label1.Text     = "Script Id:";
     //
     // GXDLMSScriptTableView
     //
     this.ClientSize = new System.Drawing.Size(498, 220);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSScriptTableView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSProfileGenericView));
     this.groupBox1               = new System.Windows.Forms.GroupBox();
     this.label5                  = new System.Windows.Forms.Label();
     this.groupBox3               = new System.Windows.Forms.GroupBox();
     this.label3                  = new System.Windows.Forms.Label();
     this.label4                  = new System.Windows.Forms.Label();
     this.tabControl1             = new System.Windows.Forms.TabControl();
     this.tabPage1                = new System.Windows.Forms.TabPage();
     this.ProfileGenericView      = new System.Windows.Forms.DataGridView();
     this.tabPage2                = new System.Windows.Forms.TabPage();
     this.ColumnRemoveBtn         = new System.Windows.Forms.Button();
     this.ColumnEditBtn           = new System.Windows.Forms.Button();
     this.ColumnAddBtn            = new System.Windows.Forms.Button();
     this.CaptureObjectsLv        = new System.Windows.Forms.ListView();
     this.ObjectTypeHeader        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.LogicalNameHeader       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.AttributeHeader         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.ObjectsMenu             = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.groupBox2               = new System.Windows.Forms.GroupBox();
     this.ReadAllRB               = new System.Windows.Forms.RadioButton();
     this.ReadLastTB              = new System.Windows.Forms.NumericUpDown();
     this.label2                  = new System.Windows.Forms.Label();
     this.EndEntry                = new System.Windows.Forms.NumericUpDown();
     this.StartEntry              = new System.Windows.Forms.NumericUpDown();
     this.DaysLbl                 = new System.Windows.Forms.Label();
     this.ToLbl           = new System.Windows.Forms.Label();
     this.ToPick          = new System.Windows.Forms.DateTimePicker();
     this.StartPick       = new System.Windows.Forms.DateTimePicker();
     this.ReadFromRB      = new System.Windows.Forms.RadioButton();
     this.ReadLastRB      = new System.Windows.Forms.RadioButton();
     this.ReadEntryBtn    = new System.Windows.Forms.RadioButton();
     this.LogicalNameLbl  = new System.Windows.Forms.Label();
     this.label1          = new System.Windows.Forms.Label();
     this.errorProvider1  = new System.Windows.Forms.ErrorProvider(this.components);
     this.AddBlackBtn     = new Gurux.DLMS.UI.GXButton();
     this.RemoveBtn       = new Gurux.DLMS.UI.GXButton();
     this.AddWhiteBtn     = new Gurux.DLMS.UI.GXButton();
     this.CaptureBtn      = new Gurux.DLMS.UI.GXButton();
     this.ResetBtn        = new Gurux.DLMS.UI.GXButton();
     this.CapturePeriodTB = new Gurux.DLMS.UI.GXValueField();
     this.SortObjectTB    = new Gurux.DLMS.UI.GXValueField();
     this.SortModeTB      = new Gurux.DLMS.UI.GXValueField();
     this.EntriesTB       = new Gurux.DLMS.UI.GXValueField();
     this.EntriesInUseTB  = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameTB   = new Gurux.DLMS.UI.GXValueField();
     this.groupBox1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ProfileGenericView)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.ObjectsMenu.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReadLastTB)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndEntry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartEntry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.AddBlackBtn);
     this.groupBox1.Controls.Add(this.RemoveBtn);
     this.groupBox1.Controls.Add(this.AddWhiteBtn);
     this.groupBox1.Controls.Add(this.CaptureBtn);
     this.groupBox1.Controls.Add(this.ResetBtn);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.CapturePeriodTB);
     this.groupBox1.Controls.Add(this.groupBox3);
     this.groupBox1.Controls.Add(this.tabControl1);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.EntriesTB);
     this.groupBox1.Controls.Add(this.EntriesInUseTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(605, 572);
     this.groupBox1.TabIndex = 3;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Profile Generic";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(246, 146);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 14;
     this.label5.Text     = "Period:";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label3);
     this.groupBox3.Controls.Add(this.SortObjectTB);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Controls.Add(this.SortModeTB);
     this.groupBox3.Location = new System.Drawing.Point(3, 193);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(486, 49);
     this.groupBox3.TabIndex = 12;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Sort:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(246, 22);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(41, 13);
     this.label3.TabIndex = 14;
     this.label3.Text     = "Object:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(11, 22);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(37, 13);
     this.label4.TabIndex = 12;
     this.label4.Text     = "Mode:";
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Location      = new System.Drawing.Point(5, 249);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(594, 317);
     this.tabControl1.TabIndex      = 9;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.ProfileGenericView);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(586, 291);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Data";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // ProfileGenericView
     //
     this.ProfileGenericView.AllowUserToAddRows          = false;
     this.ProfileGenericView.AllowUserToDeleteRows       = false;
     this.ProfileGenericView.AllowUserToOrderColumns     = true;
     this.ProfileGenericView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.ProfileGenericView.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.ProfileGenericView.Location       = new System.Drawing.Point(3, 3);
     this.ProfileGenericView.Name           = "ProfileGenericView";
     this.ProfileGenericView.ReadOnly       = true;
     this.ProfileGenericView.ShowCellErrors = false;
     this.ProfileGenericView.ShowRowErrors  = false;
     this.ProfileGenericView.Size           = new System.Drawing.Size(580, 285);
     this.ProfileGenericView.TabIndex       = 4;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.ColumnRemoveBtn);
     this.tabPage2.Controls.Add(this.ColumnEditBtn);
     this.tabPage2.Controls.Add(this.ColumnAddBtn);
     this.tabPage2.Controls.Add(this.CaptureObjectsLv);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(586, 291);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Capture Objects";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // ColumnRemoveBtn
     //
     this.ColumnRemoveBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.ColumnRemoveBtn.Location = new System.Drawing.Point(487, 251);
     this.ColumnRemoveBtn.Name     = "ColumnRemoveBtn";
     this.ColumnRemoveBtn.Size     = new System.Drawing.Size(75, 23);
     this.ColumnRemoveBtn.TabIndex = 28;
     this.ColumnRemoveBtn.Text     = "Remove";
     this.ColumnRemoveBtn.UseVisualStyleBackColor = true;
     this.ColumnRemoveBtn.Click += new System.EventHandler(this.ColumnRemoveBtn_Click);
     //
     // ColumnEditBtn
     //
     this.ColumnEditBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.ColumnEditBtn.Location = new System.Drawing.Point(406, 251);
     this.ColumnEditBtn.Name     = "ColumnEditBtn";
     this.ColumnEditBtn.Size     = new System.Drawing.Size(75, 23);
     this.ColumnEditBtn.TabIndex = 27;
     this.ColumnEditBtn.Text     = "Edit...";
     this.ColumnEditBtn.UseVisualStyleBackColor = true;
     this.ColumnEditBtn.Click += new System.EventHandler(this.ColumnEditBtn_Click);
     //
     // ColumnAddBtn
     //
     this.ColumnAddBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.ColumnAddBtn.Location = new System.Drawing.Point(325, 251);
     this.ColumnAddBtn.Name     = "ColumnAddBtn";
     this.ColumnAddBtn.Size     = new System.Drawing.Size(75, 23);
     this.ColumnAddBtn.TabIndex = 26;
     this.ColumnAddBtn.Text     = "Add...";
     this.ColumnAddBtn.UseVisualStyleBackColor = true;
     this.ColumnAddBtn.Click += new System.EventHandler(this.ColumnAddBtn_Click);
     //
     // CaptureObjectsLv
     //
     this.CaptureObjectsLv.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                           | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.CaptureObjectsLv.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.ObjectTypeHeader,
         this.LogicalNameHeader,
         this.AttributeHeader
     });
     this.CaptureObjectsLv.ContextMenuStrip = this.ObjectsMenu;
     this.CaptureObjectsLv.FullRowSelect    = true;
     this.CaptureObjectsLv.HeaderStyle      = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.CaptureObjectsLv.HideSelection    = false;
     this.CaptureObjectsLv.Location         = new System.Drawing.Point(0, 2);
     this.CaptureObjectsLv.Name             = "CaptureObjectsLv";
     this.CaptureObjectsLv.Size             = new System.Drawing.Size(562, 243);
     this.CaptureObjectsLv.TabIndex         = 25;
     this.CaptureObjectsLv.UseCompatibleStateImageBehavior = false;
     this.CaptureObjectsLv.View         = System.Windows.Forms.View.Details;
     this.CaptureObjectsLv.DoubleClick += new System.EventHandler(this.ColumnEditBtn_Click);
     //
     // ObjectTypeHeader
     //
     this.ObjectTypeHeader.Text  = "Object type:";
     this.ObjectTypeHeader.Width = 105;
     //
     // LogicalNameHeader
     //
     this.LogicalNameHeader.Text  = "Logical Name:";
     this.LogicalNameHeader.Width = 106;
     //
     // AttributeHeader
     //
     this.AttributeHeader.Text  = "Attribute Index:";
     this.AttributeHeader.Width = 97;
     //
     // ObjectsMenu
     //
     this.ObjectsMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.addToolStripMenuItem,
         this.editToolStripMenuItem,
         this.removeToolStripMenuItem
     });
     this.ObjectsMenu.Name = "contextMenuStrip1";
     this.ObjectsMenu.Size = new System.Drawing.Size(118, 70);
     //
     // addToolStripMenuItem
     //
     this.addToolStripMenuItem.Name   = "addToolStripMenuItem";
     this.addToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.addToolStripMenuItem.Text   = "Add";
     this.addToolStripMenuItem.Click += new System.EventHandler(this.ColumnAddBtn_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.Name   = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.editToolStripMenuItem.Text   = "Edit";
     this.editToolStripMenuItem.Click += new System.EventHandler(this.ColumnEditBtn_Click);
     //
     // removeToolStripMenuItem
     //
     this.removeToolStripMenuItem.Name   = "removeToolStripMenuItem";
     this.removeToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.removeToolStripMenuItem.Text   = "Remove";
     this.removeToolStripMenuItem.Click += new System.EventHandler(this.ColumnRemoveBtn_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.ReadAllRB);
     this.groupBox2.Controls.Add(this.ReadLastTB);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.EndEntry);
     this.groupBox2.Controls.Add(this.StartEntry);
     this.groupBox2.Controls.Add(this.DaysLbl);
     this.groupBox2.Controls.Add(this.ToLbl);
     this.groupBox2.Controls.Add(this.ToPick);
     this.groupBox2.Controls.Add(this.StartPick);
     this.groupBox2.Controls.Add(this.ReadFromRB);
     this.groupBox2.Controls.Add(this.ReadLastRB);
     this.groupBox2.Controls.Add(this.ReadEntryBtn);
     this.groupBox2.Location = new System.Drawing.Point(5, 15);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(484, 120);
     this.groupBox2.TabIndex = 8;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Reading";
     //
     // ReadAllRB
     //
     this.ReadAllRB.Location        = new System.Drawing.Point(6, 89);
     this.ReadAllRB.Name            = "ReadAllRB";
     this.ReadAllRB.Size            = new System.Drawing.Size(80, 16);
     this.ReadAllRB.TabIndex        = 9;
     this.ReadAllRB.Text            = "All";
     this.ReadAllRB.CheckedChanged += new System.EventHandler(this.ReadAllRB_CheckedChanged);
     //
     // ReadLastTB
     //
     this.ReadLastTB.Location = new System.Drawing.Point(94, 45);
     this.ReadLastTB.Maximum  = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.ReadLastTB.Name          = "ReadLastTB";
     this.ReadLastTB.Size          = new System.Drawing.Size(114, 20);
     this.ReadLastTB.TabIndex      = 12;
     this.ReadLastTB.ValueChanged += new System.EventHandler(this.ReadLastTB_ValueChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(246, 22);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(38, 13);
     this.label2.TabIndex = 18;
     this.label2.Text     = "Count:";
     //
     // EndEntry
     //
     this.EndEntry.Location = new System.Drawing.Point(292, 20);
     this.EndEntry.Maximum  = new decimal(new int[] {
         -1,
         0,
         0,
         0
     });
     this.EndEntry.Name     = "EndEntry";
     this.EndEntry.Size     = new System.Drawing.Size(112, 20);
     this.EndEntry.TabIndex = 11;
     this.EndEntry.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.EndEntry.ValueChanged += new System.EventHandler(this.StartEntry_ValueChanged);
     //
     // StartEntry
     //
     this.StartEntry.Location = new System.Drawing.Point(94, 19);
     this.StartEntry.Maximum  = new decimal(new int[] {
         -2,
         0,
         0,
         0
     });
     this.StartEntry.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.StartEntry.Name     = "StartEntry";
     this.StartEntry.Size     = new System.Drawing.Size(86, 20);
     this.StartEntry.TabIndex = 10;
     this.StartEntry.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.StartEntry.ValueChanged += new System.EventHandler(this.StartEntry_ValueChanged);
     //
     // DaysLbl
     //
     this.DaysLbl.Location = new System.Drawing.Point(214, 48);
     this.DaysLbl.Name     = "DaysLbl";
     this.DaysLbl.Size     = new System.Drawing.Size(72, 16);
     this.DaysLbl.TabIndex = 16;
     this.DaysLbl.Text     = "Days";
     //
     // ToLbl
     //
     this.ToLbl.AutoSize = true;
     this.ToLbl.Location = new System.Drawing.Point(263, 70);
     this.ToLbl.Name     = "ToLbl";
     this.ToLbl.Size     = new System.Drawing.Size(20, 13);
     this.ToLbl.TabIndex = 15;
     this.ToLbl.Text     = "To";
     //
     // ToPick
     //
     this.ToPick.Checked       = false;
     this.ToPick.Format        = System.Windows.Forms.DateTimePickerFormat.Short;
     this.ToPick.Location      = new System.Drawing.Point(292, 69);
     this.ToPick.Name          = "ToPick";
     this.ToPick.ShowCheckBox  = true;
     this.ToPick.Size          = new System.Drawing.Size(172, 20);
     this.ToPick.TabIndex      = 14;
     this.ToPick.ValueChanged += new System.EventHandler(this.StartPick_ValueChanged);
     //
     // StartPick
     //
     this.StartPick.Checked       = false;
     this.StartPick.Format        = System.Windows.Forms.DateTimePickerFormat.Short;
     this.StartPick.Location      = new System.Drawing.Point(94, 69);
     this.StartPick.Name          = "StartPick";
     this.StartPick.ShowCheckBox  = true;
     this.StartPick.Size          = new System.Drawing.Size(163, 20);
     this.StartPick.TabIndex      = 13;
     this.StartPick.ValueChanged += new System.EventHandler(this.StartPick_ValueChanged);
     //
     // ReadFromRB
     //
     this.ReadFromRB.Location        = new System.Drawing.Point(6, 67);
     this.ReadFromRB.Name            = "ReadFromRB";
     this.ReadFromRB.Size            = new System.Drawing.Size(80, 16);
     this.ReadFromRB.TabIndex        = 9;
     this.ReadFromRB.Text            = "Read From";
     this.ReadFromRB.CheckedChanged += new System.EventHandler(this.ReadFromRB_CheckedChanged);
     //
     // ReadLastRB
     //
     this.ReadLastRB.Checked         = true;
     this.ReadLastRB.Location        = new System.Drawing.Point(6, 43);
     this.ReadLastRB.Name            = "ReadLastRB";
     this.ReadLastRB.Size            = new System.Drawing.Size(80, 16);
     this.ReadLastRB.TabIndex        = 9;
     this.ReadLastRB.TabStop         = true;
     this.ReadLastRB.Text            = "Read last";
     this.ReadLastRB.CheckedChanged += new System.EventHandler(this.ReadLastRB_CheckedChanged);
     //
     // ReadEntryBtn
     //
     this.ReadEntryBtn.Location        = new System.Drawing.Point(6, 19);
     this.ReadEntryBtn.Name            = "ReadEntryBtn";
     this.ReadEntryBtn.Size            = new System.Drawing.Size(80, 16);
     this.ReadEntryBtn.TabIndex        = 9;
     this.ReadEntryBtn.Text            = "Read Entry:";
     this.ReadEntryBtn.CheckedChanged += new System.EventHandler(this.ReadEntryRB_CheckedChanged);
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(10, 144);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(10, 170);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(42, 13);
     this.label1.TabIndex = 4;
     this.label1.Text     = "Entries:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // AddBlackBtn
     //
     this.AddBlackBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.AddBlackBtn.Index    = -2;
     this.AddBlackBtn.Location = new System.Drawing.Point(502, 164);
     this.AddBlackBtn.Name     = "AddBlackBtn";
     this.AddBlackBtn.Size     = new System.Drawing.Size(97, 23);
     this.AddBlackBtn.TabIndex = 20;
     this.AddBlackBtn.Text     = "Add Black list...";
     this.AddBlackBtn.UseVisualStyleBackColor = true;
     //
     // RemoveBtn
     //
     this.RemoveBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.RemoveBtn.Index    = -3;
     this.RemoveBtn.Location = new System.Drawing.Point(502, 193);
     this.RemoveBtn.Name     = "RemoveBtn";
     this.RemoveBtn.Size     = new System.Drawing.Size(97, 23);
     this.RemoveBtn.TabIndex = 19;
     this.RemoveBtn.Text     = "Remove...";
     this.RemoveBtn.UseVisualStyleBackColor = true;
     //
     // AddWhiteBtn
     //
     this.AddWhiteBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.AddWhiteBtn.Index    = -1;
     this.AddWhiteBtn.Location = new System.Drawing.Point(502, 135);
     this.AddWhiteBtn.Name     = "AddWhiteBtn";
     this.AddWhiteBtn.Size     = new System.Drawing.Size(97, 23);
     this.AddWhiteBtn.TabIndex = 18;
     this.AddWhiteBtn.Text     = "Add White list...";
     this.AddWhiteBtn.UseVisualStyleBackColor = true;
     //
     // CaptureBtn
     //
     this.CaptureBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.CaptureBtn.Index    = 2;
     this.CaptureBtn.Location = new System.Drawing.Point(524, 61);
     this.CaptureBtn.Name     = "CaptureBtn";
     this.CaptureBtn.Size     = new System.Drawing.Size(75, 23);
     this.CaptureBtn.TabIndex = 17;
     this.CaptureBtn.Text     = "Capture";
     this.CaptureBtn.UseVisualStyleBackColor = true;
     //
     // ResetBtn
     //
     this.ResetBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ResetBtn.Index    = 1;
     this.ResetBtn.Location = new System.Drawing.Point(524, 32);
     this.ResetBtn.Name     = "ResetBtn";
     this.ResetBtn.Size     = new System.Drawing.Size(75, 23);
     this.ResetBtn.TabIndex = 16;
     this.ResetBtn.Text     = "Reset";
     this.ResetBtn.UseVisualStyleBackColor = true;
     //
     // CapturePeriodTB
     //
     this.CapturePeriodTB.Index         = 4;
     this.CapturePeriodTB.Location      = new System.Drawing.Point(297, 144);
     this.CapturePeriodTB.Name          = "CapturePeriodTB";
     this.CapturePeriodTB.NotifyChanges = false;
     this.CapturePeriodTB.Size          = new System.Drawing.Size(172, 20);
     this.CapturePeriodTB.TabIndex      = 15;
     this.CapturePeriodTB.TabStop       = false;
     this.CapturePeriodTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // SortObjectTB
     //
     this.SortObjectTB.Anchor        = System.Windows.Forms.AnchorStyles.Top;
     this.SortObjectTB.Index         = 6;
     this.SortObjectTB.Location      = new System.Drawing.Point(294, 18);
     this.SortObjectTB.Name          = "SortObjectTB";
     this.SortObjectTB.NotifyChanges = false;
     this.SortObjectTB.ReadOnly      = true;
     this.SortObjectTB.Size          = new System.Drawing.Size(172, 20);
     this.SortObjectTB.TabIndex      = 15;
     this.SortObjectTB.TabStop       = false;
     this.SortObjectTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // SortModeTB
     //
     this.SortModeTB.Index         = 5;
     this.SortModeTB.Location      = new System.Drawing.Point(94, 18);
     this.SortModeTB.Name          = "SortModeTB";
     this.SortModeTB.NotifyChanges = false;
     this.SortModeTB.Size          = new System.Drawing.Size(116, 20);
     this.SortModeTB.TabIndex      = 13;
     this.SortModeTB.TabStop       = false;
     this.SortModeTB.Type          = Gurux.DLMS.Enums.ValueFieldType.CompoBox;
     //
     // EntriesTB
     //
     this.EntriesTB.Index         = 8;
     this.EntriesTB.Location      = new System.Drawing.Point(186, 167);
     this.EntriesTB.Name          = "EntriesTB";
     this.EntriesTB.NotifyChanges = false;
     this.EntriesTB.Size          = new System.Drawing.Size(57, 20);
     this.EntriesTB.TabIndex      = 7;
     this.EntriesTB.TabStop       = false;
     this.EntriesTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // EntriesInUseTB
     //
     this.EntriesInUseTB.Index         = 7;
     this.EntriesInUseTB.Location      = new System.Drawing.Point(94, 167);
     this.EntriesInUseTB.Name          = "EntriesInUseTB";
     this.EntriesInUseTB.NotifyChanges = false;
     this.EntriesInUseTB.Size          = new System.Drawing.Size(66, 20);
     this.EntriesInUseTB.TabIndex      = 5;
     this.EntriesInUseTB.TabStop       = false;
     this.EntriesInUseTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Index         = 1;
     this.LogicalNameTB.Location      = new System.Drawing.Point(94, 141);
     this.LogicalNameTB.Name          = "LogicalNameTB";
     this.LogicalNameTB.NotifyChanges = false;
     this.LogicalNameTB.Size          = new System.Drawing.Size(119, 20);
     this.LogicalNameTB.TabIndex      = 1;
     this.LogicalNameTB.TabStop       = false;
     this.LogicalNameTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // GXDLMSProfileGenericView
     //
     this.ClientSize = new System.Drawing.Size(621, 582);
     this.Controls.Add(this.groupBox1);
     this.Name = "GXDLMSProfileGenericView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ProfileGenericView)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.ObjectsMenu.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReadLastTB)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndEntry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartEntry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #15
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSModemConfigurationView));
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.ModemProfileTB        = new System.Windows.Forms.TextBox();
     this.ModemProfileLbl       = new System.Windows.Forms.Label();
     this.InitialisationTB      = new System.Windows.Forms.TextBox();
     this.InitialisationLbl     = new System.Windows.Forms.Label();
     this.CommunicationSpeedTB  = new Gurux.DLMS.UI.GXValueField();
     this.CommunicationSpeedLbl = new System.Windows.Forms.Label();
     this.LogicalNameTB         = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl        = new System.Windows.Forms.Label();
     this.errorProvider1        = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.ModemProfileTB);
     this.groupBox1.Controls.Add(this.ModemProfileLbl);
     this.groupBox1.Controls.Add(this.InitialisationTB);
     this.groupBox1.Controls.Add(this.InitialisationLbl);
     this.groupBox1.Controls.Add(this.CommunicationSpeedTB);
     this.groupBox1.Controls.Add(this.CommunicationSpeedLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(292, 250);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Modem Configuration Object";
     this.groupBox1.UseCompatibleTextRendering = true;
     //
     // ModemProfileTB
     //
     this.ModemProfileTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.ModemProfileTB.Location  = new System.Drawing.Point(102, 161);
     this.ModemProfileTB.Multiline = true;
     this.ModemProfileTB.Name      = "ModemProfileTB";
     this.ModemProfileTB.ReadOnly  = true;
     this.ModemProfileTB.Size      = new System.Drawing.Size(175, 82);
     this.ModemProfileTB.TabIndex  = 5;
     //
     // ModemProfileLbl
     //
     this.ModemProfileLbl.AutoSize = true;
     this.ModemProfileLbl.Location = new System.Drawing.Point(6, 164);
     this.ModemProfileLbl.Name     = "ModemProfileLbl";
     this.ModemProfileLbl.Size     = new System.Drawing.Size(77, 13);
     this.ModemProfileLbl.TabIndex = 6;
     this.ModemProfileLbl.Text     = "Modem Profile:";
     //
     // InitialisationTB
     //
     this.InitialisationTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.InitialisationTB.Location  = new System.Drawing.Point(102, 73);
     this.InitialisationTB.Multiline = true;
     this.InitialisationTB.Name      = "InitialisationTB";
     this.InitialisationTB.ReadOnly  = true;
     this.InitialisationTB.Size      = new System.Drawing.Size(175, 82);
     this.InitialisationTB.TabIndex  = 3;
     //
     // InitialisationLbl
     //
     this.InitialisationLbl.AutoSize = true;
     this.InitialisationLbl.Location = new System.Drawing.Point(6, 76);
     this.InitialisationLbl.Name     = "InitialisationLbl";
     this.InitialisationLbl.Size     = new System.Drawing.Size(64, 13);
     this.InitialisationLbl.TabIndex = 4;
     this.InitialisationLbl.Text     = "Initialisation:";
     //
     // CommunicationSpeedTB
     //
     this.CommunicationSpeedTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.CommunicationSpeedTB.Index    = 2;
     this.CommunicationSpeedTB.Location = new System.Drawing.Point(102, 47);
     this.CommunicationSpeedTB.Name     = "CommunicationSpeedTB";
     this.CommunicationSpeedTB.Size     = new System.Drawing.Size(175, 20);
     this.CommunicationSpeedTB.TabIndex = 0;
     this.CommunicationSpeedTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // CommunicationSpeedLbl
     //
     this.CommunicationSpeedLbl.AutoSize = true;
     this.CommunicationSpeedLbl.Location = new System.Drawing.Point(6, 50);
     this.CommunicationSpeedLbl.Name     = "CommunicationSpeedLbl";
     this.CommunicationSpeedLbl.Size     = new System.Drawing.Size(41, 13);
     this.CommunicationSpeedLbl.TabIndex = 2;
     this.CommunicationSpeedLbl.Text     = "Speed:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index    = 1;
     this.LogicalNameTB.Location = new System.Drawing.Point(102, 21);
     this.LogicalNameTB.Name     = "LogicalNameTB";
     this.LogicalNameTB.Size     = new System.Drawing.Size(175, 20);
     this.LogicalNameTB.TabIndex = 1;
     this.LogicalNameTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSModemConfigurationView
     //
     this.ClientSize = new System.Drawing.Size(314, 270);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSModemConfigurationView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSSFSKMacSynchronizationTimeoutsView));
     this.groupBox1              = new System.Windows.Forms.GroupBox();
     this.TimeOutFrameNotOKTB    = new Gurux.DLMS.UI.GXValueField();
     this.TimeOutFrameNotOKLbl   = new System.Windows.Forms.Label();
     this.TimeOutNotAddressedTB  = new Gurux.DLMS.UI.GXValueField();
     this.TimeOutNotAddressedLbl = new System.Windows.Forms.Label();
     this.SynchronizationConfirmationTimeoutTB  = new Gurux.DLMS.UI.GXValueField();
     this.SynchronizationConfirmationTimeoutLbl = new System.Windows.Forms.Label();
     this.SearchInitiatorTimeoutTB  = new Gurux.DLMS.UI.GXValueField();
     this.SearchInitiatorTimeoutLbl = new System.Windows.Forms.Label();
     this.LogicalNameTB             = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl            = new System.Windows.Forms.Label();
     this.errorProvider1            = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.TimeOutFrameNotOKTB);
     this.groupBox1.Controls.Add(this.TimeOutFrameNotOKLbl);
     this.groupBox1.Controls.Add(this.TimeOutNotAddressedTB);
     this.groupBox1.Controls.Add(this.TimeOutNotAddressedLbl);
     this.groupBox1.Controls.Add(this.SynchronizationConfirmationTimeoutTB);
     this.groupBox1.Controls.Add(this.SynchronizationConfirmationTimeoutLbl);
     this.groupBox1.Controls.Add(this.SearchInitiatorTimeoutTB);
     this.groupBox1.Controls.Add(this.SearchInitiatorTimeoutLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(348, 158);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = " S-FSK MAC synchronization timeouts Object";
     this.groupBox1.UseCompatibleTextRendering = true;
     //
     // TimeOutFrameNotOKTB
     //
     this.TimeOutFrameNotOKTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.TimeOutFrameNotOKTB.Index    = 5;
     this.TimeOutFrameNotOKTB.Location = new System.Drawing.Point(136, 125);
     this.TimeOutFrameNotOKTB.Name     = "TimeOutFrameNotOKTB";
     this.TimeOutFrameNotOKTB.Size     = new System.Drawing.Size(206, 20);
     this.TimeOutFrameNotOKTB.TabIndex = 4;
     this.TimeOutFrameNotOKTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // TimeOutFrameNotOKLbl
     //
     this.TimeOutFrameNotOKLbl.AutoSize = true;
     this.TimeOutFrameNotOKLbl.Location = new System.Drawing.Point(6, 128);
     this.TimeOutFrameNotOKLbl.Name     = "TimeOutFrameNotOKLbl";
     this.TimeOutFrameNotOKLbl.Size     = new System.Drawing.Size(119, 13);
     this.TimeOutFrameNotOKLbl.TabIndex = 8;
     this.TimeOutFrameNotOKLbl.Text     = "Timeuout frame not OK:";
     //
     // TimeOutNotAddressedTB
     //
     this.TimeOutNotAddressedTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.TimeOutNotAddressedTB.Index    = 4;
     this.TimeOutNotAddressedTB.Location = new System.Drawing.Point(136, 99);
     this.TimeOutNotAddressedTB.Name     = "TimeOutNotAddressedTB";
     this.TimeOutNotAddressedTB.Size     = new System.Drawing.Size(206, 20);
     this.TimeOutNotAddressedTB.TabIndex = 3;
     this.TimeOutNotAddressedTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // TimeOutNotAddressedLbl
     //
     this.TimeOutNotAddressedLbl.AutoSize = true;
     this.TimeOutNotAddressedLbl.Location = new System.Drawing.Point(6, 102);
     this.TimeOutNotAddressedLbl.Name     = "TimeOutNotAddressedLbl";
     this.TimeOutNotAddressedLbl.Size     = new System.Drawing.Size(118, 13);
     this.TimeOutNotAddressedLbl.TabIndex = 6;
     this.TimeOutNotAddressedLbl.Text     = "Timeout not addressed:";
     //
     // SynchronizationConfirmationTimeoutTB
     //
     this.SynchronizationConfirmationTimeoutTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.SynchronizationConfirmationTimeoutTB.Index    = 3;
     this.SynchronizationConfirmationTimeoutTB.Location = new System.Drawing.Point(136, 73);
     this.SynchronizationConfirmationTimeoutTB.Name     = "SynchronizationConfirmationTimeoutTB";
     this.SynchronizationConfirmationTimeoutTB.Size     = new System.Drawing.Size(206, 20);
     this.SynchronizationConfirmationTimeoutTB.TabIndex = 2;
     this.SynchronizationConfirmationTimeoutTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // SynchronizationConfirmationTimeoutLbl
     //
     this.SynchronizationConfirmationTimeoutLbl.AutoSize = true;
     this.SynchronizationConfirmationTimeoutLbl.Location = new System.Drawing.Point(6, 76);
     this.SynchronizationConfirmationTimeoutLbl.Name     = "SynchronizationConfirmationTimeoutLbl";
     this.SynchronizationConfirmationTimeoutLbl.Size     = new System.Drawing.Size(109, 13);
     this.SynchronizationConfirmationTimeoutLbl.TabIndex = 4;
     this.SynchronizationConfirmationTimeoutLbl.Text     = "Confirmation Timeout:";
     //
     // SearchInitiatorTimeoutTB
     //
     this.SearchInitiatorTimeoutTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.SearchInitiatorTimeoutTB.Index    = 2;
     this.SearchInitiatorTimeoutTB.Location = new System.Drawing.Point(136, 47);
     this.SearchInitiatorTimeoutTB.Name     = "SearchInitiatorTimeoutTB";
     this.SearchInitiatorTimeoutTB.Size     = new System.Drawing.Size(206, 20);
     this.SearchInitiatorTimeoutTB.TabIndex = 1;
     this.SearchInitiatorTimeoutTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // SearchInitiatorTimeoutLbl
     //
     this.SearchInitiatorTimeoutLbl.AutoSize = true;
     this.SearchInitiatorTimeoutLbl.Location = new System.Drawing.Point(6, 50);
     this.SearchInitiatorTimeoutLbl.Name     = "SearchInitiatorTimeoutLbl";
     this.SearchInitiatorTimeoutLbl.Size     = new System.Drawing.Size(117, 13);
     this.SearchInitiatorTimeoutLbl.TabIndex = 2;
     this.SearchInitiatorTimeoutLbl.Text     = "Search initiator timeout:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index    = 1;
     this.LogicalNameTB.Location = new System.Drawing.Point(136, 21);
     this.LogicalNameTB.Name     = "LogicalNameTB";
     this.LogicalNameTB.Size     = new System.Drawing.Size(206, 20);
     this.LogicalNameTB.TabIndex = 0;
     this.LogicalNameTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSSFSKMacSynchronizationTimeoutsView
     //
     this.ClientSize = new System.Drawing.Size(372, 181);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSSFSKMacSynchronizationTimeoutsView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSGprsSetupView));
     this.groupBox1          = new System.Windows.Forms.GroupBox();
     this.groupBox3          = new System.Windows.Forms.GroupBox();
     this.MMeanThroughputTB  = new System.Windows.Forms.TextBox();
     this.MMeanThroughputLbl = new System.Windows.Forms.Label();
     this.MPeakThroughputTB  = new System.Windows.Forms.TextBox();
     this.MPeakThroughputLbl = new System.Windows.Forms.Label();
     this.MReliabilityTB     = new System.Windows.Forms.TextBox();
     this.MReliabilityLbl    = new System.Windows.Forms.Label();
     this.MDelayTB           = new System.Windows.Forms.TextBox();
     this.MDelayLbl          = new System.Windows.Forms.Label();
     this.MPrecedenceTB      = new System.Windows.Forms.TextBox();
     this.MPrecedenceLbl     = new System.Windows.Forms.Label();
     this.groupBox2          = new System.Windows.Forms.GroupBox();
     this.CMeanThroughputTB  = new System.Windows.Forms.TextBox();
     this.CMeanThroughputLbl = new System.Windows.Forms.Label();
     this.CPeakThroughputTB  = new System.Windows.Forms.TextBox();
     this.CPeakThroughputLbl = new System.Windows.Forms.Label();
     this.CReliabilityTB     = new System.Windows.Forms.TextBox();
     this.CReliabilityLbl    = new System.Windows.Forms.Label();
     this.CDelayTB           = new System.Windows.Forms.TextBox();
     this.CDelayLbl          = new System.Windows.Forms.Label();
     this.CPrecedenceTB      = new System.Windows.Forms.TextBox();
     this.CPrecedenceLbl     = new System.Windows.Forms.Label();
     this.PINCodeTB          = new Gurux.DLMS.UI.GXValueField();
     this.PINCodeLbl         = new System.Windows.Forms.Label();
     this.APNTB          = new Gurux.DLMS.UI.GXValueField();
     this.APNLbl         = new System.Windows.Forms.Label();
     this.LogicalNameTB  = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl = new System.Windows.Forms.Label();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.groupBox3);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.PINCodeTB);
     this.groupBox1.Controls.Add(this.PINCodeLbl);
     this.groupBox1.Controls.Add(this.APNTB);
     this.groupBox1.Controls.Add(this.APNLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(296, 368);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "GPRS Modem Setup Object";
     this.groupBox1.UseCompatibleTextRendering = true;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.MMeanThroughputTB);
     this.groupBox3.Controls.Add(this.MMeanThroughputLbl);
     this.groupBox3.Controls.Add(this.MPeakThroughputTB);
     this.groupBox3.Controls.Add(this.MPeakThroughputLbl);
     this.groupBox3.Controls.Add(this.MReliabilityTB);
     this.groupBox3.Controls.Add(this.MReliabilityLbl);
     this.groupBox3.Controls.Add(this.MDelayTB);
     this.groupBox3.Controls.Add(this.MDelayLbl);
     this.groupBox3.Controls.Add(this.MPrecedenceTB);
     this.groupBox3.Controls.Add(this.MPrecedenceLbl);
     this.groupBox3.Location = new System.Drawing.Point(0, 231);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(296, 142);
     this.groupBox3.TabIndex = 17;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Quality of Service";
     //
     // MMeanThroughputTB
     //
     this.MMeanThroughputTB.Location = new System.Drawing.Point(105, 117);
     this.MMeanThroughputTB.Name     = "MMeanThroughputTB";
     this.MMeanThroughputTB.Size     = new System.Drawing.Size(168, 20);
     this.MMeanThroughputTB.TabIndex = 16;
     //
     // MMeanThroughputLbl
     //
     this.MMeanThroughputLbl.AutoSize = true;
     this.MMeanThroughputLbl.Location = new System.Drawing.Point(6, 120);
     this.MMeanThroughputLbl.Name     = "MMeanThroughputLbl";
     this.MMeanThroughputLbl.Size     = new System.Drawing.Size(95, 13);
     this.MMeanThroughputLbl.TabIndex = 15;
     this.MMeanThroughputLbl.Text     = "Mean Throughput:";
     //
     // MPeakThroughputTB
     //
     this.MPeakThroughputTB.Location = new System.Drawing.Point(105, 91);
     this.MPeakThroughputTB.Name     = "MPeakThroughputTB";
     this.MPeakThroughputTB.Size     = new System.Drawing.Size(168, 20);
     this.MPeakThroughputTB.TabIndex = 14;
     //
     // MPeakThroughputLbl
     //
     this.MPeakThroughputLbl.AutoSize = true;
     this.MPeakThroughputLbl.Location = new System.Drawing.Point(6, 94);
     this.MPeakThroughputLbl.Name     = "MPeakThroughputLbl";
     this.MPeakThroughputLbl.Size     = new System.Drawing.Size(93, 13);
     this.MPeakThroughputLbl.TabIndex = 13;
     this.MPeakThroughputLbl.Text     = "Peak Throughput:";
     //
     // MReliabilityTB
     //
     this.MReliabilityTB.Location = new System.Drawing.Point(105, 65);
     this.MReliabilityTB.Name     = "MReliabilityTB";
     this.MReliabilityTB.Size     = new System.Drawing.Size(168, 20);
     this.MReliabilityTB.TabIndex = 12;
     //
     // MReliabilityLbl
     //
     this.MReliabilityLbl.AutoSize = true;
     this.MReliabilityLbl.Location = new System.Drawing.Point(6, 68);
     this.MReliabilityLbl.Name     = "MReliabilityLbl";
     this.MReliabilityLbl.Size     = new System.Drawing.Size(54, 13);
     this.MReliabilityLbl.TabIndex = 11;
     this.MReliabilityLbl.Text     = "Reliability:";
     //
     // MDelayTB
     //
     this.MDelayTB.Location = new System.Drawing.Point(105, 39);
     this.MDelayTB.Name     = "MDelayTB";
     this.MDelayTB.Size     = new System.Drawing.Size(168, 20);
     this.MDelayTB.TabIndex = 10;
     //
     // MDelayLbl
     //
     this.MDelayLbl.AutoSize = true;
     this.MDelayLbl.Location = new System.Drawing.Point(6, 42);
     this.MDelayLbl.Name     = "MDelayLbl";
     this.MDelayLbl.Size     = new System.Drawing.Size(37, 13);
     this.MDelayLbl.TabIndex = 9;
     this.MDelayLbl.Text     = "Delay:";
     //
     // MPrecedenceTB
     //
     this.MPrecedenceTB.Location = new System.Drawing.Point(105, 13);
     this.MPrecedenceTB.Name     = "MPrecedenceTB";
     this.MPrecedenceTB.Size     = new System.Drawing.Size(168, 20);
     this.MPrecedenceTB.TabIndex = 8;
     //
     // MPrecedenceLbl
     //
     this.MPrecedenceLbl.AutoSize = true;
     this.MPrecedenceLbl.Location = new System.Drawing.Point(6, 16);
     this.MPrecedenceLbl.Name     = "MPrecedenceLbl";
     this.MPrecedenceLbl.Size     = new System.Drawing.Size(68, 13);
     this.MPrecedenceLbl.TabIndex = 7;
     this.MPrecedenceLbl.Text     = "Precedence:";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.CMeanThroughputTB);
     this.groupBox2.Controls.Add(this.CMeanThroughputLbl);
     this.groupBox2.Controls.Add(this.CPeakThroughputTB);
     this.groupBox2.Controls.Add(this.CPeakThroughputLbl);
     this.groupBox2.Controls.Add(this.CReliabilityTB);
     this.groupBox2.Controls.Add(this.CReliabilityLbl);
     this.groupBox2.Controls.Add(this.CDelayTB);
     this.groupBox2.Controls.Add(this.CDelayLbl);
     this.groupBox2.Controls.Add(this.CPrecedenceTB);
     this.groupBox2.Controls.Add(this.CPrecedenceLbl);
     this.groupBox2.Location = new System.Drawing.Point(0, 93);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(296, 142);
     this.groupBox2.TabIndex = 7;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Quality of Service";
     //
     // CMeanThroughputTB
     //
     this.CMeanThroughputTB.Location = new System.Drawing.Point(105, 117);
     this.CMeanThroughputTB.Name     = "CMeanThroughputTB";
     this.CMeanThroughputTB.Size     = new System.Drawing.Size(168, 20);
     this.CMeanThroughputTB.TabIndex = 16;
     //
     // CMeanThroughputLbl
     //
     this.CMeanThroughputLbl.AutoSize = true;
     this.CMeanThroughputLbl.Location = new System.Drawing.Point(6, 120);
     this.CMeanThroughputLbl.Name     = "CMeanThroughputLbl";
     this.CMeanThroughputLbl.Size     = new System.Drawing.Size(95, 13);
     this.CMeanThroughputLbl.TabIndex = 15;
     this.CMeanThroughputLbl.Text     = "Mean Throughput:";
     //
     // CPeakThroughputTB
     //
     this.CPeakThroughputTB.Location = new System.Drawing.Point(105, 91);
     this.CPeakThroughputTB.Name     = "CPeakThroughputTB";
     this.CPeakThroughputTB.Size     = new System.Drawing.Size(168, 20);
     this.CPeakThroughputTB.TabIndex = 14;
     //
     // CPeakThroughputLbl
     //
     this.CPeakThroughputLbl.AutoSize = true;
     this.CPeakThroughputLbl.Location = new System.Drawing.Point(6, 94);
     this.CPeakThroughputLbl.Name     = "CPeakThroughputLbl";
     this.CPeakThroughputLbl.Size     = new System.Drawing.Size(93, 13);
     this.CPeakThroughputLbl.TabIndex = 13;
     this.CPeakThroughputLbl.Text     = "Peak Throughput:";
     //
     // CReliabilityTB
     //
     this.CReliabilityTB.Location = new System.Drawing.Point(105, 65);
     this.CReliabilityTB.Name     = "CReliabilityTB";
     this.CReliabilityTB.Size     = new System.Drawing.Size(168, 20);
     this.CReliabilityTB.TabIndex = 12;
     //
     // CReliabilityLbl
     //
     this.CReliabilityLbl.AutoSize = true;
     this.CReliabilityLbl.Location = new System.Drawing.Point(6, 68);
     this.CReliabilityLbl.Name     = "CReliabilityLbl";
     this.CReliabilityLbl.Size     = new System.Drawing.Size(54, 13);
     this.CReliabilityLbl.TabIndex = 11;
     this.CReliabilityLbl.Text     = "Reliability:";
     //
     // CDelayTB
     //
     this.CDelayTB.Location = new System.Drawing.Point(105, 39);
     this.CDelayTB.Name     = "CDelayTB";
     this.CDelayTB.Size     = new System.Drawing.Size(168, 20);
     this.CDelayTB.TabIndex = 10;
     //
     // CDelayLbl
     //
     this.CDelayLbl.AutoSize = true;
     this.CDelayLbl.Location = new System.Drawing.Point(6, 42);
     this.CDelayLbl.Name     = "CDelayLbl";
     this.CDelayLbl.Size     = new System.Drawing.Size(37, 13);
     this.CDelayLbl.TabIndex = 9;
     this.CDelayLbl.Text     = "Delay:";
     //
     // CPrecedenceTB
     //
     this.CPrecedenceTB.Location = new System.Drawing.Point(105, 13);
     this.CPrecedenceTB.Name     = "CPrecedenceTB";
     this.CPrecedenceTB.Size     = new System.Drawing.Size(168, 20);
     this.CPrecedenceTB.TabIndex = 8;
     //
     // CPrecedenceLbl
     //
     this.CPrecedenceLbl.AutoSize = true;
     this.CPrecedenceLbl.Location = new System.Drawing.Point(6, 16);
     this.CPrecedenceLbl.Name     = "CPrecedenceLbl";
     this.CPrecedenceLbl.Size     = new System.Drawing.Size(68, 13);
     this.CPrecedenceLbl.TabIndex = 7;
     this.CPrecedenceLbl.Text     = "Precedence:";
     //
     // PINCodeTB
     //
     this.PINCodeTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.PINCodeTB.Index         = 3;
     this.PINCodeTB.Location      = new System.Drawing.Point(102, 73);
     this.PINCodeTB.Name          = "PINCodeTB";
     this.PINCodeTB.NotifyChanges = false;
     this.PINCodeTB.Size          = new System.Drawing.Size(171, 20);
     this.PINCodeTB.TabIndex      = 3;
     this.PINCodeTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // PINCodeLbl
     //
     this.PINCodeLbl.AutoSize = true;
     this.PINCodeLbl.Location = new System.Drawing.Point(6, 76);
     this.PINCodeLbl.Name     = "PINCodeLbl";
     this.PINCodeLbl.Size     = new System.Drawing.Size(56, 13);
     this.PINCodeLbl.TabIndex = 4;
     this.PINCodeLbl.Text     = "PIN Code:";
     //
     // APNTB
     //
     this.APNTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.APNTB.Index         = 2;
     this.APNTB.Location      = new System.Drawing.Point(102, 47);
     this.APNTB.Name          = "APNTB";
     this.APNTB.NotifyChanges = false;
     this.APNTB.Size          = new System.Drawing.Size(171, 20);
     this.APNTB.TabIndex      = 2;
     this.APNTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // APNLbl
     //
     this.APNLbl.AutoSize = true;
     this.APNLbl.Location = new System.Drawing.Point(6, 50);
     this.APNLbl.Name     = "APNLbl";
     this.APNLbl.Size     = new System.Drawing.Size(32, 13);
     this.APNLbl.TabIndex = 2;
     this.APNLbl.Text     = "APN:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index         = 1;
     this.LogicalNameTB.Location      = new System.Drawing.Point(102, 21);
     this.LogicalNameTB.Name          = "LogicalNameTB";
     this.LogicalNameTB.NotifyChanges = false;
     this.LogicalNameTB.Size          = new System.Drawing.Size(171, 20);
     this.LogicalNameTB.TabIndex      = 1;
     this.LogicalNameTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSGprsSetupView
     //
     this.ClientSize = new System.Drawing.Size(320, 411);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSGprsSetupView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #18
0
 private static bool UpdateAccessRights(IGXDLMSView view, GXDLMSClient client, System.Windows.Forms.Control.ControlCollection controls, GXDLMSObject target, int index, bool method, bool connected)
 {
     foreach (Control it in controls)
     {
         if (!method && it is GXValueField)
         {
             GXValueField obj = it as GXValueField;
             if (obj.Index == index)
             {
                 obj.Target = target;
                 bool access = connected;
                 if (connected)
                 {
                     if (client != null)
                     {
                         access = client.CanWrite(target, index);
                     }
                     else
                     {
                         AccessMode am = target.GetAccess(index);
                         access = (am & AccessMode.Write) != 0;
                     }
                 }
                 OnUpdateAccessRights(view, client, obj, connected && access);
                 return(!obj.NotifyChanges);
             }
         }
         else if (it is GXButton)
         {
             bool     access;
             GXButton btn = it as GXButton;
             btn.Target = target;
             //Update custom buttons.
             if (method && index == 0 && btn.Index < 1)
             {
                 OnUpdateAccessRights(view, client, btn, connected);
                 continue;
             }
             if (method && btn.Index == index && btn.Action == ActionType.Action)
             {
                 if (client != null)
                 {
                     access = client.CanInvoke(target, index);
                 }
                 else
                 {
                     access = target.GetMethodAccess(index) != MethodAccessMode.NoAccess;
                     if (!access)
                     {
                         access = target.GetMethodAccess3(index) != MethodAccessMode3.NoAccess;
                     }
                 }
                 OnUpdateAccessRights(view, client, btn, connected && access);
                 return(true);
             }
             if (!method && btn.Index == index && (btn.Action == ActionType.Read || btn.Action == ActionType.Write))
             {
                 if (btn.Action == ActionType.Read)
                 {
                     if (client != null)
                     {
                         access = client.CanRead(target, index);
                     }
                     else
                     {
                         access = (target.GetAccess(index) & AccessMode.Read) != 0;
                         if (!access)
                         {
                             access = (target.GetAccess3(index) & AccessMode3.Read) != 0;
                         }
                     }
                     OnUpdateAccessRights(view, client, btn, connected && access);
                 }
                 else if (btn.Action == ActionType.Write)
                 {
                     if (client != null)
                     {
                         access = client.CanWrite(target, index);
                     }
                     else
                     {
                         access = (target.GetAccess(index) & AccessMode.Write) != 0;
                         if (!access)
                         {
                             access = (target.GetAccess3(index) & AccessMode3.Write) != 0;
                         }
                     }
                     OnUpdateAccessRights(view, client, btn, connected && access);
                 }
             }
         }
         else if (it.Controls.Count != 0)
         {
             bool ret = UpdateAccessRights(view, client, it.Controls, target, index, method, connected);
             //If object is updated.
             if (ret)
             {
                 return(true);
             }
         }
     }
     return(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSAssociationLogicalNameView));
     this.groupBox1              = new System.Windows.Forms.GroupBox();
     this.gxValueField1          = new Gurux.DLMS.UI.GXValueField();
     this.label1                 = new System.Windows.Forms.Label();
     this.CallingWindowLV        = new System.Windows.Forms.ListView();
     this.ClassIdHeader          = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.VersionHeader          = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.LogicalNameHeader      = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.AttributeAccesssHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.MethodAccessHeader     = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.LogicalNameTB          = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl         = new System.Windows.Forms.Label();
     this.errorProvider1         = new System.Windows.Forms.ErrorProvider(this.components);
     this.SecretTB               = new Gurux.DLMS.UI.GXValueField();
     this.SecretLbl              = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.SecretTB);
     this.groupBox1.Controls.Add(this.SecretLbl);
     this.groupBox1.Controls.Add(this.gxValueField1);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.CallingWindowLV);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(515, 324);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Association Logical  Name Object";
     //
     // gxValueField1
     //
     this.gxValueField1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.gxValueField1.Index    = 8;
     this.gxValueField1.Location = new System.Drawing.Point(102, 47);
     this.gxValueField1.Name     = "gxValueField1";
     this.gxValueField1.Size     = new System.Drawing.Size(390, 20);
     this.gxValueField1.TabIndex = 11;
     this.gxValueField1.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(6, 50);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(97, 13);
     this.label1.TabIndex = 10;
     this.label1.Text     = "Association Status:";
     //
     // CallingWindowLV
     //
     this.CallingWindowLV.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                          | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.CallingWindowLV.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.ClassIdHeader,
         this.VersionHeader,
         this.LogicalNameHeader,
         this.AttributeAccesssHeader,
         this.MethodAccessHeader
     });
     this.CallingWindowLV.FullRowSelect = true;
     this.CallingWindowLV.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.CallingWindowLV.HideSelection = false;
     this.CallingWindowLV.Location      = new System.Drawing.Point(9, 103);
     this.CallingWindowLV.Name          = "CallingWindowLV";
     this.CallingWindowLV.Size          = new System.Drawing.Size(483, 215);
     this.CallingWindowLV.TabIndex      = 9;
     this.CallingWindowLV.UseCompatibleStateImageBehavior = false;
     this.CallingWindowLV.View = System.Windows.Forms.View.Details;
     //
     // ClassIdHeader
     //
     this.ClassIdHeader.Text  = "Class ID:";
     this.ClassIdHeader.Width = 105;
     //
     // VersionHeader
     //
     this.VersionHeader.Text = "Version:";
     //
     // LogicalNameHeader
     //
     this.LogicalNameHeader.Text  = "Logical Name:";
     this.LogicalNameHeader.Width = 106;
     //
     // AttributeAccesssHeader
     //
     this.AttributeAccesssHeader.Text  = "Acctibute Access:";
     this.AttributeAccesssHeader.Width = 106;
     //
     // MethodAccessHeader
     //
     this.MethodAccessHeader.Text  = "Method Access:";
     this.MethodAccessHeader.Width = 97;
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index    = 1;
     this.LogicalNameTB.Location = new System.Drawing.Point(102, 21);
     this.LogicalNameTB.Name     = "LogicalNameTB";
     this.LogicalNameTB.Size     = new System.Drawing.Size(390, 20);
     this.LogicalNameTB.TabIndex = 1;
     this.LogicalNameTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // SecretTB
     //
     this.SecretTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.SecretTB.Index    = 7;
     this.SecretTB.Location = new System.Drawing.Point(102, 73);
     this.SecretTB.Name     = "SecretTB";
     this.SecretTB.ReadOnly = true;
     this.SecretTB.Size     = new System.Drawing.Size(390, 20);
     this.SecretTB.TabIndex = 13;
     this.SecretTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // SecretLbl
     //
     this.SecretLbl.AutoSize = true;
     this.SecretLbl.Location = new System.Drawing.Point(6, 76);
     this.SecretLbl.Name     = "SecretLbl";
     this.SecretLbl.Size     = new System.Drawing.Size(41, 13);
     this.SecretLbl.TabIndex = 12;
     this.SecretLbl.Text     = "Secret:";
     //
     // GXDLMSAssociationLogicalNameView
     //
     this.ClientSize = new System.Drawing.Size(539, 348);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSAssociationLogicalNameView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #20
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSIp6SetupView));
     this.groupBox1            = new System.Windows.Forms.GroupBox();
     this.RemoveAddressBtb     = new Gurux.DLMS.UI.GXButton();
     this.AddAddressBtn        = new Gurux.DLMS.UI.GXButton();
     this.AddressTab           = new System.Windows.Forms.TabControl();
     this.tabPage1             = new System.Windows.Forms.TabPage();
     this.UnicastAddressView   = new System.Windows.Forms.ListView();
     this.columnHeader1        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.tabPage2             = new System.Windows.Forms.TabPage();
     this.MulticastAddressView = new System.Windows.Forms.ListView();
     this.columnHeader2        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.tabPage3             = new System.Windows.Forms.TabPage();
     this.GatewayAddressView   = new System.Windows.Forms.ListView();
     this.columnHeader3        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.groupBox2            = new System.Windows.Forms.GroupBox();
     this.RemoveBtn            = new System.Windows.Forms.Button();
     this.EditBtn                = new System.Windows.Forms.Button();
     this.AddBtn                 = new System.Windows.Forms.Button();
     this.DiscoverySetupView     = new System.Windows.Forms.ListView();
     this.RSMaxRetryCh           = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.RSRetryWaitTimeCh      = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.RASendPeriodCh         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.AddressConfigModeCb    = new Gurux.DLMS.UI.GXValueField();
     this.AddressConfigModeLbl   = new System.Windows.Forms.Label();
     this.SecondaryDNSAddressTB  = new Gurux.DLMS.UI.GXValueField();
     this.SecondaryDNSAddressLbl = new System.Windows.Forms.Label();
     this.PrimaryDNSAddressTB    = new Gurux.DLMS.UI.GXValueField();
     this.PrimaryDNSAddressLbl   = new System.Windows.Forms.Label();
     this.TrafficClassLblTB      = new Gurux.DLMS.UI.GXValueField();
     this.TrafficClassLbl        = new System.Windows.Forms.Label();
     this.DataLinkLayerTB        = new Gurux.DLMS.UI.GXValueField();
     this.DataLinkLayerLbl       = new System.Windows.Forms.Label();
     this.LogicalNameTB          = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl         = new System.Windows.Forms.Label();
     this.errorProvider1         = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     this.AddressTab.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.RemoveAddressBtb);
     this.groupBox1.Controls.Add(this.AddAddressBtn);
     this.groupBox1.Controls.Add(this.AddressTab);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.AddressConfigModeCb);
     this.groupBox1.Controls.Add(this.AddressConfigModeLbl);
     this.groupBox1.Controls.Add(this.SecondaryDNSAddressTB);
     this.groupBox1.Controls.Add(this.SecondaryDNSAddressLbl);
     this.groupBox1.Controls.Add(this.PrimaryDNSAddressTB);
     this.groupBox1.Controls.Add(this.PrimaryDNSAddressLbl);
     this.groupBox1.Controls.Add(this.TrafficClassLblTB);
     this.groupBox1.Controls.Add(this.TrafficClassLbl);
     this.groupBox1.Controls.Add(this.DataLinkLayerTB);
     this.groupBox1.Controls.Add(this.DataLinkLayerLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(540, 515);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Ip6 Setup Object";
     this.groupBox1.UseCompatibleTextRendering = true;
     //
     // RemoveAddressBtb
     //
     this.RemoveAddressBtb.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.RemoveAddressBtb.Index    = 2;
     this.RemoveAddressBtb.Location = new System.Drawing.Point(447, 155);
     this.RemoveAddressBtb.Name     = "RemoveAddressBtb";
     this.RemoveAddressBtb.Size     = new System.Drawing.Size(75, 23);
     this.RemoveAddressBtb.TabIndex = 26;
     this.RemoveAddressBtb.Text     = "Remove...";
     this.RemoveAddressBtb.UseVisualStyleBackColor = true;
     //
     // AddAddressBtn
     //
     this.AddAddressBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.AddAddressBtn.Index    = 1;
     this.AddAddressBtn.Location = new System.Drawing.Point(447, 126);
     this.AddAddressBtn.Name     = "AddAddressBtn";
     this.AddAddressBtn.Size     = new System.Drawing.Size(75, 23);
     this.AddAddressBtn.TabIndex = 25;
     this.AddAddressBtn.Text     = "Add...";
     this.AddAddressBtn.UseVisualStyleBackColor = true;
     //
     // AddressTab
     //
     this.AddressTab.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.AddressTab.Controls.Add(this.tabPage1);
     this.AddressTab.Controls.Add(this.tabPage2);
     this.AddressTab.Controls.Add(this.tabPage3);
     this.AddressTab.Location      = new System.Drawing.Point(9, 101);
     this.AddressTab.Name          = "AddressTab";
     this.AddressTab.SelectedIndex = 0;
     this.AddressTab.Size          = new System.Drawing.Size(432, 124);
     this.AddressTab.TabIndex      = 24;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.UnicastAddressView);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(424, 98);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Unicast:";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // UnicastAddressView
     //
     this.UnicastAddressView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1
     });
     this.UnicastAddressView.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.UnicastAddressView.FullRowSelect = true;
     this.UnicastAddressView.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.UnicastAddressView.HideSelection = false;
     this.UnicastAddressView.Location      = new System.Drawing.Point(3, 3);
     this.UnicastAddressView.Name          = "UnicastAddressView";
     this.UnicastAddressView.Size          = new System.Drawing.Size(418, 92);
     this.UnicastAddressView.TabIndex      = 30;
     this.UnicastAddressView.UseCompatibleStateImageBehavior = false;
     this.UnicastAddressView.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "Address";
     this.columnHeader1.Width = 285;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.MulticastAddressView);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(424, 98);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Multicast:";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // MulticastAddressView
     //
     this.MulticastAddressView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader2
     });
     this.MulticastAddressView.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.MulticastAddressView.FullRowSelect = true;
     this.MulticastAddressView.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.MulticastAddressView.HideSelection = false;
     this.MulticastAddressView.Location      = new System.Drawing.Point(3, 3);
     this.MulticastAddressView.Name          = "MulticastAddressView";
     this.MulticastAddressView.Size          = new System.Drawing.Size(418, 92);
     this.MulticastAddressView.TabIndex      = 20;
     this.MulticastAddressView.UseCompatibleStateImageBehavior = false;
     this.MulticastAddressView.View = System.Windows.Forms.View.Details;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Address";
     this.columnHeader2.Width = 285;
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.GatewayAddressView);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size     = new System.Drawing.Size(424, 98);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Gateway:";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // GatewayAddressView
     //
     this.GatewayAddressView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader3
     });
     this.GatewayAddressView.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.GatewayAddressView.FullRowSelect = true;
     this.GatewayAddressView.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.GatewayAddressView.HideSelection = false;
     this.GatewayAddressView.Location      = new System.Drawing.Point(3, 3);
     this.GatewayAddressView.Name          = "GatewayAddressView";
     this.GatewayAddressView.Size          = new System.Drawing.Size(418, 92);
     this.GatewayAddressView.TabIndex      = 20;
     this.GatewayAddressView.UseCompatibleStateImageBehavior = false;
     this.GatewayAddressView.View = System.Windows.Forms.View.Details;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "Address";
     this.columnHeader3.Width = 286;
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.RemoveBtn);
     this.groupBox2.Controls.Add(this.EditBtn);
     this.groupBox2.Controls.Add(this.AddBtn);
     this.groupBox2.Controls.Add(this.DiscoverySetupView);
     this.groupBox2.Location = new System.Drawing.Point(9, 310);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(531, 199);
     this.groupBox2.TabIndex = 9;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Neighbor Discovery Setup";
     //
     // RemoveBtn
     //
     this.RemoveBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.RemoveBtn.Location = new System.Drawing.Point(450, 170);
     this.RemoveBtn.Name     = "RemoveBtn";
     this.RemoveBtn.Size     = new System.Drawing.Size(75, 23);
     this.RemoveBtn.TabIndex = 23;
     this.RemoveBtn.Text     = "Remove";
     this.RemoveBtn.UseVisualStyleBackColor = true;
     //
     // EditBtn
     //
     this.EditBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.EditBtn.Location = new System.Drawing.Point(369, 170);
     this.EditBtn.Name     = "EditBtn";
     this.EditBtn.Size     = new System.Drawing.Size(75, 23);
     this.EditBtn.TabIndex = 22;
     this.EditBtn.Text     = "Edit...";
     this.EditBtn.UseVisualStyleBackColor = true;
     //
     // AddBtn
     //
     this.AddBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.AddBtn.Location = new System.Drawing.Point(288, 170);
     this.AddBtn.Name     = "AddBtn";
     this.AddBtn.Size     = new System.Drawing.Size(75, 23);
     this.AddBtn.TabIndex = 21;
     this.AddBtn.Text     = "Add...";
     this.AddBtn.UseVisualStyleBackColor = true;
     //
     // DiscoverySetupView
     //
     this.DiscoverySetupView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                             | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.DiscoverySetupView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.RSMaxRetryCh,
         this.RSRetryWaitTimeCh,
         this.RASendPeriodCh
     });
     this.DiscoverySetupView.FullRowSelect = true;
     this.DiscoverySetupView.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.DiscoverySetupView.HideSelection = false;
     this.DiscoverySetupView.Location      = new System.Drawing.Point(6, 19);
     this.DiscoverySetupView.Name          = "DiscoverySetupView";
     this.DiscoverySetupView.Size          = new System.Drawing.Size(495, 145);
     this.DiscoverySetupView.TabIndex      = 18;
     this.DiscoverySetupView.UseCompatibleStateImageBehavior = false;
     this.DiscoverySetupView.View = System.Windows.Forms.View.Details;
     //
     // RSMaxRetryCh
     //
     this.RSMaxRetryCh.Text  = "RS Max Retry";
     this.RSMaxRetryCh.Width = 86;
     //
     // RSRetryWaitTimeCh
     //
     this.RSRetryWaitTimeCh.Text  = "RS retry wait time";
     this.RSRetryWaitTimeCh.Width = 103;
     //
     // RASendPeriodCh
     //
     this.RASendPeriodCh.Text  = "RA send period";
     this.RASendPeriodCh.Width = 94;
     //
     // AddressConfigModeCb
     //
     this.AddressConfigModeCb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.AddressConfigModeCb.Index         = 3;
     this.AddressConfigModeCb.Location      = new System.Drawing.Point(136, 73);
     this.AddressConfigModeCb.Name          = "AddressConfigModeCb";
     this.AddressConfigModeCb.NotifyChanges = false;
     this.AddressConfigModeCb.Size          = new System.Drawing.Size(374, 20);
     this.AddressConfigModeCb.TabIndex      = 2;
     this.AddressConfigModeCb.Type          = Gurux.DLMS.Enums.ValueFieldType.CompoBox;
     //
     // AddressConfigModeLbl
     //
     this.AddressConfigModeLbl.AutoSize = true;
     this.AddressConfigModeLbl.Location = new System.Drawing.Point(6, 76);
     this.AddressConfigModeLbl.Name     = "AddressConfigModeLbl";
     this.AddressConfigModeLbl.Size     = new System.Drawing.Size(109, 13);
     this.AddressConfigModeLbl.TabIndex = 20;
     this.AddressConfigModeLbl.Text     = "Address config mode:";
     //
     // SecondaryDNSAddressTB
     //
     this.SecondaryDNSAddressTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.SecondaryDNSAddressTB.Index         = 8;
     this.SecondaryDNSAddressTB.Location      = new System.Drawing.Point(136, 257);
     this.SecondaryDNSAddressTB.Name          = "SecondaryDNSAddressTB";
     this.SecondaryDNSAddressTB.NotifyChanges = false;
     this.SecondaryDNSAddressTB.Size          = new System.Drawing.Size(374, 20);
     this.SecondaryDNSAddressTB.TabIndex      = 7;
     this.SecondaryDNSAddressTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // SecondaryDNSAddressLbl
     //
     this.SecondaryDNSAddressLbl.AutoSize = true;
     this.SecondaryDNSAddressLbl.Location = new System.Drawing.Point(6, 260);
     this.SecondaryDNSAddressLbl.Name     = "SecondaryDNSAddressLbl";
     this.SecondaryDNSAddressLbl.Size     = new System.Drawing.Size(128, 13);
     this.SecondaryDNSAddressLbl.TabIndex = 18;
     this.SecondaryDNSAddressLbl.Text     = "Secondary DNS Address:";
     //
     // PrimaryDNSAddressTB
     //
     this.PrimaryDNSAddressTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.PrimaryDNSAddressTB.Index         = 7;
     this.PrimaryDNSAddressTB.Location      = new System.Drawing.Point(136, 231);
     this.PrimaryDNSAddressTB.Name          = "PrimaryDNSAddressTB";
     this.PrimaryDNSAddressTB.NotifyChanges = false;
     this.PrimaryDNSAddressTB.Size          = new System.Drawing.Size(374, 20);
     this.PrimaryDNSAddressTB.TabIndex      = 6;
     this.PrimaryDNSAddressTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // PrimaryDNSAddressLbl
     //
     this.PrimaryDNSAddressLbl.AutoSize = true;
     this.PrimaryDNSAddressLbl.Location = new System.Drawing.Point(6, 234);
     this.PrimaryDNSAddressLbl.Name     = "PrimaryDNSAddressLbl";
     this.PrimaryDNSAddressLbl.Size     = new System.Drawing.Size(111, 13);
     this.PrimaryDNSAddressLbl.TabIndex = 16;
     this.PrimaryDNSAddressLbl.Text     = "Primary DNS Address:";
     //
     // TrafficClassLblTB
     //
     this.TrafficClassLblTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.TrafficClassLblTB.Index         = 9;
     this.TrafficClassLblTB.Location      = new System.Drawing.Point(136, 283);
     this.TrafficClassLblTB.Name          = "TrafficClassLblTB";
     this.TrafficClassLblTB.NotifyChanges = false;
     this.TrafficClassLblTB.Size          = new System.Drawing.Size(374, 20);
     this.TrafficClassLblTB.TabIndex      = 8;
     this.TrafficClassLblTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // TrafficClassLbl
     //
     this.TrafficClassLbl.AutoSize = true;
     this.TrafficClassLbl.Location = new System.Drawing.Point(6, 286);
     this.TrafficClassLbl.Name     = "TrafficClassLbl";
     this.TrafficClassLbl.Size     = new System.Drawing.Size(67, 13);
     this.TrafficClassLbl.TabIndex = 12;
     this.TrafficClassLbl.Text     = "Traffic class:";
     //
     // DataLinkLayerTB
     //
     this.DataLinkLayerTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.DataLinkLayerTB.Index         = 2;
     this.DataLinkLayerTB.Location      = new System.Drawing.Point(136, 47);
     this.DataLinkLayerTB.Name          = "DataLinkLayerTB";
     this.DataLinkLayerTB.NotifyChanges = false;
     this.DataLinkLayerTB.Size          = new System.Drawing.Size(374, 20);
     this.DataLinkLayerTB.TabIndex      = 1;
     this.DataLinkLayerTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // DataLinkLayerLbl
     //
     this.DataLinkLayerLbl.AutoSize = true;
     this.DataLinkLayerLbl.Location = new System.Drawing.Point(6, 50);
     this.DataLinkLayerLbl.Name     = "DataLinkLayerLbl";
     this.DataLinkLayerLbl.Size     = new System.Drawing.Size(77, 13);
     this.DataLinkLayerLbl.TabIndex = 2;
     this.DataLinkLayerLbl.Text     = "Data link layer:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index         = 1;
     this.LogicalNameTB.Location      = new System.Drawing.Point(136, 21);
     this.LogicalNameTB.Name          = "LogicalNameTB";
     this.LogicalNameTB.NotifyChanges = false;
     this.LogicalNameTB.Size          = new System.Drawing.Size(374, 20);
     this.LogicalNameTB.TabIndex      = 0;
     this.LogicalNameTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSIp6SetupView
     //
     this.ClientSize = new System.Drawing.Size(564, 539);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSIp6SetupView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.AddressTab.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSActionScheduleView));
     this.groupBox1               = new System.Windows.Forms.GroupBox();
     this.TimeRemoveBtn           = new System.Windows.Forms.Button();
     this.TimeEditBtn             = new System.Windows.Forms.Button();
     this.TimeAddBtn              = new System.Windows.Forms.Button();
     this.Time                    = new System.Windows.Forms.ListView();
     this.TimeHeader              = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.contextMenuStrip1       = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.groupBox2               = new System.Windows.Forms.GroupBox();
     this.ScriptTypeTb            = new Gurux.DLMS.UI.GXValueField();
     this.ScriptTypeLbl           = new System.Windows.Forms.Label();
     this.ScriptSelectorLbl       = new System.Windows.Forms.Label();
     this.ScriptSelectorTB        = new System.Windows.Forms.TextBox();
     this.ScriptNameLbl           = new System.Windows.Forms.Label();
     this.LogicalNameTB           = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl          = new System.Windows.Forms.Label();
     this.errorProvider1          = new System.Windows.Forms.ErrorProvider(this.components);
     this.ScriptNameTB            = new System.Windows.Forms.ComboBox();
     this.groupBox1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.TimeRemoveBtn);
     this.groupBox1.Controls.Add(this.TimeEditBtn);
     this.groupBox1.Controls.Add(this.TimeAddBtn);
     this.groupBox1.Controls.Add(this.Time);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(388, 335);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Action Schedule Object";
     //
     // TimeRemoveBtn
     //
     this.TimeRemoveBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.TimeRemoveBtn.Location = new System.Drawing.Point(290, 306);
     this.TimeRemoveBtn.Name     = "TimeRemoveBtn";
     this.TimeRemoveBtn.Size     = new System.Drawing.Size(75, 23);
     this.TimeRemoveBtn.TabIndex = 7;
     this.TimeRemoveBtn.Text     = "Remove";
     this.TimeRemoveBtn.UseVisualStyleBackColor = true;
     this.TimeRemoveBtn.Click += new System.EventHandler(this.TimeRemoveBtn_Click);
     //
     // TimeEditBtn
     //
     this.TimeEditBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.TimeEditBtn.Location = new System.Drawing.Point(209, 306);
     this.TimeEditBtn.Name     = "TimeEditBtn";
     this.TimeEditBtn.Size     = new System.Drawing.Size(75, 23);
     this.TimeEditBtn.TabIndex = 6;
     this.TimeEditBtn.Text     = "Edit...";
     this.TimeEditBtn.UseVisualStyleBackColor = true;
     this.TimeEditBtn.Click += new System.EventHandler(this.TimeEditBtn_Click);
     //
     // TimeAddBtn
     //
     this.TimeAddBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.TimeAddBtn.Location = new System.Drawing.Point(128, 306);
     this.TimeAddBtn.Name     = "TimeAddBtn";
     this.TimeAddBtn.Size     = new System.Drawing.Size(75, 23);
     this.TimeAddBtn.TabIndex = 5;
     this.TimeAddBtn.Text     = "Add...";
     this.TimeAddBtn.UseVisualStyleBackColor = true;
     this.TimeAddBtn.Click += new System.EventHandler(this.TimeAddBtn_Click);
     //
     // Time
     //
     this.Time.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.Time.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.TimeHeader
     });
     this.Time.ContextMenuStrip = this.contextMenuStrip1;
     this.Time.FullRowSelect    = true;
     this.Time.HeaderStyle      = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.Time.HideSelection    = false;
     this.Time.Location         = new System.Drawing.Point(6, 174);
     this.Time.Name             = "Time";
     this.Time.Size             = new System.Drawing.Size(359, 126);
     this.Time.TabIndex         = 4;
     this.Time.UseCompatibleStateImageBehavior = false;
     this.Time.View         = System.Windows.Forms.View.Details;
     this.Time.DoubleClick += new System.EventHandler(this.TimeEditBtn_Click);
     //
     // TimeHeader
     //
     this.TimeHeader.Text  = "Time:";
     this.TimeHeader.Width = 339;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.addToolStripMenuItem,
         this.editToolStripMenuItem,
         this.removeToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(118, 70);
     //
     // addToolStripMenuItem
     //
     this.addToolStripMenuItem.Name   = "addToolStripMenuItem";
     this.addToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.addToolStripMenuItem.Text   = "Add";
     this.addToolStripMenuItem.Click += new System.EventHandler(this.TimeAddBtn_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.Name   = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.editToolStripMenuItem.Text   = "Edit";
     this.editToolStripMenuItem.Click += new System.EventHandler(this.TimeEditBtn_Click);
     //
     // removeToolStripMenuItem
     //
     this.removeToolStripMenuItem.Name   = "removeToolStripMenuItem";
     this.removeToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.removeToolStripMenuItem.Text   = "Remove";
     this.removeToolStripMenuItem.Click += new System.EventHandler(this.TimeRemoveBtn_Click);
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.ScriptNameTB);
     this.groupBox2.Controls.Add(this.ScriptTypeTb);
     this.groupBox2.Controls.Add(this.ScriptTypeLbl);
     this.groupBox2.Controls.Add(this.ScriptSelectorLbl);
     this.groupBox2.Controls.Add(this.ScriptSelectorTB);
     this.groupBox2.Controls.Add(this.ScriptNameLbl);
     this.groupBox2.Location = new System.Drawing.Point(1, 58);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(387, 110);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Executed Script";
     //
     // ScriptTypeTb
     //
     this.ScriptTypeTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.ScriptTypeTb.Index         = 3;
     this.ScriptTypeTb.Location      = new System.Drawing.Point(101, 80);
     this.ScriptTypeTb.Name          = "ScriptTypeTb";
     this.ScriptTypeTb.NotifyChanges = false;
     this.ScriptTypeTb.ReadOnly      = true;
     this.ScriptTypeTb.Size          = new System.Drawing.Size(263, 99);
     this.ScriptTypeTb.TabIndex      = 3;
     this.ScriptTypeTb.Type          = Gurux.DLMS.Enums.ValueFieldType.CompoBox;
     //
     // ScriptTypeLbl
     //
     this.ScriptTypeLbl.AutoSize = true;
     this.ScriptTypeLbl.Location = new System.Drawing.Point(6, 80);
     this.ScriptTypeLbl.Name     = "ScriptTypeLbl";
     this.ScriptTypeLbl.Size     = new System.Drawing.Size(64, 13);
     this.ScriptTypeLbl.TabIndex = 5;
     this.ScriptTypeLbl.Text     = "Script Type:";
     //
     // ScriptSelectorLbl
     //
     this.ScriptSelectorLbl.AutoSize = true;
     this.ScriptSelectorLbl.Location = new System.Drawing.Point(6, 54);
     this.ScriptSelectorLbl.Name     = "ScriptSelectorLbl";
     this.ScriptSelectorLbl.Size     = new System.Drawing.Size(79, 13);
     this.ScriptSelectorLbl.TabIndex = 3;
     this.ScriptSelectorLbl.Text     = "Script Selector:";
     //
     // ScriptSelectorTB
     //
     this.ScriptSelectorTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.ScriptSelectorTB.Location = new System.Drawing.Point(101, 54);
     this.ScriptSelectorTB.Name     = "ScriptSelectorTB";
     this.ScriptSelectorTB.Size     = new System.Drawing.Size(261, 20);
     this.ScriptSelectorTB.TabIndex = 2;
     this.ScriptSelectorTB.Leave   += new System.EventHandler(this.ScriptSelectorTB_Leave);
     //
     // ScriptNameLbl
     //
     this.ScriptNameLbl.AutoSize = true;
     this.ScriptNameLbl.Location = new System.Drawing.Point(6, 28);
     this.ScriptNameLbl.Name     = "ScriptNameLbl";
     this.ScriptNameLbl.Size     = new System.Drawing.Size(68, 13);
     this.ScriptNameLbl.TabIndex = 1;
     this.ScriptNameLbl.Text     = "Script Name:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index         = 1;
     this.LogicalNameTB.Location      = new System.Drawing.Point(102, 21);
     this.LogicalNameTB.Name          = "LogicalNameTB";
     this.LogicalNameTB.NotifyChanges = false;
     this.LogicalNameTB.Size          = new System.Drawing.Size(263, 20);
     this.LogicalNameTB.TabIndex      = 1;
     this.LogicalNameTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // ScriptNameTB
     //
     this.ScriptNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.ScriptNameTB.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ScriptNameTB.FormattingEnabled = true;
     this.ScriptNameTB.Location          = new System.Drawing.Point(101, 25);
     this.ScriptNameTB.Name                  = "ScriptNameTB";
     this.ScriptNameTB.Size                  = new System.Drawing.Size(261, 21);
     this.ScriptNameTB.TabIndex              = 78;
     this.ScriptNameTB.SelectedIndexChanged += new System.EventHandler(this.ScriptNameTB_SelectedIndexChanged);
     //
     // GXDLMSActionScheduleView
     //
     this.ClientSize = new System.Drawing.Size(412, 359);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSActionScheduleView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSPushSetupView));
     this.groupBox1                     = new System.Windows.Forms.GroupBox();
     this.RepetitionDelayTB             = new Gurux.DLMS.UI.GXValueField();
     this.LblRepetitionDelay            = new System.Windows.Forms.Label();
     this.NumberOfRetriesTB             = new Gurux.DLMS.UI.GXValueField();
     this.NumberOfRetriesLbl            = new System.Windows.Forms.Label();
     this.RandomisationStartIntervalTB  = new Gurux.DLMS.UI.GXValueField();
     this.RandomisationStartIntervalLbl = new System.Windows.Forms.Label();
     this.GXSendDestinationAndMethodGB  = new System.Windows.Forms.GroupBox();
     this.MessageLbl                    = new System.Windows.Forms.Label();
     this.MessageTB                     = new System.Windows.Forms.TextBox();
     this.DestinationLbl                = new System.Windows.Forms.Label();
     this.DestinationTB                 = new System.Windows.Forms.TextBox();
     this.ServiceLbl                    = new System.Windows.Forms.Label();
     this.ServiceTB                     = new System.Windows.Forms.TextBox();
     this.CommunicationWindowLV         = new System.Windows.Forms.ListView();
     this.StartHeader                   = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.EndHeader                     = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.CommunicationWindowLbl        = new System.Windows.Forms.Label();
     this.ObjectsLV                     = new System.Windows.Forms.ListView();
     this.TypeHeader                    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.LogicalNameHeader             = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.AttributeIndexHeader          = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.DataIndexHeader               = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.DescriptionLbl                = new System.Windows.Forms.Label();
     this.DescriptionTB                 = new System.Windows.Forms.TextBox();
     this.ValueLbl       = new System.Windows.Forms.Label();
     this.LogicalNameTB  = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl = new System.Windows.Forms.Label();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     this.GXSendDestinationAndMethodGB.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.RepetitionDelayTB);
     this.groupBox1.Controls.Add(this.LblRepetitionDelay);
     this.groupBox1.Controls.Add(this.NumberOfRetriesTB);
     this.groupBox1.Controls.Add(this.NumberOfRetriesLbl);
     this.groupBox1.Controls.Add(this.RandomisationStartIntervalTB);
     this.groupBox1.Controls.Add(this.RandomisationStartIntervalLbl);
     this.groupBox1.Controls.Add(this.GXSendDestinationAndMethodGB);
     this.groupBox1.Controls.Add(this.CommunicationWindowLV);
     this.groupBox1.Controls.Add(this.CommunicationWindowLbl);
     this.groupBox1.Controls.Add(this.ObjectsLV);
     this.groupBox1.Controls.Add(this.DescriptionLbl);
     this.groupBox1.Controls.Add(this.DescriptionTB);
     this.groupBox1.Controls.Add(this.ValueLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(421, 427);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Data Object";
     //
     // RepetitionDelayTB
     //
     this.RepetitionDelayTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.RepetitionDelayTB.Index    = 7;
     this.RepetitionDelayTB.Location = new System.Drawing.Point(103, 401);
     this.RepetitionDelayTB.Name     = "RepetitionDelayTB";
     this.RepetitionDelayTB.Size     = new System.Drawing.Size(296, 20);
     this.RepetitionDelayTB.TabIndex = 22;
     this.RepetitionDelayTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // LblRepetitionDelay
     //
     this.LblRepetitionDelay.AutoSize = true;
     this.LblRepetitionDelay.Location = new System.Drawing.Point(7, 404);
     this.LblRepetitionDelay.Name     = "LblRepetitionDelay";
     this.LblRepetitionDelay.Size     = new System.Drawing.Size(86, 13);
     this.LblRepetitionDelay.TabIndex = 21;
     this.LblRepetitionDelay.Text     = "Repetition delay:";
     //
     // NumberOfRetriesTB
     //
     this.NumberOfRetriesTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.NumberOfRetriesTB.Index    = 6;
     this.NumberOfRetriesTB.Location = new System.Drawing.Point(103, 376);
     this.NumberOfRetriesTB.Name     = "NumberOfRetriesTB";
     this.NumberOfRetriesTB.Size     = new System.Drawing.Size(296, 20);
     this.NumberOfRetriesTB.TabIndex = 20;
     this.NumberOfRetriesTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // NumberOfRetriesLbl
     //
     this.NumberOfRetriesLbl.AutoSize = true;
     this.NumberOfRetriesLbl.Location = new System.Drawing.Point(7, 379);
     this.NumberOfRetriesLbl.Name     = "NumberOfRetriesLbl";
     this.NumberOfRetriesLbl.Size     = new System.Drawing.Size(90, 13);
     this.NumberOfRetriesLbl.TabIndex = 19;
     this.NumberOfRetriesLbl.Text     = "Number of retries:";
     //
     // RandomisationStartIntervalTB
     //
     this.RandomisationStartIntervalTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.RandomisationStartIntervalTB.Index    = 5;
     this.RandomisationStartIntervalTB.Location = new System.Drawing.Point(103, 350);
     this.RandomisationStartIntervalTB.Name     = "RandomisationStartIntervalTB";
     this.RandomisationStartIntervalTB.Size     = new System.Drawing.Size(296, 20);
     this.RandomisationStartIntervalTB.TabIndex = 18;
     this.RandomisationStartIntervalTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // RandomisationStartIntervalLbl
     //
     this.RandomisationStartIntervalLbl.AutoSize = true;
     this.RandomisationStartIntervalLbl.Location = new System.Drawing.Point(7, 353);
     this.RandomisationStartIntervalLbl.Name     = "RandomisationStartIntervalLbl";
     this.RandomisationStartIntervalLbl.Size     = new System.Drawing.Size(80, 13);
     this.RandomisationStartIntervalLbl.TabIndex = 17;
     this.RandomisationStartIntervalLbl.Text     = "Randomisation:";
     //
     // GXSendDestinationAndMethodGB
     //
     this.GXSendDestinationAndMethodGB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.GXSendDestinationAndMethodGB.Controls.Add(this.MessageLbl);
     this.GXSendDestinationAndMethodGB.Controls.Add(this.MessageTB);
     this.GXSendDestinationAndMethodGB.Controls.Add(this.DestinationLbl);
     this.GXSendDestinationAndMethodGB.Controls.Add(this.DestinationTB);
     this.GXSendDestinationAndMethodGB.Controls.Add(this.ServiceLbl);
     this.GXSendDestinationAndMethodGB.Controls.Add(this.ServiceTB);
     this.GXSendDestinationAndMethodGB.Location = new System.Drawing.Point(0, 155);
     this.GXSendDestinationAndMethodGB.Name     = "GXSendDestinationAndMethodGB";
     this.GXSendDestinationAndMethodGB.Size     = new System.Drawing.Size(421, 108);
     this.GXSendDestinationAndMethodGB.TabIndex = 16;
     this.GXSendDestinationAndMethodGB.TabStop  = false;
     this.GXSendDestinationAndMethodGB.Text     = "Send destination and method";
     //
     // MessageLbl
     //
     this.MessageLbl.AutoSize = true;
     this.MessageLbl.Location = new System.Drawing.Point(7, 74);
     this.MessageLbl.Name     = "MessageLbl";
     this.MessageLbl.Size     = new System.Drawing.Size(53, 13);
     this.MessageLbl.TabIndex = 11;
     this.MessageLbl.Text     = "Message:";
     //
     // MessageTB
     //
     this.MessageTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.MessageTB.Location = new System.Drawing.Point(103, 71);
     this.MessageTB.Name     = "MessageTB";
     this.MessageTB.Size     = new System.Drawing.Size(297, 20);
     this.MessageTB.TabIndex = 10;
     //
     // DestinationLbl
     //
     this.DestinationLbl.AutoSize = true;
     this.DestinationLbl.Location = new System.Drawing.Point(7, 48);
     this.DestinationLbl.Name     = "DestinationLbl";
     this.DestinationLbl.Size     = new System.Drawing.Size(63, 13);
     this.DestinationLbl.TabIndex = 9;
     this.DestinationLbl.Text     = "Destination:";
     //
     // DestinationTB
     //
     this.DestinationTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.DestinationTB.Location = new System.Drawing.Point(103, 45);
     this.DestinationTB.Name     = "DestinationTB";
     this.DestinationTB.Size     = new System.Drawing.Size(297, 20);
     this.DestinationTB.TabIndex = 8;
     //
     // ServiceLbl
     //
     this.ServiceLbl.AutoSize = true;
     this.ServiceLbl.Location = new System.Drawing.Point(7, 22);
     this.ServiceLbl.Name     = "ServiceLbl";
     this.ServiceLbl.Size     = new System.Drawing.Size(46, 13);
     this.ServiceLbl.TabIndex = 7;
     this.ServiceLbl.Text     = "Service:";
     //
     // ServiceTB
     //
     this.ServiceTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.ServiceTB.Location = new System.Drawing.Point(103, 19);
     this.ServiceTB.Name     = "ServiceTB";
     this.ServiceTB.Size     = new System.Drawing.Size(297, 20);
     this.ServiceTB.TabIndex = 6;
     //
     // CommunicationWindowLV
     //
     this.CommunicationWindowLV.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.CommunicationWindowLV.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.StartHeader,
         this.EndHeader
     });
     this.CommunicationWindowLV.FullRowSelect = true;
     this.CommunicationWindowLV.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.CommunicationWindowLV.HideSelection = false;
     this.CommunicationWindowLV.Location      = new System.Drawing.Point(102, 268);
     this.CommunicationWindowLV.Name          = "CommunicationWindowLV";
     this.CommunicationWindowLV.Size          = new System.Drawing.Size(296, 75);
     this.CommunicationWindowLV.TabIndex      = 15;
     this.CommunicationWindowLV.UseCompatibleStateImageBehavior = false;
     this.CommunicationWindowLV.View = System.Windows.Forms.View.Details;
     //
     // StartHeader
     //
     this.StartHeader.Text  = "Start";
     this.StartHeader.Width = 128;
     //
     // EndHeader
     //
     this.EndHeader.Text  = "End";
     this.EndHeader.Width = 157;
     //
     // CommunicationWindowLbl
     //
     this.CommunicationWindowLbl.Location = new System.Drawing.Point(6, 268);
     this.CommunicationWindowLbl.Name     = "CommunicationWindowLbl";
     this.CommunicationWindowLbl.Size     = new System.Drawing.Size(91, 61);
     this.CommunicationWindowLbl.TabIndex = 14;
     this.CommunicationWindowLbl.Text     = "Communication Window:";
     //
     // ObjectsLV
     //
     this.ObjectsLV.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.ObjectsLV.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.TypeHeader,
         this.LogicalNameHeader,
         this.AttributeIndexHeader,
         this.DataIndexHeader
     });
     this.ObjectsLV.FullRowSelect = true;
     this.ObjectsLV.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.ObjectsLV.HideSelection = false;
     this.ObjectsLV.Location      = new System.Drawing.Point(103, 74);
     this.ObjectsLV.Name          = "ObjectsLV";
     this.ObjectsLV.Size          = new System.Drawing.Size(296, 75);
     this.ObjectsLV.TabIndex      = 13;
     this.ObjectsLV.UseCompatibleStateImageBehavior = false;
     this.ObjectsLV.View = System.Windows.Forms.View.Details;
     //
     // TypeHeader
     //
     this.TypeHeader.Text  = "Type";
     this.TypeHeader.Width = 48;
     //
     // LogicalNameHeader
     //
     this.LogicalNameHeader.Text  = "LogicalName";
     this.LogicalNameHeader.Width = 76;
     //
     // AttributeIndexHeader
     //
     this.AttributeIndexHeader.Text  = "Attribute Index";
     this.AttributeIndexHeader.Width = 85;
     //
     // DataIndexHeader
     //
     this.DataIndexHeader.Text  = "Data Index";
     this.DataIndexHeader.Width = 74;
     //
     // DescriptionLbl
     //
     this.DescriptionLbl.AutoSize = true;
     this.DescriptionLbl.Location = new System.Drawing.Point(7, 22);
     this.DescriptionLbl.Name     = "DescriptionLbl";
     this.DescriptionLbl.Size     = new System.Drawing.Size(63, 13);
     this.DescriptionLbl.TabIndex = 5;
     this.DescriptionLbl.Text     = "Description:";
     //
     // DescriptionTB
     //
     this.DescriptionTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.DescriptionTB.Location = new System.Drawing.Point(103, 19);
     this.DescriptionTB.Name     = "DescriptionTB";
     this.DescriptionTB.ReadOnly = true;
     this.DescriptionTB.Size     = new System.Drawing.Size(297, 20);
     this.DescriptionTB.TabIndex = 4;
     //
     // ValueLbl
     //
     this.ValueLbl.AutoSize = true;
     this.ValueLbl.Location = new System.Drawing.Point(7, 74);
     this.ValueLbl.Name     = "ValueLbl";
     this.ValueLbl.Size     = new System.Drawing.Size(46, 13);
     this.ValueLbl.TabIndex = 2;
     this.ValueLbl.Text     = "Objects:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index    = 1;
     this.LogicalNameTB.Location = new System.Drawing.Point(103, 45);
     this.LogicalNameTB.Name     = "LogicalNameTB";
     this.LogicalNameTB.Size     = new System.Drawing.Size(296, 20);
     this.LogicalNameTB.TabIndex = 1;
     this.LogicalNameTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(7, 48);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSPushSetupView
     //
     this.ClientSize = new System.Drawing.Size(445, 451);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSPushSetupView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.GXSendDestinationAndMethodGB.ResumeLayout(false);
     this.GXSendDestinationAndMethodGB.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #23
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSSFSKActiveInitiatorView));
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.LSAPSelectorTB  = new System.Windows.Forms.TextBox();
     this.MACAddressTB    = new System.Windows.Forms.TextBox();
     this.SystemTitleTB   = new System.Windows.Forms.TextBox();
     this.SystemTitleLbl  = new System.Windows.Forms.Label();
     this.MACAddressLbl   = new System.Windows.Forms.Label();
     this.LSAPSelectorLbl = new System.Windows.Forms.Label();
     this.LogicalNameTB   = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl  = new System.Windows.Forms.Label();
     this.errorProvider1  = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.LSAPSelectorTB);
     this.groupBox1.Controls.Add(this.MACAddressTB);
     this.groupBox1.Controls.Add(this.SystemTitleTB);
     this.groupBox1.Controls.Add(this.SystemTitleLbl);
     this.groupBox1.Controls.Add(this.MACAddressLbl);
     this.groupBox1.Controls.Add(this.LSAPSelectorLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(348, 138);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "S-FSK Active initiator Object:";
     this.groupBox1.UseCompatibleTextRendering = true;
     //
     // LSAPSelectorTB
     //
     this.LSAPSelectorTB.Location = new System.Drawing.Point(136, 99);
     this.LSAPSelectorTB.Name     = "LSAPSelectorTB";
     this.LSAPSelectorTB.Size     = new System.Drawing.Size(206, 20);
     this.LSAPSelectorTB.TabIndex = 3;
     //
     // MACAddressTB
     //
     this.MACAddressTB.Location = new System.Drawing.Point(136, 73);
     this.MACAddressTB.Name     = "MACAddressTB";
     this.MACAddressTB.Size     = new System.Drawing.Size(206, 20);
     this.MACAddressTB.TabIndex = 2;
     //
     // SystemTitleTB
     //
     this.SystemTitleTB.Location = new System.Drawing.Point(136, 47);
     this.SystemTitleTB.Name     = "SystemTitleTB";
     this.SystemTitleTB.Size     = new System.Drawing.Size(206, 20);
     this.SystemTitleTB.TabIndex = 1;
     //
     // SystemTitleLbl
     //
     this.SystemTitleLbl.AutoSize = true;
     this.SystemTitleLbl.Location = new System.Drawing.Point(6, 50);
     this.SystemTitleLbl.Name     = "SystemTitleLbl";
     this.SystemTitleLbl.Size     = new System.Drawing.Size(67, 13);
     this.SystemTitleLbl.TabIndex = 6;
     this.SystemTitleLbl.Text     = "System Title:";
     //
     // MACAddressLbl
     //
     this.MACAddressLbl.AutoSize = true;
     this.MACAddressLbl.Location = new System.Drawing.Point(6, 76);
     this.MACAddressLbl.Name     = "MACAddressLbl";
     this.MACAddressLbl.Size     = new System.Drawing.Size(73, 13);
     this.MACAddressLbl.TabIndex = 4;
     this.MACAddressLbl.Text     = "MAC address:";
     //
     // LSAPSelectorLbl
     //
     this.LSAPSelectorLbl.AutoSize = true;
     this.LSAPSelectorLbl.Location = new System.Drawing.Point(6, 102);
     this.LSAPSelectorLbl.Name     = "LSAPSelectorLbl";
     this.LSAPSelectorLbl.Size     = new System.Drawing.Size(82, 13);
     this.LSAPSelectorLbl.TabIndex = 2;
     this.LSAPSelectorLbl.Text     = "L SAP Selector:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index    = 1;
     this.LogicalNameTB.Location = new System.Drawing.Point(136, 21);
     this.LogicalNameTB.Name     = "LogicalNameTB";
     this.LogicalNameTB.Size     = new System.Drawing.Size(206, 20);
     this.LogicalNameTB.TabIndex = 0;
     this.LogicalNameTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSSFSKActiveInitiatorView
     //
     this.ClientSize = new System.Drawing.Size(372, 164);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSSFSKActiveInitiatorView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSExtendedRegisterView));
     this.groupBox1      = new System.Windows.Forms.GroupBox();
     this.CaptureTimeTB  = new Gurux.DLMS.UI.GXValueField();
     this.CaptureTimeLbl = new System.Windows.Forms.Label();
     this.StatusTB       = new Gurux.DLMS.UI.GXValueField();
     this.StatusLbl      = new System.Windows.Forms.Label();
     this.UnitTB         = new Gurux.DLMS.UI.GXValueField();
     this.UnitLbl        = new System.Windows.Forms.Label();
     this.ScalerTB       = new Gurux.DLMS.UI.GXValueField();
     this.ScalerLbl      = new System.Windows.Forms.Label();
     this.ValueTB        = new Gurux.DLMS.UI.GXValueField();
     this.ValueLbl       = new System.Windows.Forms.Label();
     this.LogicalNameTB  = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl = new System.Windows.Forms.Label();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.CaptureTimeTB);
     this.groupBox1.Controls.Add(this.CaptureTimeLbl);
     this.groupBox1.Controls.Add(this.StatusTB);
     this.groupBox1.Controls.Add(this.StatusLbl);
     this.groupBox1.Controls.Add(this.UnitTB);
     this.groupBox1.Controls.Add(this.UnitLbl);
     this.groupBox1.Controls.Add(this.ScalerTB);
     this.groupBox1.Controls.Add(this.ScalerLbl);
     this.groupBox1.Controls.Add(this.ValueTB);
     this.groupBox1.Controls.Add(this.ValueLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(333, 190);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Extended Register Object";
     //
     // CaptureTimeTB
     //
     this.CaptureTimeTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.CaptureTimeTB.Index    = 5;
     this.CaptureTimeTB.Location = new System.Drawing.Point(102, 151);
     this.CaptureTimeTB.Name     = "CaptureTimeTB";
     this.CaptureTimeTB.Size     = new System.Drawing.Size(208, 20);
     this.CaptureTimeTB.TabIndex = 2;
     this.CaptureTimeTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // CaptureTimeLbl
     //
     this.CaptureTimeLbl.AutoSize = true;
     this.CaptureTimeLbl.Location = new System.Drawing.Point(6, 154);
     this.CaptureTimeLbl.Name     = "CaptureTimeLbl";
     this.CaptureTimeLbl.Size     = new System.Drawing.Size(73, 13);
     this.CaptureTimeLbl.TabIndex = 10;
     this.CaptureTimeLbl.Text     = "Capture Time:";
     //
     // StatusTB
     //
     this.StatusTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.StatusTB.Index    = 4;
     this.StatusTB.Location = new System.Drawing.Point(102, 125);
     this.StatusTB.Name     = "StatusTB";
     this.StatusTB.Size     = new System.Drawing.Size(208, 20);
     this.StatusTB.TabIndex = 1;
     this.StatusTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // StatusLbl
     //
     this.StatusLbl.AutoSize = true;
     this.StatusLbl.Location = new System.Drawing.Point(6, 128);
     this.StatusLbl.Name     = "StatusLbl";
     this.StatusLbl.Size     = new System.Drawing.Size(40, 13);
     this.StatusLbl.TabIndex = 8;
     this.StatusLbl.Text     = "Status:";
     //
     // UnitTB
     //
     this.UnitTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.UnitTB.Index    = 0;
     this.UnitTB.Location = new System.Drawing.Point(102, 99);
     this.UnitTB.Name     = "UnitTB";
     this.UnitTB.Size     = new System.Drawing.Size(208, 20);
     this.UnitTB.TabIndex = 5;
     this.UnitTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // UnitLbl
     //
     this.UnitLbl.AutoSize = true;
     this.UnitLbl.Location = new System.Drawing.Point(6, 102);
     this.UnitLbl.Name     = "UnitLbl";
     this.UnitLbl.Size     = new System.Drawing.Size(29, 13);
     this.UnitLbl.TabIndex = 6;
     this.UnitLbl.Text     = "Unit:";
     //
     // ScalerTB
     //
     this.ScalerTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.ScalerTB.Index    = 0;
     this.ScalerTB.Location = new System.Drawing.Point(102, 73);
     this.ScalerTB.Name     = "ScalerTB";
     this.ScalerTB.Size     = new System.Drawing.Size(208, 20);
     this.ScalerTB.TabIndex = 4;
     this.ScalerTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // ScalerLbl
     //
     this.ScalerLbl.AutoSize = true;
     this.ScalerLbl.Location = new System.Drawing.Point(6, 76);
     this.ScalerLbl.Name     = "ScalerLbl";
     this.ScalerLbl.Size     = new System.Drawing.Size(40, 13);
     this.ScalerLbl.TabIndex = 4;
     this.ScalerLbl.Text     = "Scaler:";
     //
     // ValueTB
     //
     this.ValueTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ValueTB.Index    = 2;
     this.ValueTB.Location = new System.Drawing.Point(102, 47);
     this.ValueTB.Name     = "ValueTB";
     this.ValueTB.Size     = new System.Drawing.Size(208, 20);
     this.ValueTB.TabIndex = 0;
     this.ValueTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // ValueLbl
     //
     this.ValueLbl.AutoSize = true;
     this.ValueLbl.Location = new System.Drawing.Point(6, 50);
     this.ValueLbl.Name     = "ValueLbl";
     this.ValueLbl.Size     = new System.Drawing.Size(37, 13);
     this.ValueLbl.TabIndex = 2;
     this.ValueLbl.Text     = "Value:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index    = 1;
     this.LogicalNameTB.Location = new System.Drawing.Point(102, 21);
     this.LogicalNameTB.Name     = "LogicalNameTB";
     this.LogicalNameTB.Size     = new System.Drawing.Size(208, 20);
     this.LogicalNameTB.TabIndex = 3;
     this.LogicalNameTB.Type     = Gurux.DLMS.UI.GXValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSExtendedRegisterView
     //
     this.ClientSize = new System.Drawing.Size(357, 216);
     this.Controls.Add(this.groupBox1);
     this.Name = "GXDLMSExtendedRegisterView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #25
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSIEC14908IdentificationView));
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.UniqueNodeIdLbl = new System.Windows.Forms.Label();
     this.ProgramIdLbl    = new System.Windows.Forms.Label();
     this.DomainIdLbl     = new System.Windows.Forms.Label();
     this.SubnetIdLbl     = new System.Windows.Forms.Label();
     this.NodeIdLbl       = new System.Windows.Forms.Label();
     this.LogicalNameLbl  = new System.Windows.Forms.Label();
     this.errorProvider1  = new System.Windows.Forms.ErrorProvider(this.components);
     this.UniqueNodeIdTb  = new Gurux.DLMS.UI.GXValueField();
     this.ProgramIdTB     = new Gurux.DLMS.UI.GXValueField();
     this.DomainIdTB      = new Gurux.DLMS.UI.GXValueField();
     this.SubnetIdTB      = new Gurux.DLMS.UI.GXValueField();
     this.NodeIdTB        = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameTB   = new Gurux.DLMS.UI.GXValueField();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.UniqueNodeIdTb);
     this.groupBox1.Controls.Add(this.UniqueNodeIdLbl);
     this.groupBox1.Controls.Add(this.ProgramIdTB);
     this.groupBox1.Controls.Add(this.ProgramIdLbl);
     this.groupBox1.Controls.Add(this.DomainIdTB);
     this.groupBox1.Controls.Add(this.DomainIdLbl);
     this.groupBox1.Controls.Add(this.SubnetIdTB);
     this.groupBox1.Controls.Add(this.SubnetIdLbl);
     this.groupBox1.Controls.Add(this.NodeIdTB);
     this.groupBox1.Controls.Add(this.NodeIdLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(348, 183);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = " IEC 14908 identification Object";
     this.groupBox1.UseCompatibleTextRendering = true;
     //
     // UniqueNodeIdLbl
     //
     this.UniqueNodeIdLbl.AutoSize = true;
     this.UniqueNodeIdLbl.Location = new System.Drawing.Point(6, 154);
     this.UniqueNodeIdLbl.Name     = "UniqueNodeIdLbl";
     this.UniqueNodeIdLbl.Size     = new System.Drawing.Size(87, 13);
     this.UniqueNodeIdLbl.TabIndex = 10;
     this.UniqueNodeIdLbl.Text     = "Unique Node ID:";
     //
     // ProgramIdLbl
     //
     this.ProgramIdLbl.AutoSize = true;
     this.ProgramIdLbl.Location = new System.Drawing.Point(6, 128);
     this.ProgramIdLbl.Name     = "ProgramIdLbl";
     this.ProgramIdLbl.Size     = new System.Drawing.Size(63, 13);
     this.ProgramIdLbl.TabIndex = 8;
     this.ProgramIdLbl.Text     = "Program ID:";
     //
     // DomainIdLbl
     //
     this.DomainIdLbl.AutoSize = true;
     this.DomainIdLbl.Location = new System.Drawing.Point(6, 102);
     this.DomainIdLbl.Name     = "DomainIdLbl";
     this.DomainIdLbl.Size     = new System.Drawing.Size(60, 13);
     this.DomainIdLbl.TabIndex = 6;
     this.DomainIdLbl.Text     = "Domain ID:";
     //
     // SubnetIdLbl
     //
     this.SubnetIdLbl.AutoSize = true;
     this.SubnetIdLbl.Location = new System.Drawing.Point(6, 76);
     this.SubnetIdLbl.Name     = "SubnetIdLbl";
     this.SubnetIdLbl.Size     = new System.Drawing.Size(58, 13);
     this.SubnetIdLbl.TabIndex = 4;
     this.SubnetIdLbl.Text     = "Subnet ID:";
     //
     // NodeIdLbl
     //
     this.NodeIdLbl.AutoSize = true;
     this.NodeIdLbl.Location = new System.Drawing.Point(6, 50);
     this.NodeIdLbl.Name     = "NodeIdLbl";
     this.NodeIdLbl.Size     = new System.Drawing.Size(50, 13);
     this.NodeIdLbl.TabIndex = 2;
     this.NodeIdLbl.Text     = "Node ID:";
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // UniqueNodeIdTb
     //
     this.UniqueNodeIdTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.UniqueNodeIdTb.Index    = 7;
     this.UniqueNodeIdTb.Location = new System.Drawing.Point(136, 151);
     this.UniqueNodeIdTb.Name     = "UniqueNodeIdTb";
     this.UniqueNodeIdTb.Size     = new System.Drawing.Size(206, 20);
     this.UniqueNodeIdTb.TabIndex = 9;
     this.UniqueNodeIdTb.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // ProgramIdTB
     //
     this.ProgramIdTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.ProgramIdTB.Index    = 6;
     this.ProgramIdTB.Location = new System.Drawing.Point(136, 125);
     this.ProgramIdTB.Name     = "ProgramIdTB";
     this.ProgramIdTB.Size     = new System.Drawing.Size(206, 20);
     this.ProgramIdTB.TabIndex = 4;
     this.ProgramIdTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // DomainIdTB
     //
     this.DomainIdTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.DomainIdTB.Index    = 4;
     this.DomainIdTB.Location = new System.Drawing.Point(136, 99);
     this.DomainIdTB.Name     = "DomainIdTB";
     this.DomainIdTB.Size     = new System.Drawing.Size(206, 20);
     this.DomainIdTB.TabIndex = 3;
     this.DomainIdTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // SubnetIdTB
     //
     this.SubnetIdTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.SubnetIdTB.Index    = 3;
     this.SubnetIdTB.Location = new System.Drawing.Point(136, 73);
     this.SubnetIdTB.Name     = "SubnetIdTB";
     this.SubnetIdTB.Size     = new System.Drawing.Size(206, 20);
     this.SubnetIdTB.TabIndex = 2;
     this.SubnetIdTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // NodeIdTB
     //
     this.NodeIdTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.NodeIdTB.Index    = 2;
     this.NodeIdTB.Location = new System.Drawing.Point(136, 47);
     this.NodeIdTB.Name     = "NodeIdTB";
     this.NodeIdTB.Size     = new System.Drawing.Size(206, 20);
     this.NodeIdTB.TabIndex = 1;
     this.NodeIdTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index    = 1;
     this.LogicalNameTB.Location = new System.Drawing.Point(136, 21);
     this.LogicalNameTB.Name     = "LogicalNameTB";
     this.LogicalNameTB.Size     = new System.Drawing.Size(206, 20);
     this.LogicalNameTB.TabIndex = 0;
     this.LogicalNameTB.Type     = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // GXDLMSIEC14908IdentificationView
     //
     this.ClientSize = new System.Drawing.Size(372, 219);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSIEC14908IdentificationView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSMBusMasterPortSetupView));
     this.groupBox1      = new System.Windows.Forms.GroupBox();
     this.CommSpeedTB    = new Gurux.DLMS.UI.GXValueField();
     this.CommSpeedLbl   = new System.Windows.Forms.Label();
     this.LogicalNameTB  = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl = new System.Windows.Forms.Label();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.CommSpeedTB);
     this.groupBox1.Controls.Add(this.CommSpeedLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(300, 96);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "MBus Master Port Setup Object";
     this.groupBox1.UseCompatibleTextRendering = true;
     //
     // CommSpeedTB
     //
     this.CommSpeedTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.CommSpeedTB.Index         = 2;
     this.CommSpeedTB.Location      = new System.Drawing.Point(122, 47);
     this.CommSpeedTB.Name          = "CommSpeedTB";
     this.CommSpeedTB.NotifyChanges = false;
     this.CommSpeedTB.ReadOnly      = true;
     this.CommSpeedTB.Size          = new System.Drawing.Size(168, 20);
     this.CommSpeedTB.TabIndex      = 2;
     this.CommSpeedTB.Type          = Gurux.DLMS.Enums.ValueFieldType.CompoBox;
     //
     // CommSpeedLbl
     //
     this.CommSpeedLbl.AutoSize = true;
     this.CommSpeedLbl.Location = new System.Drawing.Point(6, 50);
     this.CommSpeedLbl.Name     = "CommSpeedLbl";
     this.CommSpeedLbl.Size     = new System.Drawing.Size(73, 13);
     this.CommSpeedLbl.TabIndex = 2;
     this.CommSpeedLbl.Text     = "Comm Speed:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index         = 1;
     this.LogicalNameTB.Location      = new System.Drawing.Point(122, 21);
     this.LogicalNameTB.Name          = "LogicalNameTB";
     this.LogicalNameTB.NotifyChanges = false;
     this.LogicalNameTB.Size          = new System.Drawing.Size(168, 20);
     this.LogicalNameTB.TabIndex      = 1;
     this.LogicalNameTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSMBusMasterPortSetupView
     //
     this.ClientSize = new System.Drawing.Size(324, 126);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSMBusMasterPortSetupView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #27
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSPrimeNbOfdmPlcMacSetupView));
     this.groupBox1            = new System.Windows.Forms.GroupBox();
     this.DescriptionLbl       = new System.Windows.Forms.Label();
     this.DescriptionTB        = new System.Windows.Forms.TextBox();
     this.LogicalNameTB        = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl       = new System.Windows.Forms.Label();
     this.errorProvider1       = new System.Windows.Forms.ErrorProvider(this.components);
     this.CRCIncorrectCountTb  = new Gurux.DLMS.UI.GXValueField();
     this.CRCIncorrectCountLbl = new System.Windows.Forms.Label();
     this.gxValueField1        = new Gurux.DLMS.UI.GXValueField();
     this.label1        = new System.Windows.Forms.Label();
     this.gxValueField2 = new Gurux.DLMS.UI.GXValueField();
     this.label2        = new System.Windows.Forms.Label();
     this.gxValueField3 = new Gurux.DLMS.UI.GXValueField();
     this.label3        = new System.Windows.Forms.Label();
     this.gxValueField4 = new Gurux.DLMS.UI.GXValueField();
     this.label4        = new System.Windows.Forms.Label();
     this.gxValueField5 = new Gurux.DLMS.UI.GXValueField();
     this.label5        = new System.Windows.Forms.Label();
     this.gxValueField6 = new Gurux.DLMS.UI.GXValueField();
     this.label6        = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.gxValueField6);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.gxValueField5);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.gxValueField4);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.gxValueField3);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.gxValueField2);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.gxValueField1);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.CRCIncorrectCountTb);
     this.groupBox1.Controls.Add(this.CRCIncorrectCountLbl);
     this.groupBox1.Controls.Add(this.DescriptionLbl);
     this.groupBox1.Controls.Add(this.DescriptionTB);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(320, 252);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "PRIME NB OFDM PLC MAC setup Object";
     //
     // DescriptionLbl
     //
     this.DescriptionLbl.AutoSize = true;
     this.DescriptionLbl.Location = new System.Drawing.Point(7, 22);
     this.DescriptionLbl.Name     = "DescriptionLbl";
     this.DescriptionLbl.Size     = new System.Drawing.Size(63, 13);
     this.DescriptionLbl.TabIndex = 5;
     this.DescriptionLbl.Text     = "Description:";
     //
     // DescriptionTB
     //
     this.DescriptionTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.DescriptionTB.Location = new System.Drawing.Point(139, 19);
     this.DescriptionTB.Name     = "DescriptionTB";
     this.DescriptionTB.ReadOnly = true;
     this.DescriptionTB.Size     = new System.Drawing.Size(160, 20);
     this.DescriptionTB.TabIndex = 1;
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index         = 1;
     this.LogicalNameTB.Location      = new System.Drawing.Point(139, 45);
     this.LogicalNameTB.Name          = "LogicalNameTB";
     this.LogicalNameTB.NotifyChanges = false;
     this.LogicalNameTB.Size          = new System.Drawing.Size(159, 20);
     this.LogicalNameTB.TabIndex      = 2;
     this.LogicalNameTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.LogicalNameTB.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.LogicalNameTB.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(7, 48);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // CRCIncorrectCountTb
     //
     this.CRCIncorrectCountTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.CRCIncorrectCountTb.Index         = 2;
     this.CRCIncorrectCountTb.Location      = new System.Drawing.Point(140, 71);
     this.CRCIncorrectCountTb.Name          = "CRCIncorrectCountTb";
     this.CRCIncorrectCountTb.NotifyChanges = false;
     this.CRCIncorrectCountTb.Size          = new System.Drawing.Size(159, 20);
     this.CRCIncorrectCountTb.TabIndex      = 8;
     this.CRCIncorrectCountTb.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.CRCIncorrectCountTb.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.CRCIncorrectCountTb.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // CRCIncorrectCountLbl
     //
     this.CRCIncorrectCountLbl.AutoSize = true;
     this.CRCIncorrectCountLbl.Location = new System.Drawing.Point(8, 74);
     this.CRCIncorrectCountLbl.Name     = "CRCIncorrectCountLbl";
     this.CRCIncorrectCountLbl.Size     = new System.Drawing.Size(125, 13);
     this.CRCIncorrectCountLbl.TabIndex = 7;
     this.CRCIncorrectCountLbl.Text     = "Min Switch Search Time:";
     //
     // gxValueField1
     //
     this.gxValueField1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.gxValueField1.Index         = 3;
     this.gxValueField1.Location      = new System.Drawing.Point(140, 97);
     this.gxValueField1.Name          = "gxValueField1";
     this.gxValueField1.NotifyChanges = false;
     this.gxValueField1.Size          = new System.Drawing.Size(159, 20);
     this.gxValueField1.TabIndex      = 10;
     this.gxValueField1.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.gxValueField1.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.gxValueField1.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(8, 100);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(106, 13);
     this.label1.TabIndex = 9;
     this.label1.Text     = "Max Promotion PDU:";
     //
     // gxValueField2
     //
     this.gxValueField2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.gxValueField2.Index         = 4;
     this.gxValueField2.Location      = new System.Drawing.Point(140, 123);
     this.gxValueField2.Name          = "gxValueField2";
     this.gxValueField2.NotifyChanges = false;
     this.gxValueField2.Size          = new System.Drawing.Size(159, 20);
     this.gxValueField2.TabIndex      = 12;
     this.gxValueField2.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.gxValueField2.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.gxValueField2.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(8, 126);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(133, 13);
     this.label2.TabIndex = 11;
     this.label2.Text     = "Promotion PDU TX Period:";
     //
     // gxValueField3
     //
     this.gxValueField3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.gxValueField3.Index         = 5;
     this.gxValueField3.Location      = new System.Drawing.Point(140, 149);
     this.gxValueField3.Name          = "gxValueField3";
     this.gxValueField3.NotifyChanges = false;
     this.gxValueField3.Size          = new System.Drawing.Size(159, 20);
     this.gxValueField3.TabIndex      = 14;
     this.gxValueField3.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.gxValueField3.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.gxValueField3.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(8, 152);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(103, 13);
     this.label3.TabIndex = 13;
     this.label3.Text     = "Beacons Per Frame:";
     //
     // gxValueField4
     //
     this.gxValueField4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.gxValueField4.Index         = 6;
     this.gxValueField4.Location      = new System.Drawing.Point(139, 175);
     this.gxValueField4.Name          = "gxValueField4";
     this.gxValueField4.NotifyChanges = false;
     this.gxValueField4.Size          = new System.Drawing.Size(159, 20);
     this.gxValueField4.TabIndex      = 16;
     this.gxValueField4.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.gxValueField4.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.gxValueField4.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(7, 178);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(112, 13);
     this.label4.TabIndex = 15;
     this.label4.Text     = "SCP Max TX Attemps:";
     //
     // gxValueField5
     //
     this.gxValueField5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.gxValueField5.Index         = 7;
     this.gxValueField5.Location      = new System.Drawing.Point(139, 201);
     this.gxValueField5.Name          = "gxValueField5";
     this.gxValueField5.NotifyChanges = false;
     this.gxValueField5.Size          = new System.Drawing.Size(159, 20);
     this.gxValueField5.TabIndex      = 18;
     this.gxValueField5.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.gxValueField5.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.gxValueField5.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(7, 204);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(93, 13);
     this.label5.TabIndex = 17;
     this.label5.Text     = "CLT Re TX Timer:";
     //
     // gxValueField6
     //
     this.gxValueField6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.gxValueField6.Index         = 8;
     this.gxValueField6.Location      = new System.Drawing.Point(140, 226);
     this.gxValueField6.Name          = "gxValueField6";
     this.gxValueField6.NotifyChanges = false;
     this.gxValueField6.Size          = new System.Drawing.Size(159, 20);
     this.gxValueField6.TabIndex      = 20;
     this.gxValueField6.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.gxValueField6.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.ValueTB_KeyPress);
     this.gxValueField6.KeyUp        += new System.Windows.Forms.KeyEventHandler(this.ValueTB_KeyUp);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(8, 229);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(77, 13);
     this.label6.TabIndex = 19;
     this.label6.Text     = "Max Ctl Re Tx:";
     //
     // GXDLMSPrimeNbOfdmPlcMacSetupView
     //
     this.ClientSize = new System.Drawing.Size(344, 276);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSPrimeNbOfdmPlcMacSetupView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #28
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSIecTwistedPairSetupView));
     this.groupBox1                 = new System.Windows.Forms.GroupBox();
     this.DescriptionLbl            = new System.Windows.Forms.Label();
     this.DescriptionTB             = new System.Windows.Forms.TextBox();
     this.ModeLbl                   = new System.Windows.Forms.Label();
     this.LogicalNameTB             = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl            = new System.Windows.Forms.Label();
     this.errorProvider1            = new System.Windows.Forms.ErrorProvider(this.components);
     this.ModeTb                    = new Gurux.DLMS.UI.GXValueField();
     this.SpeedTb                   = new Gurux.DLMS.UI.GXValueField();
     this.SpeedLbl                  = new System.Windows.Forms.Label();
     this.PrimaryAddressesList      = new System.Windows.Forms.ListView();
     this.NameHeader                = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.TabisList                 = new System.Windows.Forms.ListView();
     this.columnHeader1             = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.PrimaryAddressesRemoveBtn = new System.Windows.Forms.Button();
     this.PrimaryAddressesEditBtn   = new System.Windows.Forms.Button();
     this.PrimaryAddressesAddBtn    = new System.Windows.Forms.Button();
     this.PrimaryAddressesLbl       = new System.Windows.Forms.Label();
     this.label2                    = new System.Windows.Forms.Label();
     this.TabisRemoveBtn            = new System.Windows.Forms.Button();
     this.TabisEditBtn              = new System.Windows.Forms.Button();
     this.TabisAddBtn               = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.TabisRemoveBtn);
     this.groupBox1.Controls.Add(this.TabisEditBtn);
     this.groupBox1.Controls.Add(this.TabisAddBtn);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.PrimaryAddressesLbl);
     this.groupBox1.Controls.Add(this.PrimaryAddressesRemoveBtn);
     this.groupBox1.Controls.Add(this.PrimaryAddressesEditBtn);
     this.groupBox1.Controls.Add(this.PrimaryAddressesAddBtn);
     this.groupBox1.Controls.Add(this.TabisList);
     this.groupBox1.Controls.Add(this.PrimaryAddressesList);
     this.groupBox1.Controls.Add(this.SpeedTb);
     this.groupBox1.Controls.Add(this.SpeedLbl);
     this.groupBox1.Controls.Add(this.ModeTb);
     this.groupBox1.Controls.Add(this.DescriptionLbl);
     this.groupBox1.Controls.Add(this.DescriptionTB);
     this.groupBox1.Controls.Add(this.ModeLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(504, 413);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Data Object";
     //
     // DescriptionLbl
     //
     this.DescriptionLbl.AutoSize = true;
     this.DescriptionLbl.Location = new System.Drawing.Point(7, 22);
     this.DescriptionLbl.Name     = "DescriptionLbl";
     this.DescriptionLbl.Size     = new System.Drawing.Size(63, 13);
     this.DescriptionLbl.TabIndex = 5;
     this.DescriptionLbl.Text     = "Description:";
     //
     // DescriptionTB
     //
     this.DescriptionTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.DescriptionTB.Location = new System.Drawing.Point(103, 19);
     this.DescriptionTB.Name     = "DescriptionTB";
     this.DescriptionTB.ReadOnly = true;
     this.DescriptionTB.Size     = new System.Drawing.Size(380, 20);
     this.DescriptionTB.TabIndex = 1;
     //
     // ModeLbl
     //
     this.ModeLbl.AutoSize = true;
     this.ModeLbl.Location = new System.Drawing.Point(7, 74);
     this.ModeLbl.Name     = "ModeLbl";
     this.ModeLbl.Size     = new System.Drawing.Size(34, 13);
     this.ModeLbl.TabIndex = 2;
     this.ModeLbl.Text     = "Mode";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index         = 1;
     this.LogicalNameTB.Location      = new System.Drawing.Point(103, 45);
     this.LogicalNameTB.Name          = "LogicalNameTB";
     this.LogicalNameTB.NotifyChanges = false;
     this.LogicalNameTB.Size          = new System.Drawing.Size(379, 20);
     this.LogicalNameTB.TabIndex      = 2;
     this.LogicalNameTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(7, 48);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // ModeTb
     //
     this.ModeTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.ModeTb.Index         = 2;
     this.ModeTb.Location      = new System.Drawing.Point(103, 71);
     this.ModeTb.Name          = "ModeTb";
     this.ModeTb.NotifyChanges = false;
     this.ModeTb.Size          = new System.Drawing.Size(379, 20);
     this.ModeTb.TabIndex      = 6;
     this.ModeTb.Type          = Gurux.DLMS.Enums.ValueFieldType.CompoBox;
     //
     // SpeedTb
     //
     this.SpeedTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SpeedTb.Index         = 3;
     this.SpeedTb.Location      = new System.Drawing.Point(103, 97);
     this.SpeedTb.Name          = "SpeedTb";
     this.SpeedTb.NotifyChanges = false;
     this.SpeedTb.Size          = new System.Drawing.Size(379, 20);
     this.SpeedTb.TabIndex      = 8;
     this.SpeedTb.Type          = Gurux.DLMS.Enums.ValueFieldType.CompoBox;
     //
     // SpeedLbl
     //
     this.SpeedLbl.AutoSize = true;
     this.SpeedLbl.Location = new System.Drawing.Point(7, 100);
     this.SpeedLbl.Name     = "SpeedLbl";
     this.SpeedLbl.Size     = new System.Drawing.Size(41, 13);
     this.SpeedLbl.TabIndex = 7;
     this.SpeedLbl.Text     = "Speed:";
     //
     // PrimaryAddressesList
     //
     this.PrimaryAddressesList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.NameHeader
     });
     this.PrimaryAddressesList.FullRowSelect = true;
     this.PrimaryAddressesList.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.PrimaryAddressesList.HideSelection = false;
     this.PrimaryAddressesList.Location      = new System.Drawing.Point(103, 123);
     this.PrimaryAddressesList.Name          = "PrimaryAddressesList";
     this.PrimaryAddressesList.Size          = new System.Drawing.Size(283, 136);
     this.PrimaryAddressesList.TabIndex      = 19;
     this.PrimaryAddressesList.UseCompatibleStateImageBehavior = false;
     this.PrimaryAddressesList.View = System.Windows.Forms.View.Details;
     //
     // NameHeader
     //
     this.NameHeader.Text  = "Name";
     this.NameHeader.Width = 145;
     //
     // TabisList
     //
     this.TabisList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1
     });
     this.TabisList.FullRowSelect = true;
     this.TabisList.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.TabisList.HideSelection = false;
     this.TabisList.Location      = new System.Drawing.Point(103, 265);
     this.TabisList.Name          = "TabisList";
     this.TabisList.Size          = new System.Drawing.Size(283, 142);
     this.TabisList.TabIndex      = 20;
     this.TabisList.UseCompatibleStateImageBehavior = false;
     this.TabisList.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "Name";
     this.columnHeader1.Width = 145;
     //
     // PrimaryAddressesRemoveBtn
     //
     this.PrimaryAddressesRemoveBtn.Location = new System.Drawing.Point(408, 181);
     this.PrimaryAddressesRemoveBtn.Name     = "PrimaryAddressesRemoveBtn";
     this.PrimaryAddressesRemoveBtn.Size     = new System.Drawing.Size(75, 23);
     this.PrimaryAddressesRemoveBtn.TabIndex = 26;
     this.PrimaryAddressesRemoveBtn.Text     = "Remove";
     this.PrimaryAddressesRemoveBtn.UseVisualStyleBackColor = true;
     this.PrimaryAddressesRemoveBtn.Click += new System.EventHandler(this.PrimaryAddressesRemoveBtn_Click);
     //
     // PrimaryAddressesEditBtn
     //
     this.PrimaryAddressesEditBtn.Location = new System.Drawing.Point(408, 152);
     this.PrimaryAddressesEditBtn.Name     = "PrimaryAddressesEditBtn";
     this.PrimaryAddressesEditBtn.Size     = new System.Drawing.Size(75, 23);
     this.PrimaryAddressesEditBtn.TabIndex = 25;
     this.PrimaryAddressesEditBtn.Text     = "Edit...";
     this.PrimaryAddressesEditBtn.UseVisualStyleBackColor = true;
     this.PrimaryAddressesEditBtn.Click += new System.EventHandler(this.PrimaryAddressesEditBtn_Click);
     //
     // PrimaryAddressesAddBtn
     //
     this.PrimaryAddressesAddBtn.Location = new System.Drawing.Point(408, 123);
     this.PrimaryAddressesAddBtn.Name     = "PrimaryAddressesAddBtn";
     this.PrimaryAddressesAddBtn.Size     = new System.Drawing.Size(75, 23);
     this.PrimaryAddressesAddBtn.TabIndex = 24;
     this.PrimaryAddressesAddBtn.Text     = "Add...";
     this.PrimaryAddressesAddBtn.UseVisualStyleBackColor = true;
     this.PrimaryAddressesAddBtn.Click += new System.EventHandler(this.PrimaryAddressesAddBtn_Click);
     //
     // PrimaryAddressesLbl
     //
     this.PrimaryAddressesLbl.AutoSize = true;
     this.PrimaryAddressesLbl.Location = new System.Drawing.Point(7, 133);
     this.PrimaryAddressesLbl.Name     = "PrimaryAddressesLbl";
     this.PrimaryAddressesLbl.Size     = new System.Drawing.Size(95, 13);
     this.PrimaryAddressesLbl.TabIndex = 27;
     this.PrimaryAddressesLbl.Text     = "Primary addresses:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(7, 265);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(36, 13);
     this.label2.TabIndex = 28;
     this.label2.Text     = "TAB(i)";
     //
     // TabisRemoveBtn
     //
     this.TabisRemoveBtn.Location = new System.Drawing.Point(407, 323);
     this.TabisRemoveBtn.Name     = "TabisRemoveBtn";
     this.TabisRemoveBtn.Size     = new System.Drawing.Size(75, 23);
     this.TabisRemoveBtn.TabIndex = 31;
     this.TabisRemoveBtn.Text     = "Remove";
     this.TabisRemoveBtn.UseVisualStyleBackColor = true;
     this.TabisRemoveBtn.Click += new System.EventHandler(this.TabisRemoveBtn_Click);
     //
     // TabisEditBtn
     //
     this.TabisEditBtn.Location = new System.Drawing.Point(407, 294);
     this.TabisEditBtn.Name     = "TabisEditBtn";
     this.TabisEditBtn.Size     = new System.Drawing.Size(75, 23);
     this.TabisEditBtn.TabIndex = 30;
     this.TabisEditBtn.Text     = "Edit...";
     this.TabisEditBtn.UseVisualStyleBackColor = true;
     this.TabisEditBtn.Click += new System.EventHandler(this.TabisEditBtn_Click);
     //
     // TabisAddBtn
     //
     this.TabisAddBtn.Location = new System.Drawing.Point(407, 265);
     this.TabisAddBtn.Name     = "TabisAddBtn";
     this.TabisAddBtn.Size     = new System.Drawing.Size(75, 23);
     this.TabisAddBtn.TabIndex = 29;
     this.TabisAddBtn.Text     = "Add...";
     this.TabisAddBtn.UseVisualStyleBackColor = true;
     this.TabisAddBtn.Click += new System.EventHandler(this.TabisAddBtn_Click);
     //
     // GXDLMSIecTwistedPairSetupView
     //
     this.ClientSize = new System.Drawing.Size(528, 437);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSIecTwistedPairSetupView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #29
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSPrimeNbOfdmPlcMacNetworkAdministrationDataView));
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.Tabs                  = new System.Windows.Forms.TabControl();
     this.tabPage1              = new System.Windows.Forms.TabPage();
     this.MulticastView         = new System.Windows.Forms.ListView();
     this.columnHeader1         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader6         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.tabPage2              = new System.Windows.Forms.TabPage();
     this.SwitchTableView       = new System.Windows.Forms.ListView();
     this.columnHeader2         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.tabPage3              = new System.Windows.Forms.TabPage();
     this.DirectTableView       = new System.Windows.Forms.ListView();
     this.columnHeader3         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader7         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader8         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader9         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader10        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader11        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader12        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.tabPage4              = new System.Windows.Forms.TabPage();
     this.AvailableSwitchesView = new System.Windows.Forms.ListView();
     this.columnHeader4         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader13        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader14        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader15        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader16        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.tabPage5              = new System.Windows.Forms.TabPage();
     this.PhyCommmunicationView = new System.Windows.Forms.ListView();
     this.columnHeader5         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader17        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader18        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader19        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader20        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader21        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader22        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader23        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader24        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.DescriptionLbl        = new System.Windows.Forms.Label();
     this.DescriptionTB         = new System.Windows.Forms.TextBox();
     this.LogicalNameTB         = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl        = new System.Windows.Forms.Label();
     this.errorProvider1        = new System.Windows.Forms.ErrorProvider(this.components);
     this.ResetBtn              = new Gurux.DLMS.UI.GXButton();
     this.groupBox1.SuspendLayout();
     this.Tabs.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.tabPage4.SuspendLayout();
     this.tabPage5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.ResetBtn);
     this.groupBox1.Controls.Add(this.Tabs);
     this.groupBox1.Controls.Add(this.DescriptionLbl);
     this.groupBox1.Controls.Add(this.DescriptionTB);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(653, 352);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "PRIME NB OFDM PLC MAC network administration data Object";
     //
     // Tabs
     //
     this.Tabs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.Tabs.Controls.Add(this.tabPage1);
     this.Tabs.Controls.Add(this.tabPage2);
     this.Tabs.Controls.Add(this.tabPage3);
     this.Tabs.Controls.Add(this.tabPage4);
     this.Tabs.Controls.Add(this.tabPage5);
     this.Tabs.Location      = new System.Drawing.Point(10, 71);
     this.Tabs.Name          = "Tabs";
     this.Tabs.SelectedIndex = 0;
     this.Tabs.Size          = new System.Drawing.Size(622, 265);
     this.Tabs.TabIndex      = 25;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.MulticastView);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(614, 239);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Multicast:";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // MulticastView
     //
     this.MulticastView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader6
     });
     this.MulticastView.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.MulticastView.FullRowSelect = true;
     this.MulticastView.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.MulticastView.HideSelection = false;
     this.MulticastView.Location      = new System.Drawing.Point(3, 3);
     this.MulticastView.Name          = "MulticastView";
     this.MulticastView.Size          = new System.Drawing.Size(608, 233);
     this.MulticastView.TabIndex      = 30;
     this.MulticastView.UseCompatibleStateImageBehavior = false;
     this.MulticastView.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "ID";
     this.columnHeader1.Width = 62;
     //
     // columnHeader6
     //
     this.columnHeader6.Text  = "Members";
     this.columnHeader6.Width = 404;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.SwitchTableView);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(614, 239);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Switch Table";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // SwitchTableView
     //
     this.SwitchTableView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader2
     });
     this.SwitchTableView.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.SwitchTableView.FullRowSelect = true;
     this.SwitchTableView.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.SwitchTableView.HideSelection = false;
     this.SwitchTableView.Location      = new System.Drawing.Point(3, 3);
     this.SwitchTableView.Name          = "SwitchTableView";
     this.SwitchTableView.Size          = new System.Drawing.Size(608, 233);
     this.SwitchTableView.TabIndex      = 20;
     this.SwitchTableView.UseCompatibleStateImageBehavior = false;
     this.SwitchTableView.View = System.Windows.Forms.View.Details;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "SID:";
     this.columnHeader2.Width = 285;
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.DirectTableView);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size     = new System.Drawing.Size(614, 239);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Direct Table:";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // DirectTableView
     //
     this.DirectTableView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader3,
         this.columnHeader7,
         this.columnHeader8,
         this.columnHeader9,
         this.columnHeader10,
         this.columnHeader11,
         this.columnHeader12
     });
     this.DirectTableView.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.DirectTableView.FullRowSelect = true;
     this.DirectTableView.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.DirectTableView.HideSelection = false;
     this.DirectTableView.Location      = new System.Drawing.Point(3, 3);
     this.DirectTableView.Name          = "DirectTableView";
     this.DirectTableView.Size          = new System.Drawing.Size(608, 233);
     this.DirectTableView.TabIndex      = 20;
     this.DirectTableView.UseCompatibleStateImageBehavior = false;
     this.DirectTableView.View = System.Windows.Forms.View.Details;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "Src SID";
     this.columnHeader3.Width = 55;
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "Src LNID";
     //
     // columnHeader8
     //
     this.columnHeader8.Text = "Src LCID";
     //
     // columnHeader9
     //
     this.columnHeader9.Text = "Dst SID";
     //
     // columnHeader10
     //
     this.columnHeader10.Text = "Dst LNID";
     //
     // columnHeader11
     //
     this.columnHeader11.Text = "Dst LCID";
     //
     // columnHeader12
     //
     this.columnHeader12.Text  = "DID";
     this.columnHeader12.Width = 111;
     //
     // tabPage4
     //
     this.tabPage4.Controls.Add(this.AvailableSwitchesView);
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name     = "tabPage4";
     this.tabPage4.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size     = new System.Drawing.Size(614, 239);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text     = "Available Switches:";
     this.tabPage4.UseVisualStyleBackColor = true;
     //
     // AvailableSwitchesView
     //
     this.AvailableSwitchesView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader4,
         this.columnHeader13,
         this.columnHeader14,
         this.columnHeader15,
         this.columnHeader16
     });
     this.AvailableSwitchesView.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.AvailableSwitchesView.FullRowSelect = true;
     this.AvailableSwitchesView.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.AvailableSwitchesView.HideSelection = false;
     this.AvailableSwitchesView.Location      = new System.Drawing.Point(3, 3);
     this.AvailableSwitchesView.Name          = "AvailableSwitchesView";
     this.AvailableSwitchesView.Size          = new System.Drawing.Size(608, 233);
     this.AvailableSwitchesView.TabIndex      = 21;
     this.AvailableSwitchesView.UseCompatibleStateImageBehavior = false;
     this.AvailableSwitchesView.View = System.Windows.Forms.View.Details;
     //
     // columnHeader4
     //
     this.columnHeader4.Text  = "SNA";
     this.columnHeader4.Width = 122;
     //
     // columnHeader13
     //
     this.columnHeader13.Text = "LSID";
     //
     // columnHeader14
     //
     this.columnHeader14.Text = "Level";
     //
     // columnHeader15
     //
     this.columnHeader15.Text = "RX Level";
     //
     // columnHeader16
     //
     this.columnHeader16.Text = "RX SNR";
     //
     // tabPage5
     //
     this.tabPage5.Controls.Add(this.PhyCommmunicationView);
     this.tabPage5.Location = new System.Drawing.Point(4, 22);
     this.tabPage5.Name     = "tabPage5";
     this.tabPage5.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage5.Size     = new System.Drawing.Size(614, 239);
     this.tabPage5.TabIndex = 4;
     this.tabPage5.Text     = "Phy Communication:";
     this.tabPage5.UseVisualStyleBackColor = true;
     //
     // PhyCommmunicationView
     //
     this.PhyCommmunicationView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader5,
         this.columnHeader17,
         this.columnHeader18,
         this.columnHeader19,
         this.columnHeader20,
         this.columnHeader21,
         this.columnHeader22,
         this.columnHeader23,
         this.columnHeader24
     });
     this.PhyCommmunicationView.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.PhyCommmunicationView.FullRowSelect = true;
     this.PhyCommmunicationView.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.PhyCommmunicationView.HideSelection = false;
     this.PhyCommmunicationView.Location      = new System.Drawing.Point(3, 3);
     this.PhyCommmunicationView.Name          = "PhyCommmunicationView";
     this.PhyCommmunicationView.Size          = new System.Drawing.Size(608, 233);
     this.PhyCommmunicationView.TabIndex      = 21;
     this.PhyCommmunicationView.UseCompatibleStateImageBehavior = false;
     this.PhyCommmunicationView.View = System.Windows.Forms.View.Details;
     //
     // columnHeader5
     //
     this.columnHeader5.Text  = "EUI";
     this.columnHeader5.Width = 71;
     //
     // columnHeader17
     //
     this.columnHeader17.Text = "TX Pwr";
     //
     // columnHeader18
     //
     this.columnHeader18.Text = "TX Code";
     //
     // columnHeader19
     //
     this.columnHeader19.Text = "RX Code";
     //
     // columnHeader20
     //
     this.columnHeader20.Text  = "RX Lvl";
     this.columnHeader20.Width = 59;
     //
     // columnHeader21
     //
     this.columnHeader21.Text  = "SNR";
     this.columnHeader21.Width = 48;
     //
     // columnHeader22
     //
     this.columnHeader22.Text  = "TX Pwr Mod";
     this.columnHeader22.Width = 77;
     //
     // columnHeader23
     //
     this.columnHeader23.Text  = "TX Code Mod";
     this.columnHeader23.Width = 78;
     //
     // columnHeader24
     //
     this.columnHeader24.Text  = "RX Code Mod";
     this.columnHeader24.Width = 83;
     //
     // DescriptionLbl
     //
     this.DescriptionLbl.AutoSize = true;
     this.DescriptionLbl.Location = new System.Drawing.Point(7, 22);
     this.DescriptionLbl.Name     = "DescriptionLbl";
     this.DescriptionLbl.Size     = new System.Drawing.Size(63, 13);
     this.DescriptionLbl.TabIndex = 5;
     this.DescriptionLbl.Text     = "Description:";
     //
     // DescriptionTB
     //
     this.DescriptionTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.DescriptionTB.Location = new System.Drawing.Point(103, 19);
     this.DescriptionTB.Name     = "DescriptionTB";
     this.DescriptionTB.ReadOnly = true;
     this.DescriptionTB.Size     = new System.Drawing.Size(529, 20);
     this.DescriptionTB.TabIndex = 1;
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index         = 1;
     this.LogicalNameTB.Location      = new System.Drawing.Point(103, 45);
     this.LogicalNameTB.Name          = "LogicalNameTB";
     this.LogicalNameTB.NotifyChanges = false;
     this.LogicalNameTB.Size          = new System.Drawing.Size(213, 20);
     this.LogicalNameTB.TabIndex      = 2;
     this.LogicalNameTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(7, 48);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // ResetBtn
     //
     this.ResetBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ResetBtn.Index    = 1;
     this.ResetBtn.Location = new System.Drawing.Point(557, 43);
     this.ResetBtn.Name     = "ResetBtn";
     this.ResetBtn.Size     = new System.Drawing.Size(75, 23);
     this.ResetBtn.TabIndex = 26;
     this.ResetBtn.Text     = "Reset";
     this.ResetBtn.UseVisualStyleBackColor = true;
     //
     // GXDLMSPrimeNbOfdmPlcMacNetworkAdministrationDataView
     //
     this.ClientSize = new System.Drawing.Size(677, 376);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSPrimeNbOfdmPlcMacNetworkAdministrationDataView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.Tabs.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.tabPage4.ResumeLayout(false);
     this.tabPage5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #30
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSPppSetupView));
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.PasswordTB      = new System.Windows.Forms.TextBox();
     this.UserNameTB      = new System.Windows.Forms.TextBox();
     this.PasswordLbl     = new System.Windows.Forms.Label();
     this.UserNameLbl     = new System.Windows.Forms.Label();
     this.IPCPOptionsTB   = new Gurux.DLMS.UI.GXValueField();
     this.IPCPOptionsLbl  = new System.Windows.Forms.Label();
     this.LCPOptionsTB    = new Gurux.DLMS.UI.GXValueField();
     this.LCPOptionsLbl   = new System.Windows.Forms.Label();
     this.PHYReferenceTB  = new Gurux.DLMS.UI.GXValueField();
     this.PHYReferenceLbl = new System.Windows.Forms.Label();
     this.LogicalNameTB   = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl  = new System.Windows.Forms.Label();
     this.errorProvider1  = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.PasswordTB);
     this.groupBox1.Controls.Add(this.UserNameTB);
     this.groupBox1.Controls.Add(this.PasswordLbl);
     this.groupBox1.Controls.Add(this.UserNameLbl);
     this.groupBox1.Controls.Add(this.IPCPOptionsTB);
     this.groupBox1.Controls.Add(this.IPCPOptionsLbl);
     this.groupBox1.Controls.Add(this.LCPOptionsTB);
     this.groupBox1.Controls.Add(this.LCPOptionsLbl);
     this.groupBox1.Controls.Add(this.PHYReferenceTB);
     this.groupBox1.Controls.Add(this.PHYReferenceLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(296, 189);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "PPP Setup Object";
     this.groupBox1.UseCompatibleTextRendering = true;
     //
     // PasswordTB
     //
     this.PasswordTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.PasswordTB.Location     = new System.Drawing.Point(116, 152);
     this.PasswordTB.Name         = "PasswordTB";
     this.PasswordTB.Size         = new System.Drawing.Size(170, 20);
     this.PasswordTB.TabIndex     = 13;
     this.PasswordTB.TextChanged += new System.EventHandler(this.PasswordTB_TextChanged);
     //
     // UserNameTB
     //
     this.UserNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.UserNameTB.Location     = new System.Drawing.Point(115, 126);
     this.UserNameTB.Name         = "UserNameTB";
     this.UserNameTB.Size         = new System.Drawing.Size(170, 20);
     this.UserNameTB.TabIndex     = 12;
     this.UserNameTB.TextChanged += new System.EventHandler(this.UserNameTB_TextChanged);
     this.UserNameTB.Leave       += new System.EventHandler(this.UserNameTB_Leave);
     //
     // PasswordLbl
     //
     this.PasswordLbl.AutoSize = true;
     this.PasswordLbl.Location = new System.Drawing.Point(6, 154);
     this.PasswordLbl.Name     = "PasswordLbl";
     this.PasswordLbl.Size     = new System.Drawing.Size(56, 13);
     this.PasswordLbl.TabIndex = 10;
     this.PasswordLbl.Text     = "Password:"******"UserNameLbl";
     this.UserNameLbl.Size     = new System.Drawing.Size(63, 13);
     this.UserNameLbl.TabIndex = 8;
     this.UserNameLbl.Text     = "User Name:";
     //
     // IPCPOptionsTB
     //
     this.IPCPOptionsTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.IPCPOptionsTB.Index         = 4;
     this.IPCPOptionsTB.Location      = new System.Drawing.Point(114, 99);
     this.IPCPOptionsTB.Name          = "IPCPOptionsTB";
     this.IPCPOptionsTB.NotifyChanges = false;
     this.IPCPOptionsTB.Size          = new System.Drawing.Size(171, 20);
     this.IPCPOptionsTB.TabIndex      = 7;
     this.IPCPOptionsTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // IPCPOptionsLbl
     //
     this.IPCPOptionsLbl.AutoSize = true;
     this.IPCPOptionsLbl.Location = new System.Drawing.Point(6, 102);
     this.IPCPOptionsLbl.Name     = "IPCPOptionsLbl";
     this.IPCPOptionsLbl.Size     = new System.Drawing.Size(73, 13);
     this.IPCPOptionsLbl.TabIndex = 6;
     this.IPCPOptionsLbl.Text     = "IPCP Options:";
     //
     // LCPOptionsTB
     //
     this.LCPOptionsTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.LCPOptionsTB.Index         = 3;
     this.LCPOptionsTB.Location      = new System.Drawing.Point(114, 73);
     this.LCPOptionsTB.Name          = "LCPOptionsTB";
     this.LCPOptionsTB.NotifyChanges = false;
     this.LCPOptionsTB.Size          = new System.Drawing.Size(171, 20);
     this.LCPOptionsTB.TabIndex      = 5;
     this.LCPOptionsTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LCPOptionsLbl
     //
     this.LCPOptionsLbl.AutoSize = true;
     this.LCPOptionsLbl.Location = new System.Drawing.Point(6, 76);
     this.LCPOptionsLbl.Name     = "LCPOptionsLbl";
     this.LCPOptionsLbl.Size     = new System.Drawing.Size(69, 13);
     this.LCPOptionsLbl.TabIndex = 4;
     this.LCPOptionsLbl.Text     = "LCP Options:";
     //
     // PHYReferenceTB
     //
     this.PHYReferenceTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.PHYReferenceTB.Index         = 2;
     this.PHYReferenceTB.Location      = new System.Drawing.Point(114, 47);
     this.PHYReferenceTB.Name          = "PHYReferenceTB";
     this.PHYReferenceTB.NotifyChanges = false;
     this.PHYReferenceTB.Size          = new System.Drawing.Size(171, 20);
     this.PHYReferenceTB.TabIndex      = 3;
     this.PHYReferenceTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     this.PHYReferenceTB.Load         += new System.EventHandler(this.DataLinkLayerTB_Load);
     //
     // PHYReferenceLbl
     //
     this.PHYReferenceLbl.AutoSize = true;
     this.PHYReferenceLbl.Location = new System.Drawing.Point(6, 50);
     this.PHYReferenceLbl.Name     = "PHYReferenceLbl";
     this.PHYReferenceLbl.Size     = new System.Drawing.Size(85, 13);
     this.PHYReferenceLbl.TabIndex = 2;
     this.PHYReferenceLbl.Text     = "PHY Reference:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index         = 1;
     this.LogicalNameTB.Location      = new System.Drawing.Point(114, 21);
     this.LogicalNameTB.Name          = "LogicalNameTB";
     this.LogicalNameTB.NotifyChanges = false;
     this.LogicalNameTB.Size          = new System.Drawing.Size(171, 20);
     this.LogicalNameTB.TabIndex      = 1;
     this.LogicalNameTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSPppSetupView
     //
     this.ClientSize = new System.Drawing.Size(320, 211);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSPppSetupView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }