Danh mục tài liệu

Bind and View Individual Text Boxes Based Off a Selected List Box Item

Số trang: 1      Loại file: pdf      Dung lượng: 21.49 KB      Lượt xem: 8      Lượt tải: 0    
Xem trước 1 trang đầu tiên của tài liệu này:

Thông tin tài liệu:

1,3 Bind và xem cá nhân Text Boxes Dựa Off một lựa chọn Danh sách Hộp khoản Sử dụng một hộp danh sách tương tự với một trong các trang trước How-To, trong How-To, bạn sẽ học cách tạo OleDbDataAdapters bổ sung và DataSets và nối kết chúng để cá nhân hộp văn bản cho dữ liệu xem.
Nội dung trích xuất từ tài liệu:
Bind and View Individual Text Boxes Based Off a Selected List Box Item 1.3 Bind and View Individual Text Boxes Based Off a Selected List Box ItemUsing a list box similar to the one in the previous How-To, in this How-To, you willlearn how to create additional OleDbDataAdapters and DataSets and bind them toindividual text boxes for viewing data.Although the list box is nice for displaying a couple of fields in my form and limiting therows displayed, how do you list the detail in individual text boxes by clicking on an itemin the list box?TechniqueYou are going to enhance the form that you created in How-To 1.2 to use additional datacontrols, specifically another data adapter and dataset. You will set up the selectstatement in the new data adapter to take the selected list box item as a parameter. Thedataset will then be filled with data, and some text boxes with the dataset set as the datasource will display the current record. You can see an example of this in Figure 1.7. Figure 1.7. You can bind text boxes to datasets as well as list boxes.