Exemplo n.º 1
0
        private void FrmFieldsToExtract_Load(object sender, EventArgs e)
        {
            Loading ld = new Loading();

            ld.Show();
            string fields = servRef.GetFieldNames(Globals.sqlCon, clientid, secret);

            if (fields.Length == 0)
            {
                MessageBox.Show("No Fields to show..", "Quill", MessageBoxButtons.OK, MessageBoxIcon.Information);
                ld.Close();

                this.Close();
                return;
            }
            string[] fieldArr = fields.Split(',');
            if (fields.Length == 1)
            {
                if (fieldArr[0].ToString().Trim().Equals("0"))
                {
                    MessageBox.Show("No Fields to show..", "Quill", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    ld.Close();

                    this.Close();
                    return;
                }
            }


            foreach (string field in fieldArr)
            {
                FieldsToExtract.Items.Add(field);
            }

            if (!string.IsNullOrEmpty(GetConfiguration.GetConfigurationValueFields()))
            {
                string[] split = GetConfiguration.GetConfigurationValueFields().Split(',');
                foreach (string field in split)
                {
                    for (int i = 0; i < FieldsToExtract.Items.Count; i++)
                    {
                        string strItem = FieldsToExtract.Items[i].ToString();
                        if (strItem.Equals(field))
                        {
                            FieldsToExtract.SetItemChecked(i, true);
                        }
                    }
                }
            }
            ld.Close();
        }
Exemplo n.º 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            string checkedFields = string.Empty;

            for (int i = 0; i <= (FieldsToExtract.Items.Count - 1); i++)
            {
                if (FieldsToExtract.GetItemChecked(i))
                {
                    checkedFields = checkedFields + FieldsToExtract.Items[i].ToString() + ",";
                }
            }
            checkedFields = checkedFields.TrimStart(',').TrimEnd(',');
            GetConfiguration.ConfigurationValueFields(checkedFields);
            this.Close();
        }
Exemplo n.º 3
0
 private void checkBox1_CheckedChanged(object sender, EventArgs e)
 {
     if (checkBox1.Checked == true)
     {
         for (int i = 0; i < FieldsToExtract.Items.Count; i++)
         {
             FieldsToExtract.SetItemChecked(i, true);
         }
     }
     else
     {
         for (int i = 0; i < FieldsToExtract.Items.Count; i++)
         {
             FieldsToExtract.SetItemChecked(i, false);
         }
     }
 }