simple program to multiply

simonlee11

Member
Licensed User
Longtime User
can anyone provide or point me in the right direction for a simple example of how to multiply the values of two text boxes and display the answer in a third i know this is probably kids stuff but i am very green when it comes to b4a. :sign0085:
 

kickaha

Well-Known Member
Licensed User
Longtime User
the easiest and quickest way:

Textbox1.Text = Textbox2.Text * Textbox3.Text

Note - this will fail if the text in either textbox2 or Textbox3 is not a number, and you may have problems with floating point numbers but this is the basic method.
 
Upvote 0
Top