Ejemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            StringBuilder stb = new StringBuilder(textBox1.Text).Append(Constant.SPLIT1);

            stb.Append(dateTimePicker1.Value.ToString("yyyy-MM-dd HH:mm")).Append(Constant.SPLIT1);
            stb.Append(dateTimePicker2.Value.ToString("yyyy-MM-dd HH:mm")).Append(Constant.SPLIT1);
            stb.Append(textBox2.Text).Append(Constant.SPLIT1).Append(textBox3.Text);
            FormMain.C_Query_Order(stb.ToString());
        }