Search results for query: *

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

    Pls help me understand why this code fails?

    I do not understand what I am missing that is causing this code to fail. Basically, I need to bind an arraylist to a grid (that part works). What does not work is that the code below will only put in the last value of the last iteration of the loop in the grid. Here is the faulty code...
  2. ckelsoe

    Need help with iterations in XML data

    I have been struggling with reading an XML file. I am doing fine until I get to the repeating data. I do not know how to iterate through the data between the <iterations> tags. I am somehow missing the obvious and would appreciate someone better versed in VB and XML taking a look at my code. I...
  3. ckelsoe

    Question about ReadElementString error

    I am reading an XML file via XmlTextReader. I am using the XmlTextReader.ReadElementString to return the contents of the node. I am getting an error "Object reference not set to an instance of an object." when the code hits a node that has a long string (124 charactors including comma's). Is...
  4. ckelsoe

    Stepping through code

    How do you step through code with VS2005? So far I have not found a way to do this. I can step over (F10) but not through. Thanks, Charles
  5. ckelsoe

    Help needed on parsing a file

    I need some help figuring out the best way to parse a file. An example of the data is as follows: <iteration DateAdded="12/29/2005"> <field name="Field1"/> 'No data in this field <field name="Field2">Some Data here</field> ... </iteration> <iteration DateAdded="12/29/2005"> <field...
  6. ckelsoe

    IMAP Component

    Does anyone have a good recommendation for an IMAP component? I need to log into server a, download all messages and attachments, then log into server b and upload all messages and attachments. Any recommendations would be appreciated. The target environment will be VB.NET Thanks, Charles
  7. ckelsoe

    Function using arraylist question / error

    I have a function that returns an array list. The function looks something like this: Protected Function RetrieveExtensions(ByVal sourceDir As System.IO.DirectoryInfo) As ArrayList Dim file As System.IO.FileInfo Dim strExtension As String Dim childDir As System.IO.DirectoryInfo For Each file...
Back
Top