Recent content by JohnPapa

  1. J

    Unable to create .accde

    Tested it again this morning. I tried it with Bitdefender on. It gave the problem. I disabled Bitdefender for 5 minutes and I was able to create the .accde immediately.
  2. J

    Unable to create .accde

    I mentioned it immediately after I found out. I found out though another ticket which I opened yesterday.
  3. J

    Unable to create .accde

    I found out today the reason of the problem regarding the inability to create a .accde file in A2013. This thread has 50 entries and surely a source of great information and once again I thank everyone for their contribution. The problem was caused by my antivirus, BitDefender. Once I disabled...
  4. J

    Cannot create .accde in 64-bit

    Fixed. I was able to create the 64-bit .accde when I disabled the antivirus software, in this case BitDefender. With the antivirus on on different pcs, the 32-bit .accde is created , while the 64-bit is not. So if you are having problem with creating .accde, you may look at any antivirus...
  5. J

    Cannot create .accde in 64-bit

    Wanted to add that the .accdb appears to run ok
  6. J

    Cannot create .accde in 64-bit

    I get, "Could not use <Specific filename.accdb>. File already in use." when I try to create the .accde using 64-bit A365. The .accde is created ok when I use the 32-bit A365. Both the 32-bit and the 64-bit use the following Version and Build
  7. J

    Interface between Access 365 with Calendar in 365 Business

    The following works fine and deletes ALL the filtered appointments. Many thanks. I will post both the Delete and Export Code again. Dim i As Integer For i = olFilterAppointments.Count To 1 Step -1 olFilterAppointments(i).Delete Next
  8. J

    Interface between Access 365 with Calendar in 365 Business

    The number of filtered (to be deleted) appointments is olFilterAppointments.Count When you say Loop do you mean using For Each ...Next. I will remind that we are talking about a Collection with no apparent unique ID and the current Delete loop is For Each olAppointmentItem In...
  9. J

    Interface between Access 365 with Calendar in 365 Business

    I have modified the code a bit, and the Collection is now only the appointments that need to be deleted (not all the appointments). When I call the Delete sub, all appointments are deleted except the last one, which is deleted if I call the Delete sub again. As it has been suggested by Gasman...
  10. J

    Interface between Access 365 with Calendar in 365 Business

    This is the code for deleting all appointments that have Location = 123 There is one problem. The following excerpt does not delete the last appointment. If there are 3 appointments it will delete 2 of the 3. For Each olAppointmentItem In olFilterAppointments Debug.Print...
  11. J

    Interface between Access 365 with Calendar in 365 Business

    You are right. I guessed it prior to looking. Thanks anyway. Will post all the code for posterity.
  12. J

    Interface between Access 365 with Calendar in 365 Business

    I can loop through each appointment. I will post the code. I have not figured out how to delete an appointment. One thing at a time :)
  13. J

    Interface between Access 365 with Calendar in 365 Business

    Your concern is valid and raises a question. If the Exchange Outlook for each dentist will be used to display the dentist's appointments as a read only feature then it is OK. If the user enters additional personal data, then there is a need to be able to delete all appointments that we copy...
  14. J

    Interface between Access 365 with Calendar in 365 Business

    There is no problem updating any Outlook and this works very well, especially with your help. The challenge I am facing now is prior to the update, to be able to delete ALL entries of a specific day of a specific Outlook, so that when I do the update the Outlook would hold the latest data. I...
  15. J

    Interface between Access 365 with Calendar in 365 Business

    Works like a charm. Can't thank you enough. I was just reading about the Outlook model and was getting to the solution. The documentation is very verbose.
Back
Top Bottom