473,785 Members | 2,412 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Kill the tick sound on refresh?

My web app refreshes once a minute, using a meta refresh tag. Is there
a way to eliminate the tick sound emitted by IE when it refreshes?

Thanks for your help.
Nov 18 '05 #1
4 2945
"emitted by IE".... it's a clientside issue, not a serverside one.
--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com
"Bruce W.1" <no@direct.emai l> wrote in message
news:40******** *******@direct. email...
My web app refreshes once a minute, using a meta refresh tag. Is there
a way to eliminate the tick sound emitted by IE when it refreshes?

Thanks for your help.

Nov 18 '05 #2
Don't you hate that sound!?!? I would bet money that Microsoft was NOT
getting hords of protesting customers picketing outside Redmond and chanting
"We want a sound when we navigate!" I don't know where they get the idea
for some of these things they force on us.

But I digress...

I don't know if this would still work in .Net, but in non-.Net environments
(I've used it as recently as W2K and IIS5.0), you can use remote scripting
to get fresh data for a field without refreshing the page. Doing so
prevents the Navigate event and it's the Navigate event that causes the
sound.

If you are in control of the client, you can also go to Control Panel ->
Sounds and under Windows Explorer set the Start Navigation sound to None.

"Bruce W.1" <no@direct.emai l> wrote in message
news:40******** *******@direct. email...
My web app refreshes once a minute, using a meta refresh tag. Is there
a way to eliminate the tick sound emitted by IE when it refreshes?

Thanks for your help.

Nov 18 '05 #3
building on this idea, you can behaviors and a webservice to provide server
side data with no refresh. Here's a link:

http://tinyurl.com/yqlj5
--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
"DalePres" <don-t-spa-m-me@lea-ve-me-a-lone--.com> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
Don't you hate that sound!?!? I would bet money that Microsoft was NOT
getting hords of protesting customers picketing outside Redmond and chanting "We want a sound when we navigate!" I don't know where they get the idea
for some of these things they force on us.

But I digress...

I don't know if this would still work in .Net, but in non-.Net environments (I've used it as recently as W2K and IIS5.0), you can use remote scripting
to get fresh data for a field without refreshing the page. Doing so
prevents the Navigate event and it's the Navigate event that causes the
sound.

If you are in control of the client, you can also go to Control Panel ->
Sounds and under Windows Explorer set the Start Navigation sound to None.

"Bruce W.1" <no@direct.emai l> wrote in message
news:40******** *******@direct. email...
My web app refreshes once a minute, using a meta refresh tag. Is there
a way to eliminate the tick sound emitted by IE when it refreshes?

Thanks for your help.


Nov 18 '05 #4
This is too hacky for words but...

If you put the content of your page in an iframe and you use javascript to
do the reload by reassigning the src, you can avoid the click. You can
avoid other irrication refreshing artifacts by double-buffering the iframe
like this:

<iframe id=Content0 frameborder=0 scrolling="no"
src=""
width="100%" height="<%=sHei ght%>">
</iframe>
<iframe id=Content1 frameborder=0 scrolling="no"
src=""
width="100%" height="<%=sHei ght%>"
style="display: none;background :lightblue">
</iframe>
var theURL = "contentPage.as px";
var CurrentlyVisibl e = 1;
function ReloadContent()
{
if (navigator.appN ame.indexOf("Ne tscape") == -1)
{
if (CurrentlyVisib le == 0) CurrentlyVisibl e = 1;
else CurrentlyVisibl e = 0;
if (document.getEl ementById("Cont ent"+CurrentlyV isible).src != theURL)
{
document.getEle mentById("Conte nt"+CurrentlyVi sible).src = theURL;
}
else

document.getEle mentById("Conte nt"+CurrentlyVi sible).contentW indow.location. r
eload(true);
}
else
{
CurrentlyVisibl e = 0
document.getEle mentById("Conte nt"+CurrentlyVi sible).src = "";
document.getEle mentById("Conte nt"+CurrentlyVi sible).src = theURL;
}
}
window.setInter val("ReloadCont ent()",5000);

"Bruce W.1" <no@direct.emai l> wrote in message
news:40******** *******@direct. email...
My web app refreshes once a minute, using a meta refresh tag. Is there
a way to eliminate the tick sound emitted by IE when it refreshes?

Thanks for your help.

Nov 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
3417
by: JJ | last post by:
Hi, I am writing a web chat facility in asp. The problem is that my chat screen has to refresh every 10 seconds to check for any new messages in the conversation, this causes a 'click' sound. How can you refresh a page with out a 'click' sound? I currently use the meta refresh method, but there must be a different way, as other html chat clients I have seen do not make the 'click' sound and do not appear to use the meta refresh method....
10
9784
by: Fred | last post by:
There is a setting in INIT.ORA that has the unintended side-effect of making sure the ALTER SYSTEM KILL SESSION command has immediate affect. Without this setting, I've seen some instances where the session reports as being KILLED in V$SESSION but is not physically removed until the instance is bounced. Does anyone remember this value offhand?
2
322
by: Rene_Muench | last post by:
Hi there, I have listed 12 month on a continous form, where as I flag the current month with a tick box. To ensure at only 1 tick box is check not more or all I would want to validate and ensure that at all times one tock box is checked! any ideas??
5
16050
by: Jason | last post by:
I have an application that uses a timer. I've created a function called TickEvent that I "assigned" to the timer1.Tick event: this.timer1.Interval = 1000; this.timer1.Tick += new System.EventHandler(this.TickEvent); .... private void TickEvent(object sender, System.EventArgs e) { liSecondsElapsed++; DateTime lsTime = Convert.ToDateTime(liSecondsElapsed);
7
5939
by: utkarsh | last post by:
Hi, I am using the following code to the update a section of the image which is drawn on a panel. this.m_Timer = new System.Windows.Forms.Timer(this.components); this.m_Timer.Tick += new System.EventHandler(this.m_Timer_Tick); this.m_Timer.Enalbled = true;
1
1693
by: Henrik H | last post by:
Hi all, Is there a way, to show data on a web-page, and not get the refresh sound, when data is updated/refreshed?? My data should refreash every 15 secound, so I would be pleased no to hear that sound and not to see my page refresh.. Unfortunly it's not an option, to disable windows-sounds hehe
2
2163
by: Poly-poly man | last post by:
I am working on a GTK Midi player (timidgtk.sourceforge.net). As you can see, it's just a timidity frontend. With version 0.03, I'm trying to devel it to use SDL_sound to play the midis. First off, is there a better library for this? Right now I'm writing a test program to play on console, just so that I can narrow problems down very quickly. I have a "sound.c" (basically playsound from SDL_sound, but without a lot of features. I added...
3
2513
by: fAnSKyer/C# newbie | last post by:
My problem is use what tool to plot a graph sound wave, which requires a high refresh rate. Or any other approach to solve this problem? Any suggestions Thanks a lot Cheers fAnKa
6
5145
by: bnashenas1984 | last post by:
Here you can see the script I found in google to refresh a page without hearing any click sound which is usual to hear when a link is clicked or a page is refreshed. <script type="text/javascript" > window.onload = doLoad; function doLoad() { setTimeout( "refresh()", 5*1000 );
0
9647
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10163
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10104
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8988
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7510
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6744
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5397
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4063
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3668
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.