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

  1. #1

    Default array of dataset

    hi...
    Can I create array of dataset with VB.net
    I try This
    dim ds() as dataset
    ... (code here)
    For i = 0 to 4
    ds(i) = new dataset ??? error object bla..bla...bla
    Next
    Is there something wrong with this code?
    thank all
    Ruby



    Ruby Guest

  2. Similar Questions and Discussions

    1. Dataset.length(), dataset.hasnext() not working.. Why?
      I have a dataset that has 3 items, yet when I test for it, it is "undefined". Any ideas why this property would not be available? Thanks Geoff
    2. Trace DataSet array
      Hi, Anyone know how to trace an item or all of an array in a DataSet in to the output window? Your help is much appreciated.
    3. [Urgent] Is there a size limit on returning a large dataset or a large typed array from web service?
      Is there a size limit on returning a large dataset or a large typed array from web service? I couldn't find any article in MSDN about this..... ...
    4. Ccopying a datatable content from an untyped dataset into a table which is inside a typed dataset
      Hi All, I am facing problem in copying content of table from a untyped dataset into to a table inside the typed dataset. I wanted to copy the data...
    5. web services htc getting array or dataset values
      I'm new to this web services arena... I was able to use the MSDN example of Web Services with the HTC file. Pretty neat as I didn't want my page...
  3. #2

    Default Re: array of dataset

    thank alot Gary...:)
    Ruby

    "Gary McCormack" <gary.mccormack@tryster.co.uk> wrote in message
    news:098a01c35823$86fea1c0$a501280a@phx.gbl...
    > You have declared the array as a dynamic array. I assume
    > somewhere you are using redim to specify how many elements
    > it is to have?
    >
    > I.e
    > ReDim ds(4)
    > For i = 0 to 4
    > ds(i) = new dataset
    > Next

    Ruby 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