Results 1 to 4 of 4

Thread: help quick

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 2005
    Posts
    1

    help quick

    okay I really need some quick help.
    I have a program that I am trying to get running and I have not the slighest clue as to how to program the calculate buttom. heres the program I need a simple program that will allow me to enter the number of servings that i need the recipe servings, and the measurement that i need to adjust. so how would I set the calculate button to show that please help asap

  2. #2
    Frenzied Member I_Love_My_Vans's Avatar
    Join Date
    Jan 2005
    Location
    In the PHP compiler
    Posts
    1,275

    Re: help quick

    Welcome to the forums.

    Dont mean to be negative, but next time use a meaning full title. eg "Problems with calculations"

    Heres a list of components you will need

    Text Box (txtIngredients)
    Text Box (txtServings)
    Label (lblTotal)
    Command Button (cmdConvert)
    eg

    VB Code:
    1. cmdConvert_click
    2.    lblTotal.caption = CInt(txtIngredients.text) * Cint(txtServings)
    3. end sub

    Im new myself so i hope i helped

  3. #3
    Frenzied Member I_Love_My_Vans's Avatar
    Join Date
    Jan 2005
    Location
    In the PHP compiler
    Posts
    1,275

    Re: help quick

    Here we go, an working example.
    Attached Files Attached Files

  4. #4
    Elite Hacker Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,349

    Re: help quick

    Also, take a look at the link in my signature where it says "Give Sensible Thead Titles Please."

    And if someone has helped you, you rate their post. We have a reputation system here in VBForums. I have another link in my signature on that

    Welcome to the forums.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width