Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
 
  HOME    TRACKER    Visual Basic




WebBrowser .Click Issue /Question


Is there any other way to click a button with the webbrowser other then

WebBrowser1.Document.All("submit").Click

I know "submit" is the right field name yet i get this error
"object doesnt support this property or method"


Any work arounds? or any suggestions ? thank you




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
Webbrowser And Right Click Code Issue
Hi all,
I made some code to right click and it works... except when i try to use it for for what i want, which is inside the webbrowser.. can any one see why this code doesnt work ?
Do i have to supress the ie right click some how in order to get my code to run ?


Code:
Private Sub WebBrowser1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)

If Button = 2 Then
MsgBox "here"
frmRightClick.Show
frmRightClick.Left = txtTmpH.text * 15
frmRightClick.Top = txtTmpL.text * 15
Else
DoEvents
End If
If Button = 1 Then
Unload frmRightClick
End If
End Sub

Webbrowser DocumentComplete Issue
I have created a program where I can automatically fill up form and submit, but there are times that I got an error when the program tried to fillup the web form adn submit it.

I have put the code to fillup the web form inside the webbrowser documentcomplete event

e.g. Private Sub web1_DocumentComplete(ByVal pDisp As Object, URL As Variant)
'Fill up form
with web1.document
.all("UserName").value=text1.text
.all("pass").value=text2.text
.all("Submit").click
end with
End Sub

this code work sometimes and sometimes get an error saying Object variable not define....

I guess the computer or program work faster than the loading of the webbrowser document...

Is there a way to do this like doing some loop until the webbrowser completely loaded?

WebBrowser Control Issue
Hello!

I'm developing a application which will display some menus made in HTML with WebBrowser control.
I made everything, including translating clicks on links in HTML to VB events. But there is a thing that I can't do:
I don't want my users to freely modify my HTMLs. I rename it for xxxxx.dat, but anyone can click with button 2 and choose "View Source", modify the code, save and **** me... =(

My question is:
There is some way to make the menu doesn't appears when user hit the button 2 of mouse in the WebBrowser control?

WebBrowser Control Issue
I created an ActiveX which views currently just TIF and HTML files (giving a number of custom-designed functions). To show the HTML, I include a WebBrowser control, and display the image in there.

I need to show PDF files now, and would like to do so in the WebBrowser control (Acrobat must, of course, be present on the system). Problem is, while it works fine with Win 98 and IE 5.0, it doesn't in Win 2000 and IE 5.5 or 6.0. The problem seems to be IE - as backing up to IE 5.0 on Win 2000 solves the issue.

Has anyone heard of any problems with the WebBrowser control in IE 5.5 or 6.0 (and being used inside of a custom ActiveX control)???

Thanks for any help you can render.

Listview Click Issue
Basically here is my issue.
I have a listview populated with large icons that make up the navigation of a certain part of my application.
When someone clicks one of the icons the code fires in the listview_ItemClick
before the mouse button is released.
So when someone is dragging one of the navigation buttons to re-sort it the event is firing in mid-drag.

At first I wanted to just disable dragging which appears to be impossible.
So now I am trying to find out how I can wait to fire the click event until after the user takes their finger off the mouse button (mouseup).
And if they just dragged the icon I wouldn't fire the click event since they were dragging and not selecting.

Thanks in advance

Issue With The Webbrowser Control, And Frames.
Specifically I am trying to access an HTML frameset with the WebBrowser control, I want to automate some parts of a web application while still allowing user interaction with the web application.

In one of these frames data is loaded (I believe from JavaScript, but not sure).

There is a username and password box that I need to fill in from my application and then submit the form.

Basically I am having troubles accessing the underlying code that is there...

If I open the site in IE and Right-Click > View Source I can see the HTML form just fine. However, I am having trouble accessing any source other than that of the framest.

Any ideas?

The URL in question is https://watson.t-mobile.com/watson.html

Thanks to anyone in advance

-BoaZ2020

Webbrowser Control Timing Issue
Any ideas on how to determine when a page is fully loaded in the webbrowser control before proceeding?

I have tried using .busy = T/F? and it doesn't seem reliable to me. If a website loads the page THEN loads an ad/banner, then the webbrowser control becomes busy again for a split second.

I've created a global variable that is switched to "done" or "loading..." in the NavigateComplete2 and BeforeNavigate2, respectively. This, too, will not work 100% with what I am doing for some reason and is not reliable.

I want the program to wait until two certain input fields come up on the page then I want to fill those fields with text. Then I want it to hit the submit button. All of my code works fine when the page is already loaded and sitting there on the webbrowser control. However, if I try to put them in the same sub using something like "doevents" after the .navigate command, it tries to find the input fields too quickly before the page loads. Here is my code example that doesn't work 100% of the time (only works if the page loads extremely fast!)


Code:
WebBrowser1.Navigate "http://www.website.com/somepage.html"
DoEvents
While WebBrowser1.Busy = True
DoEvents
Wend

WebBrowser1.Document.Forms("MessageForm").elements("subject").Value = "This is a subject"
WebBrowser1.Document.Forms("MessageForm").elements("body").Value = "This is the body"
Eventually, I would want it to submit to my webpage then wait again (in the same subroutine) for the return page to come back saying the website got the message I just sent to it. Then from there, click another button and wait once again. So you can see why I'm needing to have it know EXACTLY when the ENTIRE page has loaded.

It gives this error about 10% of the time:
Run-time error '91'
Object variable or With block variable not set

Now, I could make an "on error goto" kinda deal and make it loop back up but that's tends to lead to ugly/inefficient/unreliable code as well

Any thoughts?

WebBrowser Control Memory Issue
First yes I know there are better ways of doing this but this is the way this project had to be done.

App visits 10k different pages.

So after it checks one it goes to the next to check it. The problem is the memory usage just keeps on increasing. It starts out around 13k by the time its done with the 10k pages it's over 600,000k so after the first few thousand pages it starts slowing down and down and down.

I have been googling and searching here. Only solution to the leak was to set it to Check stored pages every visit to the page but that won't help me since they are all different pages. It only clears when I restart the project but then the cycle of mem usage starts to build right back up.

I'm assuming caching each page in memory so is there a way to have it not store the pages or to clear them out every so often? Any solutions out there?

WebBrowser Control Sound Issue
Hello there!

We are thinking about adding something similar to a forum in our HTML help (Which is going to be a WebBrowser control that will navigate through local and external pages). However, the WebBrowser control refreshes every certain time and a "click" is heard whenever this happens.

My question is... Is there a way to mute this "click" in the WebBrowser control? The goal of the program is not to mess with the sounds of the system nor force the user to turn it off or anything like that. Could anyone please help me?

Thank you very much

Webbrowser Control Refresh Issue
Is there a method to force a webbrowser control to download a fresh copy of the navigated page? (rather than a cached copy).  

Here's what I'm doing:

I'm downloading an html page that loads a 1MB picture into a webbrowser control.  I'm timing the the load time so I can approximate the users actual connection speed.  

Any help would be greatly appreciated.

Thanks,
Harold

***You can't change your past, but you can change your future***

WebBrowser Object Scrollbar Issue
I am a "newbie" with respect to VB 6. My issues is, the scrollbar appears on right side of WebBrowser Object and I wish to remove it. Is this possible? If not, does anyone have a suggestion on how to hide it (i.e. underneath another object)?

Thanks for any help!

Matthew

Right Click Context Menu Issue
I have a project that displays several data items within a frame, and in a number of text boxes within that frame.

I have it set up to respond to left and right mouse clicks anywhere within the frame, and need it to respond identically no matter where within the frame and no matter what control the mouse is over when clicked. ( ie want only one mouse click function for the entire area ).

The left click works fine and the right click works fine unless over a text box, where I get the standard context menu popup.

In forums, I find the 'best' approach of subclassing the text boxes to kill the menu. I have tried placing a transparent label over the entire area and setting its zorder to insure that it is on top. Why does the top label control not catch the mouse click, rather than pass it thru to a text box below??

Issue Loading Pages With WebBrowser Control
Hello All,

I'm using the WebBrowser Control to load a web page and parse the HTML in my app using the MSHTML class. But I'm having an odd fluke that happens when I set the browser to load a page.

Here's the code:

Version 1

Code:
oIE.Navigate "http://www.website.com"
Do While oIE.Busy
DoEvents
Loop

Dim oDoc As MSHTML.HTMLDocument
Set oDoc = oIE.document

'code
'code
'....

Version 2

Code:
oIE.Navigate "http://www.website.com"
Do While oIE.readyState <> READYSTATE_COMPLETE
DoEvents
Loop

Dim oDoc As MSHTML.HTMLDocument
Set oDoc = oIE.document

'code
'code
'....

For Version 1, sometimes when I load the page, the loop would not wait for the page to fully load before continuing on to the rest of the code, which caused all kinds of errors. In Version 2, it seemed to wait until the page was loaded but then would hang on occasion. Is there something here that I am missing? The basic idea is just to wait until all the HTML comes in for the page so I can parse it.

Any help would be greatly appreciated.

- Jason O

Postmessage VS Webbrowser Issue (experienced Coders Only (I Think!))
I have a bug... Actually, not a bug, but I suspect something is missing in my code... I'm using a postmessage statement to send a click to a webbrowser - and it partially works. Very odd. More details to come.

I am pasting my current code so that people can use it:

I am first browsing to a web page and then getting the webbrowser's HWND.

Code:
Private Sub cmdNavigateUrlAndGetHwnd_Click()
frmMain.Webbrowser.Navigate "http://www.google.com/"
Call proWaitUntilWebPageFullyLoaded()

webhwnd = GetBrowserHandle(Me.hwnd)
End Sub

(tell me if you need the GetBrowserHandle procedure)

Now I click this command button which will send tons of click to the webbrowser (google.com), at random x,y positions on the page.

Code:
Private Sub cmdClickThePage_Click()
Dim i As Integer

For i = 0 To 1000
Call PostMessage(webhwnd, WM_LBUTTONDOWN, 0&, ByVal MakeDWord(Int(Rnd * 1000), Int(Rnd * 1000)))
DoEvents
Call PostMessage(webhwnd, WM_LBUTTONUP, 0&, 0&)
DoEvents
Call proWaitUntilWebPageFullyLoaded()
Next i
MsgBox "ended"
End Sub


I don't even need to use Winspector (or any other app) to check if the postmessages reaches the browser: when I click that command button, I can see the google page links (and buttons) flashing and getting focus one after the other. The problem is that they seem to only get focus without being clicked at all...

I've been trying to debug for some time now and I have no idea what to try next... Is sending a WM_LBUTTONDOWN and WM_LBUTTONUP enough? Must I use some sort of WM_MOUSEMOVE or something I don't know of?

I know this is a tough one. If you feel you can help, feel free to post.

(btw, I'm simply trying to master this postmessage method for clicking the mouse in a webbrowser. I know that a simple line of code (like this one: frmMain.Webbrowser.Document.Forms(0).submit.Click) could make a button click easily).

Thanks in advance, fellow programmers.

WebBrowser Control And Document Objects Lookup Issue In VB
Hi, there

I have tried to use WebBrowser Control in VB for some automation.

The problem I have is with the Document Objects lookup.

3 syntaxassume the form name is "abc", VB string variable FormName="abc"

msgbox WebBrowser1.Document.Forms("abc").Name
msgbox WebBrowser1.Document.abc.Name
msgbox WebBrowser1.Document.Forms(FormName).Name

the first two syntac works fine. but the third one never works...

I wonder what cause this and how to fix it.

The reason why I need to use a string variable is because I won't be able know the form name before runtime, and I certainly don't want to go through all Forms() collection to compare one after another to find the right now.

Another issue is that it seems there is no way to establish VB to VB callback style sub or function, right?

thanks in advance,

edmond

VB6 WebBrowser Object And The Open In New Window Issue [Cracked It Anyway]
I have a custom web browser that is nothing special jsut the browser object and a few basic controls (stop, refresh, back etc). It is used as part of a bigger project and works very well for my needs in all respect but one.

Some links open in a new window and IE6 is used... that kinda sucks as it undoes the whole reason for using my program.

How can I best deal with these links?

Ideally I'd like to find a way to open them in a new form within my project. I use a MDI and the "browser" is an MDI Child.

I've Googled on the subject but so far without success.

[vb6] Right Click In A Webbrowser
i disabled the ie right click...now i want to make my own right click with only "open" and "opne in a new page"...how can i do it?

WebBrowser Click
Is there a way to disable right click on the WebBrowser control? I don't mind if they can't click on the page at all, like an opague label over the box but that won't be infront... Any help is greatly appreciated

Webbrowser Click
Hi! Is there anyone here who knows how to simulate a click on a webbrowser control. The button to be clicked is inside a frame. I mean, I know how to click a button but how do we click a button inside a frame?

Click On WebBrowser
Is there any way to detect the click event on a link on a page that's being view?

Right Click On Webbrowser
How to disable the right click on the webbrowser control. ( no popup)

No Right-click On Webbrowser
Hello All

I have a webbrowser to view web pages but i only want it to view, the users can't be allowed to right-click for the function of saving target etc. Is this possible?

Thanx for your time and help

[VB6]Webbrowser && Right Click On A Link
i disabled the right click menu and i made my own menu...now i need a code for a button in the menu that when i click on a link it comes the menu "open in a new page"...can any1 help me?

[VB 6.0] Click Buttons With Webbrowser
I'm trying to make a program to upload images at deviantart, but i ran into some problems with choosing the category. It is a button where it says "Choose...", which i have no problem clicking, but then it opens a javascript (i guess) menu where you can choose from different categories, and finish with "OK" button to get back to the upload site. Look at the attached images to get an idea of what it looks like.

This is the html code which is changed when choosing a category:

Code:
<input type="hidden" name="catDesc" value="Please choose a category" id="catDesc"/>
and its the value property which is changed to i.e.: value="3D & Fractal Art, Fractal Art".
I can by using this code: MsgBox (WebBrowser1.Document.Forms("Form1")("catDesc").Value) get the text in that "label" on the website in a msgbox, and also see the changed category when i choose a new one, but if I for instance make this code: WebBrowser1.Document.Forms("Form1")("catDesc").Value) = "test" then nothing happens, which of course is understandable because I don't have authority to change in the label.
So this means I have to do it the hard way by going through the javascript popup, and that way choose the the category, but how could I do this?
(I've also attached the html code if anyone would need to look at that).
Thx for any help

Disabling Right Click On Webbrowser
i want to incorporate a webbrowser in my program but the user is able to right click on it enabling them to control it which could crash the program. How do i prevent the users right click resulting in the drop down menu?
thanks

Right-Click Menu In Webbrowser
I'd like to create my own right-click menu for the webbrowser control here's the code I have:


Code:
[General]
Dim WithEvents WebPage As HTMLDocument

Private Sub Browser_DocumentComplete(index As Integer, ByVal pDisp As Object, URL As Variant)
Set WebPage = Browser(index).Document
End Sub

Private Sub WebPage_onmousedown()
Dim Key As IHTMLEventObj
Set Key = WebPage.parentWindow.event
If Key.Button = 2 Then
PopupMenu mnuRightClick
End If
End Sub

[I got this code from someone on the forums a while ago. I can't remember who, but whoever it is - thanks!]

My question is - how can I detect whether the mouse is over text, a link, an image, etc? I'll need different menus for these things. Thanks in advance for any and all help.

Until next time, take care and God Bless!
-Tony

Webbrowser Click Submit
I am using the Webbrowser control and I am trying to submit a form. The button is a bit different then normal and nothing I have tried has worked.

Here is the forms submit button code.


Code:
<a class="artzBtn def" onclick="document.theform.submit();">Submit</a>


Any ideas on how to sumbit this kind of form? Thanks in advance.

Click Button To Log-In In Webbrowser?
Hey, I'm trying to create a program to log-in to a website and check for changes, but I cannot figure out how to click the Log-In Button? Any clues to how this is done?


Code:
Dim HTML As HTMLDocument
Dim HTML_INPUT As HTMLInputElement
Set HTML = WebBrowser1.Document


For Each HTML_INPUT In HTML.getElementsByName("username")
HTML_INPUT.Value = txtUsername.Text
Next

For Each HTML_INPUT In HTML.getElementsByName("password")
HTML_INPUT.Value = txtPassword.Text
Next

For Each HTML_INPUT In HTML.getElementsByName("Login")
HTML_INPUT.Click
Next

Click Image In WebBrowser
I tried searching around, but all other threads were unresolved. Is it possible to click an image in a webbrowser?


Code:
<input type="Image" src="http://blah.com/images/go.gif" value="-Go-">


That's the code in the webpage, can anybody help me click it, thanks

How To Click A Png Image (Webbrowser)
Hi to all.....I'm new in this forum I just want to know if there's some way to click a .png image (that submit some info already parsed)

here´s the code: (seems it's xhtml)


Code:
<dt>Members</dt>
<dd class="medInput"><label>User Name:</label> <input name="username" /></dd>
<dd class="medInput"><label>Password:</label> <input type="password" name="password" /></dd>
<dd class="btnSignin"><input type="image" src="http://graphics.members.tripod.com/lnlangley/btnSignin.png" /></dd>
<dd class="remember"><input type="checkbox" name="autologin" /><label>Remember Me?</label>&nbsp;<a href="/profile/profile.php?mode=getpasswd&amp;sid=4d6298b8af903c29fb172f04b6ea6ba2" title="Forgot your password?">Forgot your password?</a></dd>

<dd class="btnSignup">New Here? <a href="/profile/character.php?&amp;sid=4d6248b8ae901c29fb172f04b6ea6ba2"><img src="http://graphics.members.tripod.com/lnlangley/btnSignup.png" alt="Signup" /></a></dd>
</dl>
<input type="hidden" name="submit" value="Login" />
<input type="hidden" name="sid" value="4d6248b8ae901c29fb172f04b6ea6ba2" />
<input type="hidden" name="redirect" value="http://www.lnlangley.tripod.com" />
</form>
</div>

</div>


Also when i make a list of "images" displayed the Signup image won't appear...

Any idea how to click it?

PS: yay...i've used the forum search

Webbrowser Drop Down Click
The drop down box has 2 options:

Football
Basketball

Basically I check if the value is football, if it is i select basketball, and the page refreshes to the basketball options

This is the code that used to work:

VB Code:
If (web.Document.Forms(0).Item(8).Value = "0:FOOTBALL") Then            web.Document.Forms(0).Item(8).selectedIndex = 1            web.Document.Forms(0).Item(8).Click        End If


for some reason now, after the wbP.Document.Forms(0).Item(8).Click it just goes back to the football option,

anyone have any ideas?

Click Image In Webbrowser
hey, i have this image in a webbrowser control, and want to click it. the code is : <INPUT class=IMAGE id=_ctl6__ctl0_Rate2 type=image alt="" src="http://.com/Rate2g.gif" border=0 name=_ctl6:_ctl0:Rate2>
how can i simulate a click?

WebBrowser Right Click Menu
How can I remove items from the right click pop up menu in my WebBrowser control in my VB app and add my own?

I searched but couldn't find anything.

Webbrowser + Detect Click
Hello all,

I have got a little program that creates a generic html page. I have got real links and some things that aren't links, but should trigger a query in VB to create a new webpage.

How do i detect if a certain text is clicked (i could create buttons for it) and how do i parse that information towards VB?

Regards,

danielsan

WebBrowser Click Sound
anyway to make it go away or not play when navigating?

i have a program navigate to a couple sites without user input and it is making the click sound all the time which is annoying..

can i disable it or something?

How To Kill The Right Click Of WebBrowser?
does anyone know how to make it so that a webbrowser that is inside a frame (a visual basic control frame) have no right click menu? I still want the left click, but right clicking just won't do anything? Thanx in advanced.

WebBrowser. Click On A Button
I have a web page loaded into a webbrowser control and need to click a button on the page every 20 seconds

I have the Name of the Control  Name="abc1"   ID="abc1"

Would appreciate some help with the code to do this. eg  
Browser1.document.??? "abc1"  .click

Have tried real hard to find the exact method of doing this,
but nothing seems to work.!


kennedymr2


[VB6]Webbrowser && Right Click On A Link
i disabled the right click menu and i made my own menu...now i need a code for a button in the menu that when i click on a link it comes the menu "open in a new page"...can any1 help me?

To All Wizards Help Please, Webbrowser VBA Click Code
Dear Wizard,

I have a Excel VBA form with a Webbrowser1 control on it. After commmand webbrowser1.navigate AddproductsPage, I'm automaticly add product information in the fields available on the page (no problem).
After that I have to activate a "input image button".

Manually there is no problem however I want to do this by VBA code but for some reason I can get it working.

Info about the IMG Button:
<input title="Preview" type="image" alt="Preview" src="button_preview.gif" border="0" name="I1">&nbsp

I tried to analyse the Page by:
For I = 1 To MyBrowser.Document.All.Length
Set HTMLElement = MyBrowser.Document.All.Item(I)
If Not (HTMLElement Is Nothing) Then
If StrComp(HTMLElement.tagName, "INPUT", vbTextCompare) = 0 Then
Lst_Objects.AddItem HTMLElement.tagName + " Name=" + HTMLElement.Name, 0
End If
End If
Next I

After finding the image input object with name “I1” I could do something like HTMLElement.click however I cannot find the name “I1” in my Lst_Objects listbox I see a lot of other objects like all input fields however can not find “I1” object

please help

Middle (wheel) Click On A Webbrowser
how can i add middle (wheel) click and do that if u use it on a link (ad u can only use it on a link) it opens a new page??? (like the right click > open new page in internet explorer)

Click Buttons With The Webbrowser-component?
The form looks like this:

<input name="submit" type="submit" value="New" />
<input name="submit" type="submit" value="Load" />
<input name="submit" type="submit" value="Save" />
<input name="submit" type="submit" value="Open" />

As you can see all the buttons are named the same but with a different value.
I can't just use:
web.Document.All.submit.Click
To click on the "Open"-button for example.

How should I do to send a click from the Open-button?

Disable Click Sound In A Webbrowser
Do anyone know how to
disable the default click sound into a webbrowser via code?

thank you

Webbrowser - Unable To Click Button
I have a problem concerning clicking a button in a .asp webpage.
I stripped the code of the website and uploaded it to a host:
http://www.nt.kicks-ass.org/bw/test/index.asp
I can't seem to be able to click the button using WebBrowser.
Tried different things, all from this excellent forum but I can't make it work.

I really hope someone is able to help me.

Webbrowser Find And Click Hyperlink
Yes, I know you're thinking I just found this site and am posting this question without bothering to do a search for my answer. But believe me I've searched every tutorial on these forums and can not find the answer I am looking for.

I am trying to find a hyperlink in source code of a webpage and click it. This link has no id tags, no name tags, is not an image, and the tail end of the url always changes digits.

ccount</a></li><li><a href="http://umassd.facebook.com/privacy.php">Privacy</a></li><li><a href="http://www.facebook.com/logout.php?h=98bed71dbefecf99116ec43e21">Logout</a></li></ul></div><div id="page_body" class="pagebody fbframe"><div id="content_shadow"><div id="content" class="clearfix">

That is simply what I want to be clicked. Anyone please help! I can't get Regex to work and I believe there is an easier way. All I need is a loop that goes through the html looks for the word 'logout' or even 'http://www.facebook.com/logout.php' and get the whole url with the numbers and clicks it.

The link will always begin that way, and will always have the word 'Logout' right after it if that helps with the loop.

I'm not very lucky on forums with getting responses. But I appreciate ANYONE that can do this.

Click Buttons With The Webbrowser-component?
The form looks like this:

<input name="submit" type="submit" value="New" />
<input name="submit" type="submit" value="Load" />
<input name="submit" type="submit" value="Save" />
<input name="submit" type="submit" value="Open" />

As you can see all the buttons are named the same but with a different value.
I can't just use:
web.Document.All.submit.Click
To click on the "Open"-button for example.

How should I do to send a click from the Open-button?

Webbrowser Javascript Link Click Help
I'm trying to "click" a link on a webpage using a vb program and the webbrowser control. I have searched this site and many others but with no help. I know how to click a standard link but the one I'm working on now is javascript.

Here is the code from the webpage that I'm trying to click.

Code:
<a class="pagingLink" href="javascript:__doPostBack('ctl00$cpMain$pagerTop','5')">Next &rsaquo;</a>


I got the program to work by using

Code:
WebBrowser1.Document.links(0).Click

and I would continue to go this route but the index of where that link is changes each page load. any ideas?

and this method does not work for me

Code:
WebBrowser1.Navigate "Http://www.mywebsite.com?javascript:__doPostBack('ctl00$cpMain$pagerTop','2')

Webbrowser Click Text Link
hi i'm loading a page with the webbrowser control and I need to click on a 'next' text link. its not part of a form and the actually href link is a '#' which means you have to automate a manual type click in away.

so how would i mouse click the next link or simulate a mouse click so the app can run in the background

Mouse Click On Webbrowser Control?
I'm using the webbrowser control and i need the position x,y of the mouse and to be able to click on a link of a specific position.

so pretty much mouse needs to go to a link position and click the link.

Disable Right Click In A WebBrowser Inside VB6
well, im curious as to how you would disable the right click function from the webbrowser thats embedded inside ur vb6 application. cuz u cant set its properties to false for the menubar because it doesnt do ne thing. ne 1 have ne ideas?

Copyright © 2005-08 www.BigResource.com, All rights reserved