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:
cmdConvert_click lblTotal.caption = CInt(txtIngredients.text) * Cint(txtServings) end sub
Im new myself so i hope i helped




Reply With Quote