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 strongm 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: tx12345
  • Order by date
  1. tx12345

    VB classic > VBA

    thanks for the reply.
  2. tx12345

    VB classic > VBA

    Hi i have this code which is supposed to record all the urls hit during IE web navigation into a file sort of like the cache file IE produces. but it is in VB5 and i am using VBA. the part i can't get a handle on is where the actual web page navigation is taking place, or how the routine is...
  3. tx12345

    Access Privacy Report contnets with VBA

    Hi Is rhere a way to engage the privacy report in IE and then copy its contents to a text file? I can see the URL i am looking for in the Privacy Report window, but don't know yet how to access it. thanks! tx
  4. tx12345

    Can someone explain this history discrepency betw IE and FF?

    Hi the location of my IE index.dat for cache URLs is here: C:\Documents and Settings\Administrator\Local Settings\Temporary Internet Files\Temporary Internet Files\Content.IE5\index.dat Yet even after viewing its contents IE still does not record the complete cache link. here is the issue...
  5. tx12345

    Code to Log URLs - IE history incomplete???

    thanks for the reply i am not sure where to place your code - in a user form with a webbrowser? tx
  6. tx12345

    Code to Log URLs - IE history incomplete???

    Hi apparently IE does not have a complete listing of all URLs hit during navigation. for example, using IEHistory View, when i visit this one site, and hit just 3 pages, IE shows only 4 links traversed. However, when I use another prog, SoftX Logger, which is independent of IE, it logs *18*...
  7. tx12345

    web form issue ie navigation

    hi i ran into a field that even though the text fills in with the code below, when the form is submitted it still thinks the field is blank. here is the code i use most of the time: Set ff = .Document.getelementbyID("field1") ff.Value = "1969123" or Set ff = .Document.all.item("field1")...
  8. tx12345

    Upload a gif / jpg pic with VBA

    Ah, so it is like this: Set fs = CreateObject("Scripting.FileSystemObject") Set a = fs.CreateTextFile("c:\script.dat", True) a.WriteLine Range("a1").Text 'username a.WriteLine Range("a2").Text 'password a.WriteLine "binary" '<< added here a.WriteLine Range("a3").Text...
  9. tx12345

    Upload a gif / jpg pic with VBA

    PHV not sure what you mean the above code works perfectly for text file but not pics. wndering if there is an example to successfully upload a pic thanks
  10. tx12345

    Upload a gif / jpg pic with VBA

    I've been using the following code for all sorts of files, and it works great, but when i try to upload a pic the image gets distorted and only a small portion of it uploads. I was looking for a better idea if possible Set fs = CreateObject("Scripting.FileSystemObject") Set a =...
  11. tx12345

    add record then send form contents to email

    hi I have been trying to figure out how to, with one click, simultaneously send the contents of the form to the access DB, and then to the email. by themselves they both work great. i have tried to combine the two routines, but of course it doesnt work: here is the form mail code: <% Dim...
  12. tx12345

    Simple ASP to MySQL form sample sought

    Hi i have a simple task. I have an html form with user contact info (bane, email, and comments) that where once a submit button is clicked i would like two things to happen: to have the data stored in a MySQL database, and to have the contents of the form sent to me via email. i need to use...

Part and Inventory Search

Back
Top