Search results for query: *

  • Users: Kaye2
  • Order by date
  1. K

    Need some help with a class

    Oh ok... it just didn't load the new form when it loaded... I just moved the contents of new to another pubic sub and it worked fine
  2. K

    Need some help with a class

    I seem to get this error msg
  3. K

    Need some help with a class

    Well, everything that needs to be called should be called from the constructor... Thanks a lot for the help guys, its very much appreciated
  4. K

    Need some help with a class

    Oh ok... so instead i should Dim gt as new clsGuitarTuner() gt.new()
  5. K

    Need some help with a class

    Ok, well I've got that part right at least... I can dim A as clsGuitarTuner() But why can't I just used the standalone new clsGuitarTuner()? Am I missing something?
  6. K

    Copy of two dimension array

    Try using either Array.Copy or Array.Clone Array copy allows you to copy part of 1st array to the 2nd. Array.Copy(Array1,Array2) 'Copies the entire contents of array1 to 2 Array.Copy(Array1,Array2,2) 'Copies the first 2 elements Array2 = Array1.Clone 'Clones the array This should work with...
  7. K

    Need some help with a class

    Ok, here's the deal. My friend gave me class, but for the life of me I can't seem to include it into my project. AFAIK, the steps should be (after opening a new project) Project -> Add Class Then adding the new class inside the project. To reference the class, I would use new...
Back
Top