Search results

  1. S

    Macbook Functionality Navigation Pane

    you may need to press and hold the FN key then press F11. Also could look into flipping the function keys so that the function keys work as expected and then to do things like volume, etc, would press the FN. This would be a settings/preferences thing.
  2. S

    Solved Open a specific folder using the first x letters

    Are you looking to open a folder dialog and see/select the files that it lists?
  3. S

    Solved VBA code to find and replace values in exported Excel spreadsheet with hyperlinks

    Good to know that the used range met your needs, that seems simpler than having to calculate the cells. Sorry my code didn't work in your case. Maybe I didn't copy all the parts that were needed.
  4. S

    Solved VBA code to find and replace values in exported Excel spreadsheet with hyperlinks

    I added some code that will make the range selection dynamic. Your code is a little different than mine, so hopefully I put it in the right spots. They are left aligned so you can see where I added the code lines. I show two ways for the range one using RC numbers the other using letters...
  5. S

    How do you link a specific printer to a Report and preserve that link if coding on a separate system?

    This is probably an extra couple of steps since it would have to be sent to the printer after the fact. Haven't actually tried it, just thinking... What if instead, set the default printer to PDF that way, presumably, regardless of what printers are available, the prompt or reformatting issue...
  6. S

    Solved Adding a page to a pdf

    PDFtk Server works well for me. Here is a code sample snippet to merge files. The first part of the code checks if pdftk is installed so that it won't try to run if not available. ... ... If InStr(Environ("Path"), "pdftk") = 0 Then MsgBox "It appears that PDF tool kit is not...
  7. S

    Insert VBA code into pdf form

    Have them return the pdf to you and then use vba at your end to parse the data?
  8. S

    Count Separated List

    Too bad didn't know about your great one-liner before. Thanks. Hopefully will remember if I have a need in the future.
  9. S

    Count Separated List

    I misread the original post which I thought was trying to count the number of occurrences of the sep char. In my example, I was counting the number of occurrences for the sep char. I suppose one could modify the function to add 1 to the result? Or maybe this isn't the right function for the...
  10. S

    Count Separated List

    Function StringCountOccurrences(strText As String, strFind As String, _ Optional lngCompare As VbCompareMethod) As Long 'http://codevba.com/visual-basic-source-code/vb-string/count_occurrences_in_a_string.htm#.WCd9nYL3ieM ' Counts occurrences of a particular...
  11. S

    VBA Debugging - F8 sometimes acts as F5

    I have experienced that usually when the next line of code is calling calling a function using the File Dialog Picker and then after that popup closes the program continues running as if step mode wasn't in use.
  12. S

    How to find the Max Value of Different Fields of a Query?

    This function from Allen Browne may work for your situation. The included link has an explanation. Put the code in a standard module. To use in your query for the column Last Correspondence Sent: LastCorrespondenceSent:MaxofList([More Information1], [More Information2], [More Information3]...
  13. S

    How to Click on a System Popup that is behind other windows

    Based on your response, the best course of action is to End Task for Access in order to get rid of the system popup since doesn't seem to be possible to bring it to the foreground for clicking and that even if it was in the foreground, clicking would not help anyway, correct?
  14. S

    How to Click on a System Popup that is behind other windows

    I briefly saw a system popup and then my access "froze" as it is waiting for me to click on one of its buttons. I tried minimizing Access, and it won't respond. I tried pressing Alt+Tab and can see and let go of the keys on it, but it still won't become the active window and stays behind the...
  15. S

    PDF Merging Work Around with VBA for digital signatures

    Isaac, here is the code I tried: Sub View_Tech_Recalls() 'https://www.mrexcel.com/board/threads/using-a-macro-to-open-then-print-a-webpage.596387/ 'https://www.access-programmers.co.uk/forums/threads/pdf-merging-work-around-with-vba-for-digital-signatures.314065/post-1722818 '20200930 Dim ie...
  16. S

    PDF Merging Work Around with VBA for digital signatures

    Hi TheDBGuy, had a chance to try the code from your link and it doesn't seem to find the keyword "Signature". However, after looking at the text via notepad and doing a find in there as suggested by Isaac, the keyword shows up not only in the original pdf but in the one that I processed via...
  17. S

    PDF Merging Work Around with VBA for digital signatures

    Thanks. May not get to this until next week now due to a family issue. Will let you guys know the result once I have a chance to return to this.
  18. S

    PDF Merging Work Around with VBA for digital signatures

    Hi Isaac. Thanks for the suggestions. I will take a look into the ie and notepad. Your notepad suggestion is similar to what pdftk did as it had a command to search for the Signature field and save that to a text file, so maybe if I use your method, the file will open via vba whereas the...
  19. S

    PDF Merging Work Around with VBA for digital signatures

    Background: Our department does not have Adobe Acrobat Pro. We are using Bluebeam Extreme. I have been successfully using PDFTkServer through VBA to automate the process of merging PDF files. Due to the current situation, there is now an increase in the number of digitally signed pdfs...
  20. S

    Alike query with blank fields

    http://www.codevba.com/msaccess/sql_alike.htm#.X1p-YXlKiUk If I read this correctly, is it just allowing you to use % _ interchangeably for * ? ?
Back
Top Bottom