Курсовая работа: Магазин побутової техніки
}
private void FormMain_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'складDataSet.Склад' table. You can move, or remove it, as needed.
this.складTableAdapter.Fill(this.складDataSet.Склад);
}
private void toolStripTextBox1_Enter(object sender, EventArgs e)
{
if (toolStripTextBox1.Text == "Поиск...")
{
toolStripTextBox1.Text = null;
}
}
private void toolStripTextBox1_TextChanged(object sender, EventArgs e)
{
try
{
if (toolStripComboBox1.Text.Length > 0 && toolStripTextBox1.Text.Length > 0)
{
if (toolStripComboBox1.Text != "Ценовой промежуток" && toolStripComboBox1.Text != "Временной промежуток")
{
toolStripTextBox1.Enabled = true;
toolStripLabelExc.Visible = false;
складBindingSource.Filter = "[" + toolStripComboBox1.Text + "]" + "like '" + toolStripTextBox1.Text + "*'";
}
else if (toolStripComboBox1.Text == "Ценовой промежуток")
{
toolStripTextBox1.Enabled = true;
toolStripLabelExc.Visible = false;