Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. djRixMix

    Proble with Droplist properties in Firefox

    In IE 8.0 The code below works perfectly In Firefox The code returns an UNDEFINED value for the KEEP property. Is there a solution to this problem??? :) =============================================================== <html> <head> <title>test</title> <script type="text/javascript">...
  2. djRixMix

    How to get HTML with VBA ?

    I found a simple solution: see my thread: http://www.tek-tips.com/viewthread.cfm?qid=1497399&page=1 Eric
  3. djRixMix

    How to get HTML with VB/VBA

    I spent a lot of time trying to find a way to do this and, after giving up, I stumbled on the solution while looking for something else... Here it is: '***** Begin of Code ******* '*** '*** '*** Call: a = Fetch("http://www.google.com","c:\google.html") '*** '*** return TRUE on success '***...
  4. djRixMix

    How to get HTML with VBA ?

    Hello Steve, I tried to use the code you posted in your last post and it did not work... I tried: ' Go to Page WebBrowser7.navigate url:="http://www.altavista.com" ' Get HTML Do DoEvents Loop Until Not WebBrowser7.Busy txtSource = WebBrowser7.Document.all(1).innerHTML It does...
  5. djRixMix

    Programmatically create a PDF from Access 2002

    Hello Nibbler21! About PDF opening automatically, read the March 20th post right before yours!!! I don't think you can hide the "Print Window" while the PDF is being generated... :) DjrixMix
  6. djRixMix

    Programmatically create a PDF from Access 2002

    Unfortunately I haven't a way to programatically prevent Acrobat from opening. The only way I found was to manually modify Adobe's Printing Preferences and uncheck the "View Adobe PDF results" check box... Anyone has an other solution that does not involve SEND KEYS? :)) Eric
  7. djRixMix

    Programmatically create a PDF from Access 2002

    Ok... I'm afraid I won't be very helpful on this one... First: I never tested my solution with Acrobat 5 nor Access 2003 so I'm not even sure it works. Second: I don't have a clue what is installed with the "full" version of Acrobat but I assume Writer is included. Third: You will have to...
  8. djRixMix

    Programmatically create a PDF from Access 2002

    Would it be too much to ask what the error message is? ;)
  9. djRixMix

    Programmatically create a PDF from Access 2002

    The solution I posted works with Adobe 6 and Access 2002 without having to install anything else. I can't imagine why it does not work on your station. I even tried it on stations where the user is not "administrator". Is it possible that the name put in the new registry key is not the exact...
  10. djRixMix

    Programmatically create a PDF from Access 2002

    If anyone finds out how to solve Giannit's problem let me know!!! I'm no Excel guru but I think that it should apply to any program. Here's how it basically works: You must set a Registry entry that contains the complete name of the current application ("c:\fullpath\msaccess.exe") and the...
  11. djRixMix

    Programmatically create a PDF from Access 2002

    HERE IS THE SOLUTION AT LAST!!! AT LONG LAST!!! WORKS WITH ACCESS 2002 and Acrobat 6.0 and up... '=========================================================== ' Code begins here ' ' The function to call is RunReportAsPDF ' ' It requires 2 parameters: the Access Report to run '...
  12. djRixMix

    Programmatically create a PDF from Access 2002

    Environment: Microsoft Access 2002 and Acrobat 6.0 on Windows XP. I'm writing a progran that creates a massive amount of reports to be sent via email to differents persons. I am trying to output these Access reports directly in PDF files without any intervention whatsoever from the user but...

Part and Inventory Search

Back
Top