コード例 #1
0
ファイル: Floorplan.cs プロジェクト: mariusnorheim/app2000v
        private void buttonSearchHall_Click(object sender, EventArgs e)
        {
            string searchinput = @textBoxSearch.Text.Trim();

            // Fetch dataset
            DataSet hallDS = DBGetData.GetFloorplanDGVHallSearch(searchinput);

            if (hallDS != null)
            {
                // No tables fetched
                if (hallDS.Tables.Count == 0)
                {
                    new StatusMessage("No datatable found, contact administrator.");
                    return;
                }
                // No rows fetched
                else if (hallDS.Tables[0].Rows.Count == 0)
                {
                    new StatusMessage("No datarows found matching search.");
                    return;
                }
                // Clear labelStatus for previous messages
                else
                {
                    new StatusMessage("");
                }

                // Set the dataset as source for datagridview and make sure its displayed
                dataGridViewFloorplanHall.DataSource = hallDS;
                dataGridViewFloorplanHall.DataMember = "Get_Floorplan_HallSearch";
                LoadDataGridViewHall();
            }
        }