Hello all,
I have developed a few web applications that use CDONTS to deliver email via SMTP.
It appears that sometimes the SMTP service will get a backlog in messages to send, or the service will stop itself, etc.
I would like to develop a webpage that would show the status of the SMTP...
Suppose that you have a web application that allows the user to upload pictures (jpg only) to your webserver. However, you want to limit the size of the picture to 100Kb (or less) and the image cannot be larger than 640x480 pixels. Suppose that you were able to perform this reduction, but the...
Receiving an "end process" message from windows is about like issuing the END command within VB. Everything comes to a screeching halt & no events are fired.
I believe that I will have to learn how to hook a window, or perhaps subclassing it (I read that somewhere).
As for the FAQ222-2244, I...
Hello everyone,
I have received a request to try to intercept the VM_DESTROY message that is issued by the Task Manager when you end a process. Well, as you might have guessed, the process happens to be my application. I merely want to record in a log that my app was terminated and then...
Suppose that you have a collection of records in a table. Each record contains a column which has a non-zero integer amount in it. The amount can be positive or negative.
You are given a target amount. Your job is to retrieve all records in the table whose amount matches the target amount...
Does anyone know the corresponding registry key/value for
"Bypass Proxy Server for local addresses".
I placed "<local>" in the ProxyOveride key, but that alone
doesn't trigger IE 6 to bypass proxy server for my local
machine.
--Kevin
--Kevin
Actually, after doing some research... if we can determine
if any system-wide keyboard hooks are in place, and effectively
remove those hooks, our job will be done. We don't necessarily
want to create an exe to send to the client's machine to grab
all key input. In fact, that would be beyond...
Hello all,
We are curious about how soon or how late the keydown
event fires from the time that the keyboard interrupt
is generated when a user presses a key.
We need a way to grab the character as soon as the
interrupt is generated in order to capture the ascii
value before any other...
Hello all,
We are curious about how soon or how late the keydown
event fires from the time that the keyboard interrupt
is generated when a user presses a key.
We need a way to grab the character as soon as the
interrupt is generated in order to capture the ascii
value before any other...
I'm close to answering my own #2...
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Type = 1 ' binary
objStream.Open
objStream.LoadFromFile fname
Response.clear
Response.AddHeader "Content-Disposition", "attachment;filename=Test.MDB"...
Ah yes, I realized that after I submitted the question...
I suppose my question now could be divided into two parts:
1. Can you create an access database container within ASP and
stuff your recordset (from SQL) into it. I can't use ODBC
within access database as the user can't hit SQL...
I have an ASP that massages data to send to the client's
browser by changing the ContentType and disposition of
the page so that Excel will auto-open on the client's
workstation to view the data as a CSV file.
This works fine, however, the client has been saving the
data, then opening an...
Thanks Cassie & Robert,
I have been considering establishing my connection at the very
beginning the application and closing it when finished with the
first task. Then re-opening it each time that I need to issue a
command/data. Finally destroying the object upon closure of the
application...
Hello everyone,
Suppose you have a program that establishes a database connection
upon program startup and closed the connection when the user exits.
Joe User starts the application (which opens the db connection),
then goes to town for 3 hours... when he returns, the connection
has apparently...
Hello everyone,
Suppose that a program that will be accessing a database
quite often. What are the advantages/disadvantages of:
1. Opening the connection at the beginning of the program & closing it when you exit the program
as compared to
2. opening/closing the connection as needed?
--Kevin
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.