コード例 #1
0
        // Button 'Search'
        private void buttonSearchFolio_Click(object sender, EventArgs e)
        {
            string searchinput = @textBoxSearch.Text.Trim();

            // Fetch dataset
            DataSet folioDS = DBGetData.GetFolioDGVSearch(searchinput);

            if (folioDS != null)
            {
                // No tables fetched
                if (folioDS.Tables.Count == 0)
                {
                    new StatusMessage("No datatable found, contact administrator.");
                    return;
                }
                // No rows fetched
                else if (folioDS.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
                dataGridViewFolio.DataSource = folioDS;
                dataGridViewFolio.DataMember = "Get_Folio_Search";
                LoadDataGridViewFolio();
            }
        }