Search results for query: *

  • Users: spke711
  • Content: Threads
  • Order by date
  1. S

    Array of TextBoxes

    Ok. I have an unfixed-length array of textboxes that I created globally: Dim CF_array() As TextBox In one function, I used ReDim on the array to fix the length according to a local integer: Public Function function1() Dim someInt As Integer someInt = 4 ReDim...
  2. S

    Help reading XML

    I'm having a problem reading the xml tags. I can read the values within the tags, but I need to read the tags themselves. Here is some sample xml: <CMS> <amountInput>500.00</amountInput> <CF74>Blue</CF74> <CF75>Green</CF75> <CF76>Red</CF76> <CF77>Orange</CF77> </CMS Each <CF> tag...
Back
Top