set up a datagrid of multiples datatables in 1 dataset

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default set up a datagrid of multiples datatables in 1 dataset

    I have a few tables consisting two columns each.
    They all have the same first column (unique key)

    What I want to do is show a datagrid, starting with the first column
    followed
    by the rest. Actually put the tables behind each other.

    Is there anyone who could show me the way how to do this

    I did manage but it has a bad performance.
    What I did was filling up row by row

    Richard Loupatty




    Richard Loupatty Guest

  2. Similar Questions and Discussions

    1. Troubles with dataset and datagrid
      Hello, I was just wondering if anyone has a suggestion to resolving the dataset-datagrid problem I have been having. The dataset and datagrid are...
    2. SQL Select causing multiples...
      I hate to bother with this, as I have had this issue before and solved it - But I cannot remember what I did! I have t tables, a member list (with...
    3. DataSet - DataGrid
      I did the tutorial on using the dataset component to send data to a datagrid component by databinding and lo and behold. It doesn't work. The data...
    4. Multiples adapters with flashcomm
      I want to use multiple adapter with different IP address in each one, so I will make sure that one application is working in one IP and another...
    5. Populating DataSet from two DataTables
      I'm trying to build a heirarchial DataGrid. I've created the two tables I need through some fun in a code behind that runs through an Active...
  3. #2

    Default Re: set up a datagrid of multiples datatables in 1 dataset

    This sounds like it can be done with a Join in your select statement, to
    build a result set according to what you want and putting it into a DataSet.

    "Richard Loupatty" <riclo@trashnet.nl> wrote in message
    news:3f17292f$0$153$edd6591c@news.versatel.net...
    > I have a few tables consisting two columns each.
    > They all have the same first column (unique key)
    >
    > What I want to do is show a datagrid, starting with the first column
    > followed
    > by the rest. Actually put the tables behind each other.
    >
    > Is there anyone who could show me the way how to do this
    >
    > I did manage but it has a bad performance.
    > What I did was filling up row by row
    >
    > Richard Loupatty
    >
    >
    >
    >

    Rick Spiewak Guest

  4. #3

    Default Re: set up a datagrid of multiples datatables in 1 dataset

    This project works with DBF so I didn't know if the join works for this.
    I solved it now with the joinview sample from Microsoft knowledge base.

    "Rick Spiewak" <rickspiewak@mindspring.com> schreef in bericht
    news:OZPHAcSTDHA.3500@tk2msftngp13.phx.gbl...
    > This sounds like it can be done with a Join in your select statement, to
    > build a result set according to what you want and putting it into a
    DataSet.
    >
    > "Richard Loupatty" <riclo@trashnet.nl> wrote in message
    > news:3f17292f$0$153$edd6591c@news.versatel.net...
    > > I have a few tables consisting two columns each.
    > > They all have the same first column (unique key)
    > >
    > > What I want to do is show a datagrid, starting with the first column
    > > followed
    > > by the rest. Actually put the tables behind each other.
    > >
    > > Is there anyone who could show me the way how to do this
    > >
    > > I did manage but it has a bad performance.
    > > What I did was filling up row by row
    > >
    > > Richard Loupatty
    > >
    > >
    > >
    > >
    >
    >

    Richard Loupatty Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139