Search results for query: *

  1. O

    help with visual studio installation "the specified module could not be found"...

    help with visual studio installation "the specified module could not be found"... Hi Over the past month I have been trying to get Visual Studio going on my machine but to no avail. I have tried everything under the sun but nothing has seemed to work. From repeated attempts I think there may be...
  2. O

    help with simple array construction

    one more thing if I had a list of lists of my object - each entry would be a list of these objects...what type of object would I use to contain this so : (0) myobject5, myobject4, myobject9 (1) myobject1, myobject7, myobject6 (2) myobject2, myobject8, myobject3 ... ArrayLists, Lists...
  3. O

    help with simple array construction

    figured it out!!! thanks
  4. O

    help with simple array construction

    i totally agree that this is a case for fields of an object...I'm just scared to do this in vb - never done it before...I know exactly how I would do it if I were to take what I know of oop in java over to vb...
  5. O

    help with simple array construction

    i wish i were better equipped with language to be able to understand and respond properly. Imagine i have a list of points - think of them as locations of people - and I need to be able to iterate through them and make a new list breaking them into groups. In my list, I need their original...
  6. O

    help with simple array construction

    one column or entry would be a single integer, like 0, 1, 2, 3, 4... - i need this as an index of each one's position in the list the second would be 0 or 1, or true or false the third would itself be a list of integers 0,4,5,2,7,2,5,2... so all together one entry would be {0; 0...
  7. O

    help with simple array construction

    I need to construct a data array and I am not sure if I can do what I need to do given the data. I probably should opt to store in a new class but that's too advanced for now the data describes a series of points. each point has its index in a list a boolean, binary value and a list of integers...
Back
Top