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 --
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 --
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...
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 --
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...
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 & ";" &...
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...
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 --
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 --
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 --
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...
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 --
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.