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 Wanet Telecoms Ltd 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. DeGeneral

    Automating website login via VB/NET using InvokeScript

    I am trying to automate the login to a website. I need to input the username and the password and then run the Javeascript which submits the form. Here is my partially working code: WebBrowser1.Document.Forms(0).All("username").SetAttribute("value", myUserName)...
  2. DeGeneral

    Updating my webscraping program from VB6

    I have an old VB6 program in which I log in to a website via a vb6 webbrowser object and then scrape the data that I need (up-to-date prices) using an MSINET control. I run this once a day and the VB6 version works fine. I have tried to update this program to VB.NET but I find that when I log...
  3. DeGeneral

    Can DataSet objects support multiple OldDbDataAdapter objects?

    I am upgrading some VB6 programmes to VB.NET(2005). My main programme feeds data to a number of MSAccess tables. I want to know if I need a separate DataSet object for each table or can I use just one DataSet object to link to the Database and then link to each table with a different...
  4. DeGeneral

    Posting data to MS Access using VB.NET

    Thanks earthandfire, I am using Visual Basic 2005 which gives me a non-conversion error message that "the Data control cannot be upgraded because it depends on DAO, which is not supported in Visual Basic 2005." I have tried to set variables to this object type but could not find it available...
  5. DeGeneral

    Posting data to MS Access using VB.NET

    Does anyone know of a simple VB project that I could download which posts data to MSaccess? I am trying to upgrade some programmes from VB6 to .NET. I had previously used DAO data objects to post my data to MS Access. These are not supported in .NET, so I have to move to ADO. However, I have...
  6. DeGeneral

    How to automate function launch after form has loaded?

    I find that my recordsets contain no data when I try running that data processing code directly from form_load. However, when I call the same function by pressing a CommandButton, the recordsets have data. This leads me to conclude that, for some reason, the form needs to complete loading before...
  7. DeGeneral

    How to automate function launch after form has loaded?

    I am using a "Data" object (from the toolbox). That makes it a DAO object I think. Can that be set inside the function? If so, how?
  8. DeGeneral

    How to automate function launch after form has loaded?

    I need to automate a data processing application on a remote PC such that it can be launched from the Windows XP scheduler. The program is written in VB6. It works fine when I run it manually - but I need to automate it. I have tried running the data processing code from "form_load" but it...
  9. DeGeneral

    Status Bar on WebBrowser Control

    Does anybody know how to display or access the text in the StatusBar in a WebBrowser control in VB6?
  10. DeGeneral

    Any Alternative to "Control F" on a webbrowser component?

    Thanks strongm. This works really well for most webpages. However, there is one important webpage I need to access which throws up the message: "object doesn't support this property or method". The offending line of code is: "Set mytextrange = mywebbrowser.Document.body.createTextRange". Any...
  11. DeGeneral

    Any Alternative to "Control F" on a webbrowser component?

    My program, written in VB6, needs to find and highlight the location of some text on a webpage which is in a webbrowser component in my program. I have been using the {ctrl + F} (i.e. ' SendKeys "^f" ') find function. This works in isolation - but only when I tab the focus to the command...
  12. DeGeneral

    Summing Sequential Records

    I see your problem FrankieM. Your table is so big that using the sum command a million times in a subquery overloads the buffer. Your approach of using the table to do the work record-by-record sounds about right, but I can't see why that wouldn't work.

Part and Inventory Search

Back
Top