User Profile

Collapse

Profile Sidebar

Collapse
Viper21
Viper21
Last Activity: May 7 '13, 04:13 PM
Joined: Feb 21 '13
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • SOLVED: Just in case anyone was wondering, I figured out what I did wrong and I feel I should post it here so anyone else in a similar predicament can simply view the solution online.

    I said Me.txtCrust.Tex t was strCrust, meaning the value for that was strCrust, not the value of strCrust was Me.txtCrust.Tex t

    Simple turn it around and instead of putting
    Code:
    Me.txtCrust.Text = strCrust
    put
    Code:
    strCrust = Me.txtC
    ...
    See more | Go to post

    Leave a comment:


  • Code:
     Me.txtCrust.Text = strCrust
            Me.txtTopping1.Text = strTop1
            Me.txtTopping2.Text = strTop2
    
            Me.lblOrder.Text = ("Your order is the following: " & vbNewLine & "" & vbNewLine & "" & strCrust & " style crust" & vbNewLine & "with " & strTop1 & " as the first topping" & vbNewLine & "and " &
    ...
    See more | Go to post
    Last edited by Viper21; Feb 21 '13, 04:39 PM. Reason: Explained why I edited in the edit.

    Leave a comment:


  • How to display more than one variable on a label?

    Here is my coding, if it helps. I need an answer quick as it's for an assignment at school. I've reviewed this over and over again and I just can't seem to find out what I did wrong....

    The
    Dim xx As String
    coding is under the public form, while the rest is under the button click.

    Me.txtCrust.Tex t = strCrust
    Me.txtTopping1. Text = strTop1
    Me.txtTopping2. Text = strTop2
    ...
    See more | Go to post
No activity results to display
Show More
Working...