Recent content by pepepito78

  1. P

    PDF number of pages

    Thank you!
  2. P

    PDF number of pages

    if it can be selected, the application reads binary and looks for the text 'page count' and in this new pdf it does not exist, so I wanted to use another way to do it
  3. P

    PDF number of pages

    It is a pdf created by another application to the usual one from which the number of pages is not obtained
  4. P

    PDF number of pages

    It has always worked, but today I received pdf files created differently and it does not read the number of pages
  5. P

    PDF number of pages

    No, I dont have, but I used: Function NumeroPag(El_Fichero As String) As Integer Dim Cadena As String Dim NumeroF As Long Dim ObjetoPDF As Object Cadena = "" Set ObjetoPDF = CreateObject("VBscript.RegExp") ObjetoPDF.Global = True ObjetoPDF.Pattern = "/Type\s*/Page[^s]" NumeroF = FreeFile Open...
  6. P

    PDF number of pages

    Good afternoon, do you know any VBA code that returns the number of pages of a pdf file? Thank you
  7. P

    Single-user database

    Thank you
  8. P

    Single-user database

    Good Morning, i have a shared bbdd access on network. Do you know how to prevent it from being opened by another user once opened? Thank you
  9. P

    External error

    Yes, but they still make mistakes, they are usually inexperienced commercials. My intention is that when the error occurs, my application is not left waiting to press accept in the error message, I want it to continue working and create an incident. Thank you anyway
  10. P

    External error

    Thank you
  11. P

    External error

    thanks, but i don't touch excel books, they are constantly changed by other people. I just automate its padding and run a macro that I don't think
  12. P

    External error

    thanks, but i don't touch excel books, they are constantly changed by other people. I just automate its padding and run a macro that I don't think
  13. P

    External error

    Thank you, the problem is not when dumping data. From Acces I open the book, enter the data and run a macro that belongs to the book. Normally it works well (the code is correct), but sometimes the macro (made by someone else) gives an error at runtime for whatever reason. I from my VBA process...
  14. P

    External error

    Hi. I have an access database that dumps data into different Excel workbooks. They are excel books made by other people. After dumping the data from my Access database I execute a macro of the book. My problem is that when I run a macro that gives error, my application is waiting. I would like...
  15. P

    Hello

    Hi, I'm from Spain. I have been working with access for almost a year.
Top Bottom