Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Datagrid with Dataset and Multiple Tables

Datagrid with Dataset and Multiple Tables

Scheduled Pinned Locked Moved C#
questiondatabase
1 Posts 1 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Offline
    L Offline
    Leon van Wyk
    wrote on last edited by
    #1

    I have datagrid with a dataset set as the DataSource. I have added a X number of tables to the dataset, but when I view my datagrid it shows all the tables in the datagrid but I can only view the first table. The other tables don't show when I click or navigate onto them. How do I get it to open or view the other tables? DataSet dataset = new DataSet("Sms Report"); dataset.Tables.Add(sendItemsTable); packagesTables = new DataTable[sendItemsTable.Rows.Count]; for(int i = 0; i < distinctPackagesTable.Rows.Count; i++) { packagesTables[0] = //..Data that I query; } if(packagesTables.Length > 0) dataset.Tables.AddRange(packagesTables); dataset.AcceptChanges(); dataGrid.DataSource = dataset; dataGridStyle1.MappingName = dataGrid.DataMember; dataGrid.Expand(0); Leon v Wyk

    1 Reply Last reply
    0
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    • Login

    • Don't have an account? Register

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • World
    • Users
    • Groups