Search results

  1. L

    Making my code smaller

    Is there any way of making this code smaller, thanks in advance:) Case 0 line1.Visible = True line2.Visible = True line3.Visible = True line4.Visible = True line5.Visible = True line6.Visible = True line7.Visible = False Case 1 line1.Visible = False line2.Visible = False line3.Visible = False...
  2. L

    Numbers into lines

    This what I have so far: Private Sub Change_Number_Click() Dim LCD(0 To 9) LCD(0) = Array(1, 1, 1, 1, 1, 1, 0) LCD(1) = Array(0, 0, 1, 1, 0, 0, 0) LCD(2) = Array(0, 1, 1, 0, 1, 1, 1) LCD(3) = Array(0, 1, 1, 1, 1, 0, 1) LCD(4) = Array(1, 0, 1, 1, 0, 0, 1) LCD(5) = Array(1, 1, 0, 1, 1, 0, 1)...
  3. L

    Number help

    I have created lines on the form to represent LCD numbers. It is displayed in the format XXX.X and will be able to go up to 199.9. Each segment has seven lines in it to make a number. So ... 1st X has Line's: Line60 - Line66 2nd X has Line's: Line67 - Line73 3rd X has Line's: Line74 - Line 80...
  4. L

    VBA Help!!!

    Thanks for all this infomation a lot of help!!! But is there any way of clicking on a command button then brings up a inputbox, when change the display that way?
  5. L

    VBA Help!!!

    I am a complete beginner in VBA so could you help with this. I have a seven segment LCD display which are really lines to make it look like it. What I need is to make the numbers go to 199.9, so my display looks like XXX.X. I have done the code so far 1-9: Private Sub Change_Number_Click()...
Back
Top Bottom