Search results for query: *

  • Users: keeps21
  • Content: Threads
  • Order by date
  1. keeps21

    ListDictionary Keys and Values

    I have a list Dictionary. It is populated from my database, with a question ID and an answer as shown below. Dim AnswerArray As New ListDictionary() While MyDataReader.Read AnswerArray.add(MyDataReader("form_question_id"), MyDataReader("answer")) End While How can I then output both the...
  2. keeps21

    undeclared array error in included file.

    I have two files. (This is a simplified example) The first file declared variables - the second outputs the variables. The problem is that myArray is 'undeclared' when file2.aspx tries to use it. However varName is working fine. If I declare and populate myArray in the same way in file2.aspx...
  3. keeps21

    Populate an array with data from variables

    I have an array. I want to add the values of 6 variables into this array, however I can't find a way to do it. If I knew the values I'd do it like this MyArray(i)= New String { ("id"), ("ans1"), ("ans2"), ("ans3"), ("ans4"), ("ans5") } However i don't know the values, but have 6...
Back
Top