public void CreatePawnReceipt() { string customerId = CustomerIDTextBox.Text; string transactionId = poNumber; PawnReceipt pawnReceipt = new PawnReceipt(); pawnReceipt.CustomerIDValue = customerId; pawnReceipt.TransactionNumber = transactionId; pawnReceipt.Show(); }