Search results

  1. N

    Solved Receiving Emails in Access Database using CDO 2000 library

    Yes, the road is quite complex, but somehow, I have to find a library in MS Access equivalent VB6 : EAGetMailObj ActiveX Object This is the one I cannot find in MS Access to create a session
  2. N

    Solved Receiving Emails in Access Database using CDO 2000 library

    Okay it's a mixture of VB6 and some translation to come up with this, in some bits are from VB6 and VBA the problem which i have or I see the critical killer is how to reference the correct library in order to create an object session, that is where the problem is . The code will work fine if...
  3. N

    Solved Receiving Emails in Access Database using CDO 2000 library

    Before you can receive emails you have to set an email address up and to do that you use something like outlook Gmail Yahoo... Now you have an email address, you give the email address to someone, they send an email but it doesn't go to you, it goes to outlook or Gmail or wherever and is stored...
  4. N

    Solved Receiving Emails in Access Database using CDO 2000 library

    Hello. I'm trying to receive some emails into my MS Access database directly from my Gmail account using CDO 2000 library, but somehow I'm getting an error see the pictures for the error: VBA CODE Private Sub CmdNewEmails_Click() Dim objSession As Object Dim objInbox As Object Dim...
  5. N

    Solved How to convert a month into a number in MS Access Query

    I want to a convert a month written like , 31/01/2025 into a number example = 1 etc , is there a function that I can use at MS Access Query level I tried this below its not doing what I want: Private Function GetMonthNumber(pstrMonthName As String) As Integer Dim i As Long For i = 1 To 12...
  6. N

    Solved How to update a currentstock control in the subform after a requery from the parent form

    I will do a video on I solved it for other to learn
  7. N

    Solved How to update a currentstock control in the subform after a requery from the parent form

    I think there is a total misunderstanding here. When a user is creating some invoice detail line the current stock balance is automatically calculated the moment the new stock quantity is entered, what fire the calculation is the after event on quantity control. At this stage all is fine, the...
  8. N

    Solved How to update a currentstock control in the subform after a requery from the parent form

    I want to be updating a control called currentstock whenever I launch a query below instead of me doing it manually to avoid mistakes. At the moment the update is put on afterevent in the subform and it fires immediately I change the quantinty but does not fire if I requery the data unless I go...
  9. N

    Solved How to create new record from filtered record

    Many thanks Mike you pointed me to the right direction with a minor amendments to your code, this now work correctly INSERT INTO tblLineDetails ( InvoiceID, Quantities, SellingPrice, ProductName ) SELECT DMax("InvoiceID","tblInvoiceHeader"), tblLineDetails.Quantities...
  10. N

    Solved How to create new record from filtered record

    Thank you so much you appear to understand my problem and its almost just there, check on the child tale the key being entered 1 instead of new foreign key called 2 , if this can be achieved that is all I want.
  11. N

    Solved How to create new record from filtered record

    Is there a way to insert a foreign keys, that is my query nothing more
  12. 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...
  13. 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"...
  14. N

    Solved How to create new record from filtered record

    Very good understanding sir
  15. 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
  16. 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
  17. 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...
  18. 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...
  19. 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
  20. 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...
Back
Top Bottom