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)...
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...
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...
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...
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...
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...
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...
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...
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...
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.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.