Recent content by option

  1. O

    ActiveX WebBrowser - Prevent link from opening new window?

    Hey guys, Is there a way to prevent a link from opening in a new window in an embedded ActiveX web browser control? I'm trying to make a "desktop" app so to speak, where we can access a webpage we use on a regular basis all in one program. It's not a huge problem to keep IE open with access...
  2. O

    Print two reports?

    That's exactly what I needed! Thanks a million!
  3. O

    Print two reports?

    Hey all, I have two reports that need printing, one showing the full record ID, the other showing the first 5 digits. I'm basing the reports off of the same query, and what I would like to do is something like the following pseudo-code: do until rst.eof Print report A for record 1 Print...
  4. O

    Can you display a webpage on a report?

    I haven't tried printing the form. I'd like to avoid that since what we need is the document that would be displayed in the web browser control with todays date "stamped" on the document itself. Sort of like a "photocopy" of the original, with todays date "stamped" on it. The only solution I...
  5. O

    Can you display a webpage on a report?

    That's what I currently have in place, but that'll only print the contents of the web browser (which is great), without the date overlay I need. I'm trying to automate a process in which an employee takes a print and manually stamps the date to it. I'm not sure how possible it is, but I'm sure...
  6. O

    Can you display a webpage on a report?

    Hey guys, I'm trying to print a document from a web browser control in my form, but I need to lay a label or textbox over it with todays date. Example: I've searched Google for "car parts". I now need to print the results page with todays date in the top right corner. Is there a way to link...
  7. O

    Function like Nz for zero-length strings?

    Hey everyone, I'm stuck on getting data into a table. I'm importing data into a recordset and there is a date field which is optional in some cases. When passing that date from the source table to the destination table, I get "type mismatch" for an error when a blank value is passed. Now, is...
  8. O

    ActiveX Control: WebBrowser resize help?

    Doesn't seem to work for me....interesting. Thanks for the suggestion though, I'll keep working with it. My form itself keep ballooning up, but my web control stays the same when I copied that code in.
  9. O

    ActiveX Control: WebBrowser resize help?

    Yes I have done that, still no dice :D
  10. O

    ActiveX Control: WebBrowser resize help?

    Hey guys, Is there any way to resize an ActiveX web browser control on a form with vba? I've got my form resizing using the module floating around the internet by Jamie Czernik, and that works great, but it doesn't resize my web browser. I also tried Me.WebBrowser0.Width = 17775...
  11. O

    Internet Explorer "scrape"

    darbid - that seems to have done the trick! thank you for your help once again!
  12. O

    Internet Explorer "scrape"

    You're method does work for that html doc you provided, along with a few other sites I've tried(this forums search page was also successfully automated on my end). I suspect that since the form name on the webpage is the same name as the combo box, except they're cased different. The form is...
  13. O

    Internet Explorer "scrape"

    All the javascript does is lock disable objects on the page based on the selection made. Java and I don't get along (mainly because I never learned it!), so I'm in the same boat you're in. I'll post the script: function disableCriteria(frmThis) { var i,j,k; i=frmThis.REPORT.selectedIndex...
  14. O

    Internet Explorer "scrape"

    I tried that and got "Object doesn't support this property or method". The fact that it's running java upon selection wouldn't make a difference, would it? onchange="return disableCriteria(this.form)"> that's in the line that starts with "<select" in the html.
  15. O

    Internet Explorer "scrape"

    Alright, I'm back at this with another question! I'm trying to select a value in a combo box from my database. Ex: Combo box has 4 options, and by default, my user should always select "2". They could select it on their own, but I'd like to automate it. The following 2 snippets are 1)the html...
Back
Top Bottom