TAILIEUCHUNG - Adding Search Capabilities to Windows Forms

[ Team LiB ] Recipe Adding Search Capabilities to Windows Forms Problem You need to use a search criteria specified by a user to locate a record displayed in a DataGrid without executing a query against the database. Solution Use the Find( ) | Team LiB Recipe Adding Search Capabilities to Windows Forms Problem You need to use a search criteria specified by a user to locate a record displayed in a DataGrid without executing a query against the database. Solution Use the Find method of the DataView with a sort key value to locate a record displayed in a DataGrid and reposition the row in the DataGrid. The sample code contains two event handlers Sets up the sample by creating a DataTable and filling it with the Customers table from the Northwind sample database. A DataView is created based on the default view of the Customers DataTable its sort key is set to the CustomerlD column and it is bound to the data grid on the form. Finally a CurrencyManager is created from the DataView. Go Uses the Find method of the DataView to locate a record with the CustomerlD specified by the user. If the CustomerlD is found the CurrencyManager created in the event handler is used to select the matching record in the data grid. The C code is shown in Example 7-31. Example 7-31. File Namespaces variables and constants using System using using using using private DataView dv private CurrencyManager cm . . . private void SearchDataGridForm_Load object sender e Create the DataAdapter and load the Customers data in a table. String sqlText SELECT FROM Customers SqlDataAdapter da new SqlDataAdapter sqlText S ql_ConnectString DataTable dt new DataTable dt Create a view from the default view for the table. dv CustomerlD Bind the view to the grid. dv Get the CurrencyManager for the DataView. cm CurrencyManager dv private void findButton_Click object sender e if Find the customer. int i if i 0 A match was not .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.