Search results for query: *

  • Users: mecablaze
  • Content: Threads
  • Order by date
  1. M

    Question How to Add Items to a Checked List Box

    I have a program that so far downloads an XML file, parses it, stores it in an ArrayList and then reads the ArrayList to add items to a Checked List Box, which is on a different form from where the ArrayLists are made and stored as public class variables. After I construct the ArrayLists I used...
  2. M

    Question [2008] Problem with Nested or Multidimensional Data Structures

    Hello, Right now I'm working on parsing an XML file and storing the data I need into some form of data structure to be used in by VB.net program. Here's my code: Imports System.ComponentModel Imports System.Xml Public Class getPackageDataForm Public defaultQueue As Queue(Of String())...
  3. M

    Question Using RunWorkerAsync in my download program

    Hello, Right now I'm writing a program that can download a file from the a URL provided in a text box. Here's my code so far. Imports System.IO Imports System.Net Public Class Download Delegate Sub updateProgressBarDelegate(ByVal percent As Integer) Private Sub...
Back
Top