string connectionString = "xxx"; string SQL = "xxxxx"; // Create ADO.NET objects. SqlConnection con = new SqlConnection(connectionString); SqlCommand com = new SqlCommand(SQL, con); SqlDataAdapter adapter = new SqlDataAdapter(com); // Execute the command. try { adapter.Fill(ds, "Detail"); com.CommandText = commandSql; adapter.Fill(ds, "Master"); } finally { con.Close(); } // Display the results. dvgMaster.DataSource = ds.Tables["Master"].DefaultView; dvgDetail.DataSource = ds.Tables["Detail"].DefaultView; // Handle the PositionChanged event for the Suppliers table. BindingManagerBase currency; currency = this.BindingContext[dvgMaster.DataSource]; currency.PositionChanged += new System.EventHandler(this.Binding_PositionChanged); } private void Binding_PositionChanged(object sender, EventArgs e) { string filter; DataRowView selectedRow; // Find the current category row. selectedRow = (DataRowView)this.BindingContext[dvgMaster.DataSource].Current; // Create a filter expression using its SupplierID. filter = "No='" + selectedRow["No"].ToString() + "'"; // Modify the view onto the product table. ds.Tables["Detail"].DefaultView.RowFilter = filter; }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง