Search results for query: *

  1. E

    Object Orientated Woes create objects

    10% there!! Nightmare, though a little bit pleased ;) Every-time I touch something it seems to break something else! I was planning on creating an object – which I have done ;) I was sort of hoping that I would actually be able to see the thing to work with it! Instead, its there, but in...
  2. E

    Object Orientated Woes create objects

    Hi everyone, Im looking for advice, help, best practices. I'm new to VB and having alot of trouble with OO. I understand how to manually create an object and assign properties and methods to it, but I am stuck on getting VB to create objects on the fly, and working with multiple forms. Attached...
  3. E

    Can not open Project .sln file

    Sorted Thanks for that, it worked, I have tested on 3 machines and it works on all three. Many thanks again Guys - appreciated..
  4. E

    Can not open Project .sln file

    I usually work on any projects using a USB pen drive. I continually get problems with VB Studio not being able to 'find' the files or project. Usually this is due to the Drive letter for the USB drive changing from machine to machine. My usual work around is to copy all files to the VB projects...
  5. E

    Value of type 'Single' cannot be converted to '1-dimensional array of Single'

    A fresh start.. Looking at at with slighly less tired brain cells, I think I need to look at adding the necessary maths to the end, I was thinking that I could just do everything from the array, but reading around a bit, Im not so sure now. And Im still not sure some of my variables are right...
  6. E

    Value of type 'Single' cannot be converted to '1-dimensional array of Single'

    Right, now I am really stuck I guess that maybe I do not understand arrays properly, or I have set mine up wrong as I can not get it to work at all. I am trying to delete an entry from a list box, and then have the sub-total reflect that the value has been deleted from the list box. I searched...
  7. E

    Value of type 'Single' cannot be converted to '1-dimensional array of Single'

    :) Yes, that makes more sense and gives me an idea on how to do something else now... Thanks again
  8. E

    Value of type 'Single' cannot be converted to '1-dimensional array of Single'

    Thanks Not completely with you, but I if I understand what you are saying I need an extra 'dim' statement for rlbookings... It worked! Dim rlResult As Double Dim rlBooking As Single rlResult = CSng(TxtCost.Text) rlmemory = rlmemory + rlResult TxtSubtl.Text = CStr(rlmemory)...
  9. E

    Value of type 'Single' cannot be converted to '1-dimensional array of Single'

    Guys, Im sorry if this is a bit simple, but Im so stuck and pretty frustrated right now :-( Im trying to teach myself VB and Im in the process of writing a little test app as part of the learning process. I have reached the stage where Im trying to create my first array, as I want to populate a...
Back
Top