Пример #1
0
 protected void LoadStyle(DATA_SYNC eSync)
 {
     if (eSync == DATA_SYNC.DATA_CLIENT)
     {
         foreach (DataGridViewColumn col in dataGridClient.Columns)
         {
             String strConfig = CIniManager.G_IniReadValue(STYLE_SECTION, "CLIENT_COL" + Convert.ToString(col.Index), CONFIG_FILE);
             if (strConfig.CompareTo("") == 0)
             {
                 col.Width = 100;
             }
             else
             {
                 col.Width = Convert.ToInt32(strConfig);
             }
         }
     }
     else if (eSync == DATA_SYNC.DATA_SERVER)
     {
         foreach (DataGridViewColumn col in dataGridServer.Columns)
         {
             String strConfig = CIniManager.G_IniReadValue(STYLE_SECTION, "SERVER_COL" + Convert.ToString(col.Index), CONFIG_FILE);
             if (strConfig.CompareTo("") == 0)
             {
                 col.Width = 100;
             }
             else
             {
                 col.Width = Convert.ToInt32(strConfig);
             }
         }
     }
 }
Пример #2
0
        protected void InitConfigTab(String strConfig)
        {
            String strConfClientDef   = CIniManager.G_IniReadValue(CLIENT_SECTION, CLIENT_DEFINE_DATA, strConfig);
            String strConfClientAlarm = CIniManager.G_IniReadValue(CLIENT_SECTION, CLIENT_ALARM_DATA, strConfig);
            String strConfClientKor   = CIniManager.G_IniReadValue(CLIENT_SECTION, CLIENT_KOR_DATA, strConfig);
            String strConfClientJpn   = CIniManager.G_IniReadValue(CLIENT_SECTION, CLIENT_JPN_DATA, strConfig);
            String strConfClientUser  = CIniManager.G_IniReadValue(CLIENT_SECTION, CLIENT_USER_DATA, strConfig);
            String strConfServerDef   = CIniManager.G_IniReadValue(SERVER_SECTION, SERVER_DEFINE_DATA, strConfig);
            String strConfServerAlarm = CIniManager.G_IniReadValue(SERVER_SECTION, SERVER_ALARM_DATA, strConfig);
            String strConfServerKor   = CIniManager.G_IniReadValue(SERVER_SECTION, SERVER_KOR_DATA, strConfig);
            String strConfServerJpn   = CIniManager.G_IniReadValue(SERVER_SECTION, SERVER_JPN_DATA, strConfig);
            String strConfServerUser  = CIniManager.G_IniReadValue(SERVER_SECTION, SERVER_USER_DATA, strConfig);


            this.textClientDefPath.Clear();
            this.textClientDefPath.AppendText(strConfClientDef);

            this.textClientAlarmPath.Clear();
            this.textClientAlarmPath.AppendText(strConfClientAlarm);

            this.textClientKorPath.Clear();
            this.textClientKorPath.AppendText(strConfClientKor);

            this.textClientJpnPath.Clear();
            this.textClientJpnPath.AppendText(strConfClientJpn);

            this.textClientUserPath.Clear();
            this.textClientUserPath.AppendText(strConfClientUser);

            this.textServerDefPath.Clear();
            this.textServerDefPath.AppendText(strConfServerDef);

            this.textServerAlarmPath.Clear();
            this.textServerAlarmPath.AppendText(strConfServerAlarm);

            this.textServerKorPath.Clear();
            this.textServerKorPath.AppendText(strConfServerKor);

            this.textServerJpnPath.Clear();
            this.textServerJpnPath.AppendText(strConfServerJpn);

            this.textServerUserPath.Clear();
            this.textServerUserPath.AppendText(strConfServerUser);
        }