private void btnReceipt_Click(object sender, EventArgs e) { if (string.IsNullOrWhiteSpace(txtCashAmount.Text)) { MessageBox.Show("Please enter cash amount!"); } else { txtChange.Text = (float.Parse(txtCashAmount.Text) - float.Parse(txtTotal.Text)).ToString("0.00"); ReceiptForm receiptForm = new ReceiptForm(); receiptForm.Show(); receiptForm.label1.Text = "Järntorget\r12345, Göteborg\rTel.:012345678\rOrg:123456-7890"; receiptForm.label3.Text = txtTotal.Text; receiptForm.label7.Text = float.Parse(txtCashAmount.Text).ToString("0.00"); receiptForm.label8.Text = txtChange.Text; receiptForm.label9.Text = "Save the receipt\rThank you for choosing us"; receiptForm.label10.Text = label4.Text; receiptForm.label15.Text = "6"; receiptForm.label17.Text = (float.Parse(txtTotal.Text) * 6 / 100).ToString("0.00"); receiptForm.label19.Text = (float.Parse(txtTotal.Text) - float.Parse(receiptForm.label17.Text)).ToString("0.00"); receiptForm.label21.Text = txtTotal.Text; receiptForm.label22.Text = label5.Text + "\r\n" + label6.Text; this.Hide(); } }
private void btnReceipt_Click(object sender, EventArgs e) { ReceiptForm receiptForm = new ReceiptForm(); receiptForm.Show(); receiptForm.label1.Text = "Järntorget\r12345, Göteborg\rTel.:012345678\rOrg:123456-7890"; receiptForm.label3.Text = txtTotal.Text; receiptForm.label9.Text = "Save the receipt\rThank you for choosing us"; receiptForm.label10.Text = label2.Text; receiptForm.label15.Text = "6"; receiptForm.label17.Text = (float.Parse(txtTotal.Text) * 6 / 100).ToString("0.00"); receiptForm.label19.Text = (float.Parse(txtTotal.Text) - float.Parse(receiptForm.label17.Text)).ToString("0.00"); receiptForm.label21.Text = txtTotal.Text; receiptForm.label22.Text = label3.Text + "\r\n" + label4.Text; receiptForm.label5.Text = "Card payment"; receiptForm.label7.Text = txtTotal.Text; receiptForm.label8.Text = ""; receiptForm.label6.Text = ""; this.Hide(); }