private void showSettingView()
        {
            string strOnLinePCBFOVIniFilePath = Path.Combine(strConfigIniPath, "FOVPCB.ini");
            string strLineInfo1  = this.tbxLineName1.Text + RS_AT + this.tbxLineIP1.Text + RS_AT + this.chkLineDis1.Checked.ToString().ToUpper();
            string strLineInfo2  = this.tbxLineName2.Text + RS_AT + this.tbxLineIP2.Text + RS_AT + this.chkLineDis2.Checked.ToString().ToUpper();
            string strLineInfo3  = this.tbxLineName3.Text + RS_AT + this.tbxLineIP3.Text + RS_AT + this.chkLineDis3.Checked.ToString().ToUpper();
            string strLineInfo4  = this.tbxLineName4.Text + RS_AT + this.tbxLineIP4.Text + RS_AT + this.chkLineDis4.Checked.ToString().ToUpper();
            string strLineInfo5  = this.tbxLineName5.Text + RS_AT + this.tbxLineIP5.Text + RS_AT + this.chkLineDis5.Checked.ToString().ToUpper();
            string strLineInfo6  = this.tbxLineName6.Text + RS_AT + this.tbxLineIP6.Text + RS_AT + this.chkLineDis6.Checked.ToString().ToUpper();
            string strLineInfo7  = this.tbxLineName7.Text + RS_AT + this.tbxLineIP7.Text + RS_AT + this.chkLineDis7.Checked.ToString().ToUpper();
            string strLineInfo8  = this.tbxLineName8.Text + RS_AT + this.tbxLineIP8.Text + RS_AT + this.chkLineDis8.Checked.ToString().ToUpper();
            string strLineInfo9  = this.tbxLineName9.Text + RS_AT + this.tbxLineIP9.Text + RS_AT + this.chkLineDis9.Checked.ToString().ToUpper();
            string strLineInfo10 = this.tbxLineName10.Text + RS_AT + this.tbxLineIP10.Text + RS_AT + this.chkLineDis10.Checked.ToString().ToUpper();
            string strLineInfo11 = this.tbxLineName11.Text + RS_AT + this.tbxLineIP11.Text + RS_AT + this.chkLineDis11.Checked.ToString().ToUpper();
            string strLineInfo12 = this.tbxLineName12.Text + RS_AT + this.tbxLineIP12.Text + RS_AT + this.chkLineDis12.Checked.ToString().ToUpper();
            string strLineInfo13 = this.tbxLineName13.Text + RS_AT + this.tbxLineIP13.Text + RS_AT + this.chkLineDis13.Checked.ToString().ToUpper();
            string strLineInfo14 = this.tbxLineName14.Text + RS_AT + this.tbxLineIP14.Text + RS_AT + this.chkLineDis14.Checked.ToString().ToUpper();
            string strLineInfo15 = this.tbxLineName15.Text + RS_AT + this.tbxLineIP15.Text + RS_AT + this.chkLineDis15.Checked.ToString().ToUpper();
            string strLineInfo16 = this.tbxLineName16.Text + RS_AT + this.tbxLineIP16.Text + RS_AT + this.chkLineDis16.Checked.ToString().ToUpper();

            if (File.Exists(strOnLinePCBFOVIniFilePath))
            {
                strLineInfo1  = INIFileHelper.ReadIniData(iniSec, iniKeyLine1, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo2  = INIFileHelper.ReadIniData(iniSec, iniKeyLine2, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo3  = INIFileHelper.ReadIniData(iniSec, iniKeyLine3, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo4  = INIFileHelper.ReadIniData(iniSec, iniKeyLine4, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo5  = INIFileHelper.ReadIniData(iniSec, iniKeyLine5, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo6  = INIFileHelper.ReadIniData(iniSec, iniKeyLine6, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo7  = INIFileHelper.ReadIniData(iniSec, iniKeyLine7, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo8  = INIFileHelper.ReadIniData(iniSec, iniKeyLine8, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo9  = INIFileHelper.ReadIniData(iniSec, iniKeyLine9, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo10 = INIFileHelper.ReadIniData(iniSec, iniKeyLine10, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo11 = INIFileHelper.ReadIniData(iniSec, iniKeyLine11, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo12 = INIFileHelper.ReadIniData(iniSec, iniKeyLine12, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo13 = INIFileHelper.ReadIniData(iniSec, iniKeyLine13, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo14 = INIFileHelper.ReadIniData(iniSec, iniKeyLine14, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo15 = INIFileHelper.ReadIniData(iniSec, iniKeyLine15, string.Empty, strOnLinePCBFOVIniFilePath);
                strLineInfo16 = INIFileHelper.ReadIniData(iniSec, iniKeyLine16, string.Empty, strOnLinePCBFOVIniFilePath);

                this.tbxLineName1.Text   = strLineInfo1.Split('@')[0];
                this.tbxLineIP1.Text     = strLineInfo1.Split('@')[1];
                this.chkLineDis1.Checked = bool.Parse(strLineInfo1.Split('@')[2]);

                this.tbxLineName2.Text   = strLineInfo2.Split('@')[0];
                this.tbxLineIP2.Text     = strLineInfo2.Split('@')[1];
                this.chkLineDis2.Checked = bool.Parse(strLineInfo2.Split('@')[2]);

                this.tbxLineName3.Text   = strLineInfo3.Split('@')[0];
                this.tbxLineIP3.Text     = strLineInfo3.Split('@')[1];
                this.chkLineDis3.Checked = bool.Parse(strLineInfo3.Split('@')[2]);

                this.tbxLineName4.Text   = strLineInfo4.Split('@')[0];
                this.tbxLineIP4.Text     = strLineInfo4.Split('@')[1];
                this.chkLineDis4.Checked = bool.Parse(strLineInfo4.Split('@')[2]);

                this.tbxLineName5.Text   = strLineInfo5.Split('@')[0];
                this.tbxLineIP5.Text     = strLineInfo5.Split('@')[1];
                this.chkLineDis5.Checked = bool.Parse(strLineInfo5.Split('@')[2]);

                this.tbxLineName6.Text   = strLineInfo6.Split('@')[0];
                this.tbxLineIP6.Text     = strLineInfo6.Split('@')[1];
                this.chkLineDis6.Checked = bool.Parse(strLineInfo6.Split('@')[2]);

                this.tbxLineName7.Text   = strLineInfo7.Split('@')[0];
                this.tbxLineIP7.Text     = strLineInfo7.Split('@')[1];
                this.chkLineDis7.Checked = bool.Parse(strLineInfo7.Split('@')[2]);

                this.tbxLineName8.Text   = strLineInfo8.Split('@')[0];
                this.tbxLineIP8.Text     = strLineInfo8.Split('@')[1];
                this.chkLineDis8.Checked = bool.Parse(strLineInfo8.Split('@')[2]);

                this.tbxLineName9.Text   = strLineInfo9.Split('@')[0];
                this.tbxLineIP9.Text     = strLineInfo9.Split('@')[1];
                this.chkLineDis9.Checked = bool.Parse(strLineInfo9.Split('@')[2]);

                this.tbxLineName10.Text   = strLineInfo10.Split('@')[0];
                this.tbxLineIP10.Text     = strLineInfo10.Split('@')[1];
                this.chkLineDis10.Checked = bool.Parse(strLineInfo10.Split('@')[2]);

                this.tbxLineName11.Text   = strLineInfo11.Split('@')[0];
                this.tbxLineIP11.Text     = strLineInfo11.Split('@')[1];
                this.chkLineDis11.Checked = bool.Parse(strLineInfo11.Split('@')[2]);

                this.tbxLineName12.Text   = strLineInfo12.Split('@')[0];
                this.tbxLineIP12.Text     = strLineInfo12.Split('@')[1];
                this.chkLineDis12.Checked = bool.Parse(strLineInfo12.Split('@')[2]);

                this.tbxLineName13.Text   = strLineInfo13.Split('@')[0];
                this.tbxLineIP13.Text     = strLineInfo13.Split('@')[1];
                this.chkLineDis13.Checked = bool.Parse(strLineInfo13.Split('@')[2]);

                this.tbxLineName14.Text   = strLineInfo14.Split('@')[0];
                this.tbxLineIP14.Text     = strLineInfo14.Split('@')[1];
                this.chkLineDis14.Checked = bool.Parse(strLineInfo14.Split('@')[2]);

                this.tbxLineName15.Text   = strLineInfo15.Split('@')[0];
                this.tbxLineIP15.Text     = strLineInfo15.Split('@')[1];
                this.chkLineDis15.Checked = bool.Parse(strLineInfo15.Split('@')[2]);

                this.tbxLineName16.Text   = strLineInfo16.Split('@')[0];
                this.tbxLineIP16.Text     = strLineInfo16.Split('@')[1];
                this.chkLineDis16.Checked = bool.Parse(strLineInfo16.Split('@')[2]);
            }
        }