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 bkrike 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: *

  • Users: jumpjack
  • Content: Threads
  • Order by date
  1. jumpjack

    Using VBA to convert an HTML file into PDF

    I wrote a macro which downloads some web pages to my HD; now I want to convert each of these pages into a PDF file, and finally to concatenate all PDFs into a single one. Is this accomplishable in VBA? I only find code snippets to save Excel/Access/Word files into PDF! -- Jumpjack --
  2. jumpjack

    Stroing web page into variable

    Can javascript store into a variable the content of a page retrieved from an URL? -- Jumpjack --
  3. jumpjack

    How to get SendTo path?

    Let's suppose I add my program to SendTo menu, in such a way I can "send" to it any file just by right-clicking on the file: how can my program access the path of the right-clicked file? Looks like it is NOT in the command line...? -- Jumpjack --
  4. jumpjack

    VBB, VBA, VB.NET,... ???

    Visual Basic, Visual Basic for Applications, VB.net... what are the differences among them? Does it exist a web page which explains it in detail? I just wrote my first VB Express 2005 program: now how do I distribute it? What do my user need to use it? Is the .exe enough, or do they need some...
  5. jumpjack

    Reading text from PDF

    Is it possibile to use VBA to extract text from PDF files? -- Jumpjack --
  6. jumpjack

    Retrieving web page

    I have this web page, and I'd like to download also its sub-pages, usually accessible by clicking the button. How to accomplish this? http://www.cinematocasa.it/palinsesti.asp -- Jumpjack --
  7. jumpjack

    Searching and counting documents

    I found out how to look for specified documents and how to count documents having specified values in specified fields, in a fast way: use db.SEARCH function . Example: How many documents use "MainForm" form and have "7" value in "DocIcon" field? That's easy: Dim session As Object Dim db...
  8. jumpjack

    How to look for integers?

    Why does this VB line returns a value if CAMPO is the name of a field and VALORE is a possible valule for that field, but it returns "0" if CAMPO is the name of another field, and VALORE is a possible value for this other field? Set GlobalCollection = db.SEARCH("@Contains(" & CAMPO & ";" &...
  9. jumpjack

    Download URL overriding cache

    I need to periodically download a file from internet, but I don't want to see the cached one, I need the file to be always the updated version. How can I accomplish this task? I'm trying several methods, none works. This is a RapidQ source (a VB-clone, quite similar in syntax to VB): $DEFINE...
  10. jumpjack

    How to use db.Search function?

    Where do I find the complete syntax of the first parameter of NotesDatabase.Search function? In other words, how can I get db.Search function to retrieve all documents containing a selected value into one field? -- Jumpjack --
  11. jumpjack

    Sending keypresses to another application

    How can I have my application "simulating" pressing keys in another window? I need to programmatically input my password into an application after I programmatically started it. How can I accomplish this task? -- Jumpjack --
  12. jumpjack

    How can I count unread documents?

    How can I access the count of unread documents from an MS Access macro? Can I also know which documents are unread without parsing all of them? -- Jumpjack --
  13. jumpjack

    Lotus autologin

    I'm currently using this code to access a Lotus Notes database from within Microsoft Access: Set session = CreateObject("Notes.Notessession") Set db = session.GETDATABASE(SERVER, DBNAME) If db.ISOPEN = False Then MsgBox ("Impossibile aprire db '" & DBNAME & "'") End If At execution of...
  14. jumpjack

    How to enable email notifications?

    I guess, by reading fields names in my Lotus database, that program supports email notifications. But, how to enable them? If it is not actually possible, could I "emulate" them using an external application to monitor db updates through COM programming? -- Jumpjack --
  15. jumpjack

    Accessing undocumented libraries

    Using integrated object viewer in MS Access, I found that I have some interesting libraries installed on my system; for example, "ECEMSGLib - Motorola Email Message Centre Typelib 1.0", which "exposes" an "Email" class with methods like NewMail, SetSubject,... If I want to write something like...
  16. jumpjack

    How to access unknown APIs in Access?

    I'm quite new to API programming from within Access in VBA, so it's not yet clear to me how to access an external library using CREATEOBJECT or similar: at this moment, I can just copy&paste some code I find around and tune it. Browsing around available references in Access I found some...
  17. jumpjack

    PC locking at startup due to HD failure

    My machine keeps stopping at startup claiming for a "damaged file" \systemroot\system32\config\software . Sometimes, using "restore last working configuration" option, I am able to start, but not always; other times I have to start in "temporary mode" (sorry, don't know exact translation of...
  18. jumpjack

    HLP and CHM files in Access

    When pressing CTRL+F1 from within code editor in Access 97, I often get an error about a missing "DAOsomething.chm" or "VBEsomething.hlp" file . I guess VBA help has not been installed on my machine; are these files available somewhere for download? Calling my administrator to get Online Help...

Part and Inventory Search

Back
Top