A family of Microsoft relational database management systems designed for ease of use.
For some reason the Submit button does nor react anymore. What is wrong?
Imb.
PS. It works with the above simple text, but not with my "full" reply.
I found the problem: the Submit button did not function when I included a quote to the original text.
Hi JBFresh,
I use the function URLDownloadToFile to download almost any internet page that I am interested in. The downloaded HTML-file needs some after-processing to extract the data that you are looking for.
This process can be automated completely, but in most cases this data is displayed first in a (dynamical) form in Access for further processing or checking. An "Apply" button finally is used to store the accepted data.
The declaration of URLDownloadToFile can be placed in a general module:
Declare Function URLDownloadToFile Lib "urlmon" Alias "URLDownloadToFileA" _
(ByVal pCaller As Long, ByVal szURL As String, ByVal szFileName As String, _
ByVal dwReserved As Long, ByVal lpfnCB As Long) As Long
Imb.