double price, totalPrice, discount, discountedPrice;
            int quantity;
            const double d = 0.85f;
            price = double.Parse(textBox2.Text);
            quantity = int.Parse(textBox3.Text);
            totalPrice = price * quantity;
            textBox4.Text = totalPrice.ToString();