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: *

  1. mojorourke

    Scraping Web Pages Using the VB WebBrowser Control

    The silent property of the webbrowser control suppresses dialogs when set to true - it has no effect on critical errors or security alerts
  2. mojorourke

    Scraping Web Pages Using the VB WebBrowser Control

    Yeah, I needed something that could prevent or trap the javascript errors. I have a kludgy work-around for now. I wrote an activeX Exe that uses SendKeys to send an "N" character every second while the page is loading. This allows me to scrape the data in an unmamed mode, but I can't...
  3. mojorourke

    Scraping Web Pages Using the VB WebBrowser Control

    Thanks for the response. I'm not sure what to do with this code. I get an error as soon as the page loads with a modal dialog that pretty much blocks me from doing anything until I click "N" for no. The page is someone else's - I don't have authority to update it.
  4. mojorourke

    Scraping Web Pages Using the VB WebBrowser Control

    Hi: I'm writing an application that parses the text of an HTML page using VB 6 and the webbrowser control. The page I'm trying to get has two javascript errors - one at the beginning and one at the end - maybe intentional. What I need is a way to load the page without human interraction -...
  5. mojorourke

    Problem Using VB DLL's from ASP

    Thanks guys. The tip from John Yingling did it. I needed to use DCOMCNFG.EXE utility (found in the WINNT\System32 directory) and set access and application launch permissions. The article at MSDN is: http://support.microsoft.com/support/kb/articles/Q156/2/23.asp again, Thanks for...
  6. mojorourke

    How can i insert null date values in SQL

    Update <tablename> Set <columnName>='<NULL>' Where <columnName>='01/01/1900'
  7. mojorourke

    Getdate Function

    try this in the query analyzer: declare @CutOffDate varchar(10) set @CutOffDate= convert(varchar,getdate(),101) select @CutOffDate
  8. mojorourke

    any constructive ideas accepted thanks in advance

    I came into computers in a similar way. After a knee injury I was unable to do electrical work any longer. I decided to go back to school and get a degree - which I got at age 41. Going to school is a good approach. You meet other people in the field and learn things you wouldn't know...
  9. mojorourke

    Problem Using VB DLL's from ASP

    Hi: I seem to have this on-going problem with activeX dll's that I've created in VB 6. I've created two VB 6 ActiveX DlL's - one for creating an Excel spreadsheet, and another for creating an Excel Chart. They both work fine across the network when called from a VB program, but the call...

Part and Inventory Search

Back
Top