Search results

  1. N

    Solved How to create new record from filtered record

    When you create an invoice and you discover that the entire invoice is wrong. Then you must reverse that invoice , create an opposite document called credit note referencing the invoice being reversed . This record will have its own primary and foreign keys in both the parent and child tables...
  2. N

    Solved How to create new record from filtered record

    I have created an insert query it works exactly as required but its not inserting the foreign key in the child table , if that works then is exactly what I wanted. Insert queries Private Sub CmdDuplicate_Click() DoCmd.SetWarnings False DoCmd.OpenQuery "Qry01" DoCmd.OpenQuery "Qry02"...
  3. N

    Solved How to create new record from filtered record

    Very good understanding sir
  4. N

    Solved How to create new record from filtered record

    What I want to archive is to completely reverse the transaction without changing the copy record here, for example see the picture below: I want the same record to be copy into the next new record that is it nothing else
  5. N

    Solved How to create new record from filtered record

    So, are you trying to add a single or multiple new records in one go? If only one record, then you don't need a loop (Do While). I need the same record to populated in both the parent and child
  6. N

    Solved How to create new record from filtered record

    Kindly see the example database for easy experiment , I want the same record to be copied to primary key number 2 to make a copy of record on primary key number 1. I do want people to be capturing manually , this way we will avoid errors, both record in parent and child table must be the same...
  7. N

    Solved How to create new record from filtered record

    The record is properly retrieved and I can edit it the problem is the it doesn't come with a new primary key, I'm simply trying to create the exactly duplicate record with just a new primary key ,think of reversing the record or a credit note the only difference required here is that the record...
  8. N

    Solved How to create new record from filtered record

    I have tried that but it is adding zero record up to infinite until I had to stop it by rebooting The parent table and the child table need to have the new record
  9. N

    Solved How to create new record from filtered record

    Hi I have managed to get the underlaying record by filtering, from the filtered record I want to create a new record to be used as a credit note. The filter below gets the invoice detail all of it, instead of recapturing the records one by one I'm using filter below, now I want to use that...
  10. N

    Solved I'm using MS Access with two computers connected to the same network

    Many thanks to you all and your contribution are highly valued. We sorted out the issue exactly like what Minty said it was the security features with the mixture of VPN and the router.
  11. N

    Solved I'm using MS Access with two computers connected to the same network

    I have two computers using the same network in the same building storing the information on MYSQL (Cloud), now as long as I'm in the same building computer B can access the resources stored on computer A which is the JAVA file by using port number 8080 because the public IP address on both...
  12. N

    Solved How to remove this error "the execution this software stopped due to run time" error in MS Access VBA

    My apologies people for taking too late to reply to this issue, I have been investing why the CDO does not work well with runtime. I have finally found the truth here: (1) The CDO was created to work with full MS Access not depleted runtime period.
  13. N

    Improve FE - BE performaces on LAN

    This sounds like the index issues here, if the tables are properly indexed and you are using wired local area network access works faster. Never use WIFi in this case. Shifting to SQL Server is like climbing mount Everest, if you really want performance forget about that SQL server its just a...
  14. N

    Solved MS Access Switch Board Menu

    Many thanks to all experts above for providing valuable information this helped a lot.
  15. N

    Solved MS Access Switch Board Menu

    Our department want an MS Access switchboard menu , though I Know we add it manually its not on the menu of MS Access 2016 . The sales switchboard must have the following reports : (1) Sales reports with each button representing a sales area or an outlet (Example, town Centre , first class ...
  16. N

    Solved Converting a longer date string into short date

    Many thanks to all you have helped to solve this issues I real appreciate you all.
  17. N

    Solved Converting a longer date string into short date

    Is possible to convert a longer date received from a website into a short date in MS Access Example longer date : Tue, 24 Dec 2024 12:55:03 GMT) Convert into : 24/12/2024 I have tried this it failed: Format((Tue, 24 Dec 2024 12:55:03 GMT),"DD\/MM\/YYYY") Any idea here We are interested...
  18. N

    Solved How to send multiple attachment with CDO Gmail in MS Access VBA

    Many thanks CJ London you are great! the sky is the limit you have really made my new present 2025. Once again thank you Regards Ch
  19. N

    Solved How to send multiple attachment with CDO Gmail in MS Access VBA

    Its now giving me the sending failure message , unless I have changed a wrong place , see the new code Dim Newmail As Object Dim mailConfig As Object Dim fields As Variant Dim msConfigURL As String Dim a() As String Dim i As Integer On Error GoTo Err1: 'late binding Set Newmail =...
  20. N

    Solved How to send multiple attachment with CDO Gmail in MS Access VBA

    Many thanks CJ but I do not know where I'm going wrong , see the message below
Back
Top Bottom