Recent content by xavier.batlle

  1. X

    Solved Access Database Locking Issue

    Is MS your Access Updated? Do all the computters have the same MS Access version? This behaviour you have explained was an ACCESS bug that happened 1 or 2 years ago!
  2. X

    How to see the UN and PC Name of locked Records

    This video can help you to avoid records locked in editing mode:
  3. X

    Solved Adding Items to Combobox, but They aren't showing up

    I've tested your code and it works fine. The database names are added to the combobox and displayed
  4. X

    Conversion to 64-bit

    The API is similar to this other one: Public Declare PtrSafe Function GetFileInformationByHandle Lib "kernel32" Alias "GetFileInformationByHandle" (ByVal hFile As LongPtr, lpFileInformation As BY_HANDLE_FILE_INFORMATION) As Long so I guess the VBA7 version would be: Public Declare PtrSafe...
  5. X

    New Outlook

    If you use CDO, you can archive the full message as an *.eml file after sending it.
  6. X

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

    For example, if you want to send two attachments you can have two TextBoxes: Attachment1 and Attachment2, and for sendirng both files, you have to change the code: With Newmail If Not isNull(Me.Attachment1) Then .AddAttachment Me.Attachment1 Endif If Not...
  7. X

    Solved Subform. Format property. Show header and footer. No difference in putting YES putting NO

    I think you are confusing 2 concepts: - "Encabezado o pie de página" (Page/foot header) - "Encabezado o pie de formulario" (Form/foot header) The "Encabezado de página o de formulario" is only shown when the form is printed or on print preview and the property "Mostrar encabezado/pie the...
  8. X

    Windows 11 Laptop Very Slow?

    For an I3 processor some processes are a resource eaters, for example... Windows Update. It's also very important the processors generation to understand its behaviour.
  9. X

    index & seek

    No, AFAIK ADO connections to AZURE SQL servers don't implement the "seek" method. You can use "find" or "filter" to search records.
  10. X

    index & seek

    The OP said that he Back End is stored on SQL Server Azure, so this link doesn't apply.
  11. X

    index & seek

    IMO the best and fastest option is to use a Pass-through query (if you don't need to update the tables)
  12. X

    Automatic second quotation mark, parenthesis, bracket....

    You can set/unset this option if you use Rubberduck:
  13. X

    Run an EXE

    In VBA, executing a shell command with spaces in the path requires enclosing the path in double quotes. Here’s how you can do it in MS Access VBA: myPath2 = """C:\Program Files (x86)\VATECH\EzDent-i\Bin\VTE2Loader_ReqAdmin32.exe"""
  14. X

    Is 32768 the maximum number of objects in a MS Access database?

    The short answer is: No So you might be wondering: “What is the maximum number of objects in a database?” The short answer is: “Nobody knows it!” I’m going to explain what tests I’ve done and what the results are: I have developed an easy procedure that is able to create any number of new...
  15. X

    Typical situation 1:1 Superidentities with subidentities

    Sorry @The_Doc_Man, you are rigtht, both must be singular. These relations refers that a person can have several roles (client, customer, etc. ) and each role whith different attributes.
Back
Top Bottom