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




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?




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
Disable Click Sound In A Webbrowser
Do anyone know how to
disable the default click sound into a webbrowser via code?

thank you

Silent Use Of Webbrowser (no Click Sound) ?
Hi,
I'm using webbrowser to navigate but the problem is that user can hear a "click sound" whenenever I use webbrowser1.navigate "page". I would like to disable this sound but I don't know how.

I know it's a system sound but maybe someone knows how can I switch it off. Is this setting stored in registry?

Please helpppppp




Edited by - marcin9098 on 2/8/2007 4:09:18 AM

CommandButton - How To Sound A Click Sound When Pressed?
How to make a CommandButton to sound a click sound when pressed?

Webbrowser With No Sound?
Is there a way to have the sound muted with running a program with a webbrowser?

WebBrowser Annoying Sound!!!
each time i change the internet link of my program there a annoying sound it a 'CLICK' that you hear but i change the picture each 500 milisec using a timer...
so you hear a click at each 0.5 sec... is there a way to desable the sound of the webbrowser.navigate or webbrowser.navigate2 command?!?

Playing A Sound On Click
ok i want as much little code as posibble to make "Command1" play "nudge.wav" ok click

with no components just declerations if posible



.

Webbrowser Stop Flash Or Sound
Hey, quick question. I know it's been asked before because I searched, but I never really found a straight answer that worked, so I hope you guys don't get pissed for me re-asking.

I have a vb6 program that uses webbrowser to visit a web page similar to youtube (Plays .flv files and such). The thing is, I want to listen to music while the program is running, so can I either
A) Mute the sound of just the webbrowser or just that program. I don't care about the click sounds or whatever, I just don't want those flv videos to play the sound.
or
B) Can I somehow disable flash just for that instance of IE? I don't want this to affect IE on my entire comp, but just for my program. I realize that the movies won't play, but that doesn't matter. I just need the flash not to load so that the sounds won't play from the movies.

Any help would be appreciated. Also, if you know of a creative way to solve the issue other than the choices I have thought of, feel free to post that too.

Thanks in advance,
-Greatness

Webbrowser Control And Sound Question
Hello

Please I'd Like To ask a question about webbrowser control

you know in webrowser control when you click a link there is a sound generated "tick" that sound heard when clicking a link

how can i make the sound disappear without changing the sound configuration of the windows from control panel

i know it's silly question but please can someone help me with that?

Thanks
Adel

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

How To Stop The Sound Webbrowser Produces
I have a webbrowser control which I use to navigate by clicking (by code) some links. The webbrowser control is using InternetExplorer and InternetExplorer produces a "click" sound when we click on a link or a button.

How can I avoid that? I just need it to be silenced.

Hide WebBrowser Clicking Sound?
I use a hidden webbrowser to register one of my apps, and during the process, enter the data of the user, such as name and address to an online form.  The only issue, is that when the user choses this option the automated process speeds through the application, and clicks on the relevant buttons.  THis works great, except that there are about 5 buttons which are clicked on in succession, and the sound of clicking is very obvious, and slightly annoying.

Is there anyway to mute these sounds?  It's only a little click, but it would be great if i could get rid of it!

Many thanks

BB

How Add Sound Efects To The Click Event ??
How add sound efects to the click event ??

I want add a sounds effects to click events .. How i do..????

Thks..for your help..

How Do I Add A .wav Sound On The Click Of A Command Button??
Ex. I got a .wav called scarry, do I need to move it to the same folder as my project, and what is the code I would use to call it when the button is pressed??

I Sound Like A Tard For This XD I Cant Remember How To Do A Mouse Click
VB Code:
Private Sub Command1_Click()Inet1.Execute "http://www.neopets.com/desert/shrine.phtml"If "To watch the unveiling of the shrine, click here" Then   End Sub


and i need help getting the place for the button

[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

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)

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

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 .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

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?

Webbrowser Click Submit Button
I have a button on a webpage. I want to automaticlly click the button via code.

I am using an HTMLdocuement but I can not find this button to be able to click it.

I have in the past used the following code, but with the button below no luck.
WebBrowser1.Document.getElementById("testbutton").Focus
WebBrowser1.Document.getElementById("testbutton").Click


Here is the actual HTML code for the button I am trying to click.

<input onclick="submit()" class="textbutton" value="Track it" src="/images/btn_trackit.gif" type="image">


Any ideas?

thanks,

Dean

Disable No Right Click For Webbrowser Component
Who know how to disable the right click from webbrowser component in vb6?

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