473,323 Members | 1,589 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,323 software developers and data experts.

popup focus() behaviour with moz, firefox, ie

Hello,

I'm trying to get a popup to keep focus when it is re-clicked.
The script below is supposed to produce this exact behaviour,
however it doesn't work, at least on firefox 1.0.7 and moz 1.7.12
(linux kubuntu). It does work with konqueror.
It seems to work with firefox on windows but not with IE (not completly
sure though).
<script type="text/javascript">
var WindowObjectReference = null; // global variable

function openFFPromotionPopup()
{
if(WindowObjectReference == null || WindowObjectReference.closed)
/* if the pointer to the window object in memory does not exist
or if such pointer exists but the window was closed */

{
WindowObjectReference =
window.open("http://www.spreadfirefox.com/",
"PromoteFirefoxWindowName",
"resizable=yes,scrollbars=yes,status=yes");
/* then create it. The new window will be created and
will be brought on top of any other window. */
}
else
{
WindowObjectReference.focus();
/* else the window reference must exist and the window
is not closed; therefore, we can bring it back on top of any
other
window with the focus() method. There would be no need to
re-create
the window or to reload the referenced resource. */
};
}
</script>

(...)

<p><a href="http://www.spreadfirefox.com/"
target="PromoteFirefoxWindowName"
onclick="openFFPromotionPopup(); return false;"
title="This link will create a new window or will re-use
an already opened one">Promote Firefox adoption</a></p>
The weird thing is... it is copied from
http://developer.mozilla.org/en/docs....open#Examples !

I must mention that i've activated javscript and allowed it to control
focus with firefox and even disabled bpopup blocking, but it didn't
helped :(, neither did the many variante i've found on the web or in
this newsgroup.

I'm really clueless, but i'm just catching up with javascript so i hope
i've missed an obvious point.


So if anyone

Apr 20 '06 #1
11 7306
Al*********@gmail.com wrote:
I'm trying to get a popup to keep focus when it is re-clicked.


Don't.
PointedEars
Apr 21 '06 #2
>Don't.
thx a lot ah

Apr 21 '06 #3
Al*********@gmail.com wrote:
Don't.

thx a lot ah


My first followup probably was not enlightening enough ;-)

The reason why what you are trying to do is a Bad Thing:

<URL:http://www.faqs.org/faqs/x-faq/part7/section-42.html>
(This is about programming for the X Window System, but I'm sure you get the
idea anyway.)

Focusing the window most certainly does not work with your Gecko-based
UAs because there are Preferences with which the user can prevent you
from "stealing" the focus, that are enabled by default. Too many
clueless script-kiddies have attempted this in the past.

Please provide attribution of quoted material next time:

<URL:http://jibbering.com/faq/faq_notes/pots1.html>
<URL:http://www.safalra.com/special/googlegroupsreply/>
PointedEars
Apr 21 '06 #4
Thomas 'PointedEars' Lahn a écrit :
Al*********@gmail.com wrote:
Don't.

thx a lot ah


My first followup probably was not enlightening enough ;-)

The reason why what you are trying to do is a Bad Thing:

<URL:http://www.faqs.org/faqs/x-faq/part7/section-42.html>
(This is about programming for the X Window System, but I'm sure you get the
idea anyway.)

Focusing the window most certainly does not work with your Gecko-based
UAs because there are Preferences with which the user can prevent you
from "stealing" the focus, that are enabled by default. Too many
clueless script-kiddies have attempted this in the past.


You certainly didn't read my post, i'm not trying to get a popup
constantly on top as you say, but simply to get it on top again when
you click on the main page link.
Once again the preferences to allow it are set in firefox.

Both of your replies are disrespectfull.

Apr 22 '06 #5
ASM
Al*********@gmail.com a écrit :

You certainly didn't read my post, i'm not trying to get a popup
constantly on top as you say, but simply to get it on top again when
you click on the main page link.
Was your post very understanding ?
"I'm trying to get a popup to keep focus when it is re-clicked."
which is a non sens : if popup is clicked it has/get focus

So what we'll remember except 'keep focus' ?
(bad thing to do)

The script you've given is (allmost) correct and have to run as is
- a new popup on 1st call
- same popup comming to front with next calls
Once again the preferences to allow it are set in firefox.
I never fix preferences to stop all popups, only those comming automaticaly.
How to imagine you did stop all popups.
Both of your replies are disrespectfull.


Not first one
Please try to re-read yourself.

--
Stephane Moriaux et son [moins] vieux Mac
Apr 22 '06 #6
Al*********@gmail.com wrote:
Thomas 'PointedEars' Lahn a écrit :
Al*********@gmail.com wrote:
>> Don't.
> thx a lot ah
My first followup probably was not enlightening enough ;-)

The reason why what you are trying to do is a Bad Thing:

<URL:http://www.faqs.org/faqs/x-faq/part7/section-42.html>
(This is about programming for the X Window System, but I'm sure you get
the idea anyway.)

Focusing the window most certainly does not work with your Gecko-based
UAs because there are Preferences with which the user can prevent you
from "stealing" the focus, that are enabled by default. Too many
clueless script-kiddies have attempted this in the past.


You certainly didn't read my post,


Certainly I could not read your thoughts.
i'm not trying to get a popup constantly on top as you say,
| I'm trying to get a popup to keep focus when it is re-clicked.

You will excuse me if "keep" reads as "constantly" to me.
but simply to get it on top again when you click on the main page link.
OK.
Once again the preferences to allow it are set in firefox.
Sorry, I missed that.
Both of your replies are disrespectfull.


No, it was not. Besides, respect has to be earned, and you got what you
paid for.

Besides:

| The weird thing is... it is copied from
| http://developer.mozilla.org/en/docs....open#Examples

MDC is a Wiki, so anybody can post nonsense there (and partially did in this
case). However, the code you have posted (which is not necessarily the
code you are using) works here (provided _all_ prefs are set accordingly).

There can be several reasons why it would not work with you. Try
to find them out by debugging the code. See also the lower part of
news:15****************@PointedEars.de
Score adjusted

PointedEars
Apr 22 '06 #7
Al*********@gmail.com wrote:
I'm trying to get a popup to keep focus when it is re-clicked.
As you understand by now, this statement of the problem is
incorrect. Rather, you are trying to have a previously created
popup regain focus when a link or button activating it is
clicked.
The script below is supposed to produce this exact behaviour,
however it doesn't work, at least on firefox 1.0.7 and moz 1.7.12
(linux kubuntu). It does work with konqueror.
It seems to work with firefox on windows but not with IE (not completly
sure though).


Indeed, this is a classic case of protectionism run amok.
IE and FF both let you create a named window which they will bring to
the top, especially provided that it was some user instigated
through some user initiated action, such as clicking.

To be clear, this is not a case of a window/app trying to
raise itself to the top. The main window is already at the top,
so if it wants to have a child window come to the top (which may
be viewed as part of the same (already in focus) application),
which it could do anyway with window.open, what is the problem
in allowing window.focus()?

That is to say, it makes eminent sense that if a window, B,
which was created by window A, comes to the top upon creation,
that the same window B should come to the top upon a user
initiated action leading to windowB.focus() The really silly
way around this is to close windowB and then recreate it, which
only serves to drive up internet traffic.

This problem and two ways of dealing with it on FF are described at
https://bugzilla.mozilla.org/show_bug.cgi?id=318535
If you agree with the assessment, I suggest voting for the bug
to give it more visibility.

Unfortunately, I don't know of a nice workaround (other than the
brute force method in the bug report) for my IE 6 on Win XP Pro.
IE will flash the tab at the bottom of my window, but that's a
poor substitute for bringing it to the top.

Csaba Gabor from Vienna
Apr 23 '06 #8
Al*********@gmail.com wrote :
Thomas 'PointedEars' Lahn a écrit :
Al*********@gmail.com wrote:
Don't.
thx a lot ah

My first followup probably was not enlightening enough ;-)

The reason why what you are trying to do is a Bad Thing:

<URL:http://www.faqs.org/faqs/x-faq/part7/section-42.html>
(This is about programming for the X Window System, but I'm sure you get the
idea anyway.)

Focusing the window most certainly does not work with your Gecko-based
UAs because there are Preferences with which the user can prevent you
from "stealing" the focus, that are enabled by default. Too many
clueless script-kiddies have attempted this in the past.


You certainly didn't read my post, i'm not trying to get a popup
constantly on top as you say, but simply to get it on top again when
you click on the main page link.
Once again the preferences to allow it are set in firefox.


Such preference and control is entirely up to the user if he finds the
setting and understand how good or bad the setting can be for his web
experience. Chances are that a very wide majority of users won't know
what "Raise or lower windows" implies and means, so they will trust the
default Firefox setting and will not allow your script to bring back the
secondary window when clicking the link again.

I am personally against the current default value. I tried to educate
the people on what that setting means.
See
http://www.gtalbot.org/FirefoxSectio...seLowerSetting
But then again, if the content is important to be read, seen, then I do
not recommend that you use a secondary window.

Thomas 'PointedEars' Lahn is abrasive, arrogant, even hostile at times
but he's right about not relying, not hoping too much on a focus() call
to work, at least, all the times. It's all up to the user in the final
instance. And, if your webpage design is sound, accessibility-oriented,
then even users with "Raise or lower windows" unchecked should be able
to access your content without a problem. Chances are that if you follow
the usability guidelines and recommendations given at
http://developer.mozilla.org/en/docs/DOM:window.open
then the user will know there is another secondary window and
tab-capable browser users will not open your document in a secondary
window but most likely into a tab.

Gérard
--
remove blah to email me
Apr 26 '06 #9
Csaba Gabor wrote :
Al*********@gmail.com wrote:
I'm trying to get a popup to keep focus when it is re-clicked.
As you understand by now, this statement of the problem is
incorrect. Rather, you are trying to have a previously created
popup regain focus when a link or button activating it is
clicked.
The script below is supposed to produce this exact behaviour,
however it doesn't work, at least on firefox 1.0.7 and moz 1.7.12
(linux kubuntu). It does work with konqueror.
It seems to work with firefox on windows but not with IE (not completly
sure though).


Indeed, this is a classic case of protectionism run amok.
IE and FF both let you create a named window which they will bring to
the top, especially provided that it was some user instigated
through some user initiated action, such as clicking.


It's not that simple. A secondary window could have been brought up
legitimately; after some time, it could be reloaded with advertisement
content. Or who knows; a second click on a link could load a different
document. There are lots of possibilities, variations which a persistent
scripter could take advantage of.
To be clear, this is not a case of a window/app trying to
raise itself to the top.
A setTimeout can do that though.
Some people create a modal window with
<body onblur="self.focus();">
you see.

The main window is already at the top, so if it wants to have a child window come to the top (which may
be viewed as part of the same (already in focus) application),
which it could do anyway with window.open, what is the problem
in allowing window.focus()?

The window is not per se the problem: its content (actual, future,
potential) is. When a browser prevents an unrequested popup, it's not so
much the window that is the problem as it is its content (advertisement,
spamming content, annoyance of being served scam ads or anything which
is not related to the reasons to visit a site in the first place).

If you visit some sites like netscape.com and yahoo.com, they are now
using DHTML layers to convey advertisement. No secondary windows
involved. But the same boring, annoying advertisement pollution.
That is to say, it makes eminent sense that if a window, B,
which was created by window A, comes to the top upon creation,
that the same window B should come to the top upon a user
initiated action leading to windowB.focus() The really silly
way around this is to close windowB and then recreate it,
There are scripts available on the web that do exactly that: as the user
reclicks the link, the script closes windowB and then recreate it entirely.

See the 9th link at
https://bugzilla.mozilla.org/attachm...49&action=view

which only serves to drive up internet traffic.

This problem and two ways of dealing with it on FF are described at
https://bugzilla.mozilla.org/show_bug.cgi?id=318535
If you agree with the assessment, I suggest voting for the bug
to give it more visibility.

The bug hasn't even been confirmed yet!
And the bug is about respecting and maintaining user settings when
upgrading Fx.
Unfortunately, I don't know of a nice workaround (other than the
brute force method in the bug report) for my IE 6 on Win XP Pro.


How about simply not using window.open() if your content is important
for the users to read, otherwise warn accordingly users about a
secondary window and do not rely too much on such window.open() +
window.focus() call.

Gérard
--
remove blah to email me
Apr 26 '06 #10
Gérard Talbot wrote:
Csaba Gabor wrote :
Al*********@gmail.com wrote:
I'm trying to get a popup to keep focus when it is re-clicked.
As you understand by now, this statement of the problem is
incorrect. Rather, you are trying to have a previously created
popup regain focus when a link or button activating it is
clicked.
...
Indeed, this is a classic case of protectionism run amok.
IE and FF both let you create a named window which they will bring to
the top, especially provided that it was some user instigated
through some user initiated action, such as clicking.


It's not that simple. A secondary window could have been brought up
legitimately; after some time, it could be reloaded with advertisement
content. Or who knows; a second click on a link could load a different
document. There are lots of possibilities, variations which a persistent
scripter could take advantage of.


I'm not quite following your scenario and objection (advantage taking
mechanism). Are you referring to:
1) Window A brings up named window B, and then A or B later reload B
(which they are entitled to do)
2) Window A brings up named window B, and then a different window C in
the same domain loads up B with new content. So at this point, is
either A, B, or C allowed to (or ought to be allowed to) do a .focus()?
3) Window A brings up named window B, and then a different window C in
a different domain loads up B with new content.
4) Something else.

It would be nice if you would clarify specific scenario(s) that you
have an issue with that the popup blocker does not protect against (ie.
how could a persistent scripter take advantage?).
To be clear, this is not a case of a window/app trying to
raise itself to the top.


A setTimeout can do that though.
Some people create a modal window with
<body onblur="self.focus();">
you see.


I like this because it's a specific instance that we can discuss.
Woudn't it make sense to have window/self.focus() labor under the same
restrictions as window.open? In other words, it has to be initiated by
a physical user event within a certain time limit to have any effect.

To go on a bit of a digression, the kind of behaviour you have
mentioned can be achieved by an infinite loop of alerts. A solution to
this would be to have FF always allow the underlying window to be
closed (by, for example, clicking on its X button in the upper right
corner or by having a context menu for close on the right click if the
X is not visible).
The main window is already at the top,
so if it wants to have a child window come to the top (which may
be viewed as part of the same (already in focus) application),
which it could do anyway with window.open, what is the problem
in allowing window.focus()?
The window is not per se the problem: its content (actual, future,
potential) is. When a browser prevents an unrequested popup, it's not so
much the window that is the problem as it is its content (advertisement,
spamming content, annoyance of being served scam ads or anything which
is not related to the reasons to visit a site in the first place).

If you visit some sites like netscape.com and yahoo.com, they are now
using DHTML layers to convey advertisement. No secondary windows
involved. But the same boring, annoying advertisement pollution.


This is off topic for this thread. I hate those kinds of ads, too.
However, opposition to popups has its basis in the fact that the user
chose to look at a website in a given window, and that window is all
the website is entitled to, except under limited circumstances (user
initiated actions). However, this argument does not apply to the
content of the web page itself. That browser window is the website's
playground and if they want to annoy users by placing ads, that's their
prerogative. That's what GreaseMonkey helps with.
That is to say, it makes eminent sense that if a window, B,
which was created by window A, comes to the top upon creation,
that the same window B should come to the top upon a user
initiated action leading to windowB.focus() The really silly
way around this is to close windowB and then recreate it,


There are scripts available on the web that do exactly that: as the user
reclicks the link, the script closes windowB and then recreate it entirely.

See the 9th link at
https://bugzilla.mozilla.org/attachm...49&action=view


What is the id of the associated bug ... How do I use the search page
at
https://bugzilla.mozilla.org/query.cgi to figure out the bug associated
with a given attachment number?
And by the way, what is the bug that you are referring to in your last
post in
http://groups.google.com/group/comp....d28fdaac54b3c/
The link is broken.

Anyway, I am not fond of this idea of killing windows one is going to
reuse just to get them to the top.
which
only serves to drive up internet traffic.

This problem and two ways of dealing with it on FF are described at
https://bugzilla.mozilla.org/show_bug.cgi?id=318535
If you agree with the assessment, I suggest voting for the bug
to give it more visibility.

The bug hasn't even been confirmed yet!


What is your point?
And the bug is about respecting and maintaining user settings when
upgrading Fx.


That is half the bug. But it is also about allowing window.focus() to
focus a window that the caller has rights to.
Unfortunately, I don't know of a nice workaround (other than the
brute force method in the bug report) for my IE 6 on Win XP Pro.


How about simply not using window.open() if your content is important
for the users to read, otherwise warn accordingly users about a
secondary window and do not rely too much on such window.open() +
window.focus() call.


I have a web app for rapid development/prototyping. You put the input
source material into a textbox in one window, press alt+s and up pops
the result in the second window. For this type of scenario it makes
sense for the content to be delivered to a second window and for the
second window to remain where it is and for the second window to rise
to the top. Any kind of per instance warning is not a solution.

The user could always allow scripts to raise or lower windows (by the
way, would you happen to know the corresponding pref.js setting?), but
that allows access for any script. I am only suggesting that in
situations where window.open would raise a new window to the top, there
is nothing that is lost by allowing window.focus() to do the same.

Apr 27 '06 #11
Csaba Gabor wrote :
Gérard Talbot wrote:
Csaba Gabor wrote :
Al*********@gmail.com wrote:
I'm trying to get a popup to keep focus when it is re-clicked.
As you understand by now, this statement of the problem is
incorrect. Rather, you are trying to have a previously created
popup regain focus when a link or button activating it is
clicked.
...
Indeed, this is a classic case of protectionism run amok.
IE and FF both let you create a named window which they will bring to
the top, especially provided that it was some user instigated
through some user initiated action, such as clicking. It's not that simple. A secondary window could have been brought up
legitimately; after some time, it could be reloaded with advertisement
content. Or who knows; a second click on a link could load a different
document. There are lots of possibilities, variations which a persistent
scripter could take advantage of.


I'm not quite following your scenario and objection (advantage taking
mechanism). Are you referring to:
1) Window A brings up named window B, and then A or B later reload B
(which they are entitled to do)
2) Window A brings up named window B, and then a different window C in
the same domain loads up B with new content. So at this point, is
either A, B, or C allowed to (or ought to be allowed to) do a .focus()?
3) Window A brings up named window B, and then a different window C in
a different domain loads up B with new content.
4) Something else.

It would be nice if you would clarify specific scenario(s) that you
have an issue with that the popup blocker does not protect against (ie.
how could a persistent scripter take advantage?).


I was thinking of scenario 2 where document loaded in window A can
focus() document #3 in window B after being loaded.
To be clear, this is not a case of a window/app trying to
raise itself to the top.

A setTimeout can do that though.
Some people create a modal window with
<body onblur="self.focus();">
you see.


I like this because it's a specific instance that we can discuss.
Woudn't it make sense to have window/self.focus() labor under the same
restrictions as window.open? In other words, it has to be initiated by
a physical user event within a certain time limit to have any effect.

Yes, it would make sense to have focus() work under the same
restrictions as window.open().

To go on a bit of a digression, the kind of behaviour you have
mentioned can be achieved by an infinite loop of alerts.
Exactly. I happened to have demonstrated this in 2002 in a netscape7
newsgroup.

A solution to this would be to have FF always allow the underlying window to be
closed (by, for example, clicking on its X button in the upper right
corner or by having a context menu for close on the right click if the
X is not visible).

An alert is a modal window; not any kind of normal secondary window. You
can not reach the parent-opener without first closing the modal window.
The modal window's opener can not be focused without first closing the
modal window.
The main window is already at the top,
so if it wants to have a child window come to the top (which may
be viewed as part of the same (already in focus) application),
which it could do anyway with window.open, what is the problem
in allowing window.focus()?

The window is not per se the problem: its content (actual, future,
potential) is. When a browser prevents an unrequested popup, it's not so
much the window that is the problem as it is its content (advertisement,
spamming content, annoyance of being served scam ads or anything which
is not related to the reasons to visit a site in the first place).

If you visit some sites like netscape.com and yahoo.com, they are now
using DHTML layers to convey advertisement. No secondary windows
involved. But the same boring, annoying advertisement pollution.


This is off topic for this thread. I hate those kinds of ads, too.
However, opposition to popups has its basis in the fact that the user
chose to look at a website in a given window, and that window is all
the website is entitled to, except under limited circumstances (user
initiated actions). However, this argument does not apply to the
content of the web page itself. That browser window is the website's
playground and if they want to annoy users by placing ads, that's their
prerogative. That's what GreaseMonkey helps with.


It may not be that off topic. I was merely pointing out that it is
unwanted polluting content that annoy us. Put it into a DHTML layer or
in a window: in both cases, the users' system resources are used and
abused to annoy the users.
That is to say, it makes eminent sense that if a window, B,
which was created by window A, comes to the top upon creation,
that the same window B should come to the top upon a user
initiated action leading to windowB.focus() The really silly
way around this is to close windowB and then recreate it,

There are scripts available on the web that do exactly that: as the user
reclicks the link, the script closes windowB and then recreate it entirely.

See the 9th link at
https://bugzilla.mozilla.org/attachm...49&action=view


What is the id of the associated bug ... How do I use the search page
at
https://bugzilla.mozilla.org/query.cgi to figure out the bug associated
with a given attachment number?


Titlebar or source code were indicating
<title>Testcase for bug 151142 and other related bugs</title>
And by the way, what is the bug that you are referring to in your last
post in
http://groups.google.com/group/comp....d28fdaac54b3c/
The link is broken.

I restructured my website recently. I will eventually remove all
references to NS 7.

What does the "Raise or lower windows" setting do exactly?
http://www.gtalbot.org/FirefoxSectio...seLowerSetting

Anyway, I am not fond of this idea of killing windows one is going to
reuse just to get them to the top.

I certainly do not either: it's really a bad idea, abusing the users'
system resources.

which
only serves to drive up internet traffic.

This problem and two ways of dealing with it on FF are described at
https://bugzilla.mozilla.org/show_bug.cgi?id=318535
If you agree with the assessment, I suggest voting for the bug
to give it more visibility.

The bug hasn't even been confirmed yet!


What is your point?


My first point is that this bugreport is not well done and second point
it's not the correct bugreport to vote for if you want "Raise or lower
windows" to default to true, to have the default to allow scripts to
Raise or lower windows.
And the bug is about respecting and maintaining user settings when
upgrading Fx.


That is half the bug. But it is also about allowing window.focus() to
focus a window that the caller has rights to.


A bugreport should always about 1 single issue per bug. And it should be
terse, clear and as clean as possible. In other words, no rant, no long
lecture. Bugzilla is not a newsgroup discussion forum, a place for
advocacy or debates, actually. It's only a place to report, investigate,
then confirm, test patches, fix bugs.
Unfortunately, I don't know of a nice workaround (other than the
brute force method in the bug report) for my IE 6 on Win XP Pro. How about simply not using window.open() if your content is important
for the users to read, otherwise warn accordingly users about a
secondary window and do not rely too much on such window.open() +
window.focus() call.


I have a web app for rapid development/prototyping. You put the input
source material into a textbox in one window, press alt+s and up pops
the result in the second window. For this type of scenario it makes
sense for the content to be delivered to a second window and for the
second window to remain where it is and for the second window to rise
to the top. Any kind of per instance warning is not a solution.

The user could always allow scripts to raise or lower windows (by the
way, would you happen to know the corresponding pref.js setting?),

dom.disable_window_flip
but that allows access for any script. I am only suggesting that in
situations where window.open would raise a new window to the top, there
is nothing that is lost by allowing window.focus() to do the same.

Gérard
--
remove blah to email me
Apr 28 '06 #12

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

Similar topics

4
by: VR | last post by:
First, greetings to everyone :) I'm doing a university seminar & I've encountered a problem. I have a gallery with thumbnails linked on pictures. What I want is popup to be opened with...
2
by: lazar | last post by:
I'm triing to write script that close popup window, when user click outside the popup. Script below is working fine in firefox (v1.0.3), but not in IE. I tried also to print hello but still...
15
by: | last post by:
So many websites can get around my Googlebar's popup blockers. Even Opera 8 can not stop those popups. I looked into the codes, and I can find nothing showing me how it is done. Can anyone help me...
23
by: Markus | last post by:
Hi, i have this problem: Sometimes, i can't reproduce, if i click on an small image on the website, the popup _AND_ an other Tab in firefox open. Here are the linkcode: <div...
4
by: Csaba Gabor | last post by:
Up until a few weeks ago, javascript code like window.open("http://mydomain.com", "windowName"); would always bring my new or reused window to the top, with focus. Lately, Firefox (Deer park...
3
by: atn2002 | last post by:
I'm trying to create a control which when the mouse button gets pressed on one div an absolute positioned div pops up in place of the cursor. From there the cursor should interact with the dialog...
3
by: stevenc417 | last post by:
The popup works fine on Firefox 1.5.0.9, but it doesn't work on IE7. It just re-acts like a regular link on IE7. Any ideas anyone? Thanks, Steven ...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.