document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Dim m_item, m_price, tax, total As double
  2. m_item = double.Parse(textBox1.Text)
  3. m_price = double.Parse(textBox2.Text)
  4. tax = 0.05
  5. total = m_item * m_price * (1 + tax)
  6. label5.Text = total.ToString()
  7. MessageBox.Show("Well Done.")
');