How to create Customer Payment Receipts in ANY Microsoft Access Database Project

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 มี.ค. 2023
  • CREATING PAYMENT RECEIPTS IN MS ACCESS DATABASES
    Hello guys, thank you for tuning into this wonderful Microsoft Access tutorial. In this video, I am going to share with you on how to create payment receipts in your Microsoft Access Database projects.
    Issuing receipts is needed mostly in POS, School Management System, Hospital System, Church System, etc,
    In this lesson, we create a very basic "customer payment" database to be used in illustrating the concept. Find below the link to download the project.
    Thank you for your supports.
    drive.google.com/file/d/1VbhQ...

ความคิดเห็น • 44

  • @JustineMushivi
    @JustineMushivi 3 หลายเดือนก่อน +1

    WATCHING IT FROM ZAMBIA. THANKS

  • @dikshyant2.042
    @dikshyant2.042 หลายเดือนก่อน +1

    A big thanks to you!! It helped me for making my project.

  • @Michiworkstechnologies
    @Michiworkstechnologies 2 หลายเดือนก่อน +1

    This is helpful video Mr.Arko Smaila indeed i have got a point for what I have been looking for.

  • @datatechstutorials
    @datatechstutorials  ปีที่แล้ว +2

    The link to the project is in the description everyone.

  • @Khuram_Shahzad
    @Khuram_Shahzad ปีที่แล้ว +3

    Nice Sir, it's good to see that you are taking care of naming conventions

  • @sumardjo
    @sumardjo หลายเดือนก่อน

    Thanks for file Sample Project
    thanks very much....

  • @balentinikontokonstanti8808
    @balentinikontokonstanti8808 6 หลายเดือนก่อน +3

    Congratulation. Nice video thank you

  • @mthangzou
    @mthangzou 5 วันที่ผ่านมา

    Hello bro.. The print receipt conditions =" (PaymentID) =" & (PaymentID) is not working for me! What should I do?
    Help

  • @tasangngu4624
    @tasangngu4624 7 วันที่ผ่านมา

    Hello sir greetings,
    Please i can't see the macro well to open report. Please could write it down. Thanks

  • @moundirhzr2596
    @moundirhzr2596 28 วันที่ผ่านมา +1

    thank u i love u

  • @LengweChanda
    @LengweChanda หลายเดือนก่อน +1

    woinderful

  • @kenyanoxide
    @kenyanoxide 2 หลายเดือนก่อน

    smaila suppose a system allows for clients to apply for full sevices or a number of the services how do you print receipts

    • @datatechstutorials
      @datatechstutorials  2 หลายเดือนก่อน

      this involve a lot that needs to be discussed. Feel free to email

  • @Amirkhan-bg3hu
    @Amirkhan-bg3hu 9 หลายเดือนก่อน +1

    Sir Thank you Big problem solved

  • @casper7883
    @casper7883 7 หลายเดือนก่อน +1

    Very helpful. Maybe ill make a lesson study from you...

  • @jerryimahiagbe1949
    @jerryimahiagbe1949 ปีที่แล้ว +1

    Thank you very much. I was able to create one following your tutorial. I feel very happy. Please I want to know. How do I generate receipt for an old payment already in the database? I tried but was not able to go back and generate.

  • @scubarandy100
    @scubarandy100 หลายเดือนก่อน

    This video was helpful to create a way to enter payments from a customer. Can you show us how to apply these payments to an invoice that was created already

    • @datatechstutorials
      @datatechstutorials  หลายเดือนก่อน

      Hello, you have an invoice database you want us to include? feel free to share the database

  • @donomondi3595
    @donomondi3595 หลายเดือนก่อน +1

    great video. next time please would you create timestamps for us please for follow up. maybe if some part isnt entirely understood?

    • @datatechstutorials
      @datatechstutorials  หลายเดือนก่อน

      okay sir. I will do well to ensure that

  • @BahaiofLiberiatv
    @BahaiofLiberiatv ปีที่แล้ว +1

    Please help and a create full movie on how to create a automatic banking for saving, crediting, deposit, with mutiple user accounts in Ms access please.

  • @blessedkidav7551
    @blessedkidav7551 ปีที่แล้ว +1

    Good work Sir
    Please can I get tutorials on church database?

  • @Michaelkafui
    @Michaelkafui 3 หลายเดือนก่อน

    You're good😊

  • @nathanparasafayamis781
    @nathanparasafayamis781 4 หลายเดือนก่อน +2

    Very informative video. Thanks sir😊

  • @felixasamoah866
    @felixasamoah866 4 หลายเดือนก่อน

    I got to print receipt command and and clicking on it gave me “Data type mismatch in criteria expression “
    I clicked on and Error Number 2950 came up
    “Arguments: Lawmed Payments Receipt, 5, , [Payment ID]=001, Normal
    Help me out I’m stuck bro

    • @datatechstutorials
      @datatechstutorials  4 หลายเดือนก่อน

      sorry for this. can you try this: "paymentid="&"'"&"paymentid"&"'"

  • @blasiomarvinwasenda1047
    @blasiomarvinwasenda1047 ปีที่แล้ว

    this was helpful, i am trying to create a database for members in a SACCO, about this specific form. I needed some help on the make payment button, i have accomplished most of what i want it to do but i am still facing an issue of printing out a specific record. This is the VBA code i am using;
    Private Sub Command13_Click()
    ' Save the current record
    DoCmd.RunCommand acCmdSaveRecord

    ' Creating a new record in the Payments table
    DoCmd.GoToRecord , , acNewRec

    ' Saving the specific member's name to a variable
    Dim memberName As String
    memberName = Nz(Me.Member_Name.Value, "")


    ' Checking if the memberName variable is empty
    If memberName "" Then
    ' Print the payment report for the specific member
    DoCmd.OpenReport "Rt_Receipt", acViewPreview, , "Member_Name = '" & Replace(memberName, "'", "''") & "'"

    ' Printing the report
    DoCmd.PrintOut

    ' Closing the report
    DoCmd.Close acReport, "Rt_Receipt", acSaveNo
    Else
    ' Displaying a message if memberName is empty or Null
    MsgBox "Please enter a valid member name."
    End If


    End Sub
    can u help me, what am i missing?

    • @patrick_the_technician
      @patrick_the_technician ปีที่แล้ว +1

      I think it would be simpler if you can create a form, then add a text box or combobox where you will be entering the required member unique field then create a query that will filter data based on the record enter and then create a report on the same.

    • @datatechstutorials
      @datatechstutorials  ปีที่แล้ว

      have you been able to do this?

    • @blasiomarvinwasenda1047
      @blasiomarvinwasenda1047 ปีที่แล้ว

      @@patrick_the_technician okay, let me try this and c the outcome. 🙏 Thanks

    • @blasiomarvinwasenda1047
      @blasiomarvinwasenda1047 ปีที่แล้ว

      @@datatechstutorials Do what? The form for payment?

  • @Michiworkstechnologies
    @Michiworkstechnologies 2 หลายเดือนก่อน

    This is helpful video Mr.Arko Smaila indeed i have got a point for what I have been looking for.