Search results

  1. F

    Update Table Field with Sum Query

    This is my problem: Table Invoice: InvoiceId CustomerID Total_Invioce (Double) Table Payments: PaymentId PaymentType ... So, one payment can distributed in more than one invoice, and payments might be partial. I created a table InvoiceVsPayment: InvoiceID PaymentID PaymentPart: stores the...
  2. F

    Validation Code Textbox.Value vs. Number

    I have the following code to validate that the value entered in a text box is less than the amount in another text box: Private Sub TxtPaymentAmount_AfterUpdate() Dim LResponse As Integer If TxtPaymentAmount.Value > TxtPOTotal.Value Then LResponse = MsgBox("Payment Amount is greater...
Back
Top Bottom