It seems that the line that is making the slowQuery process slowly is the where clause in the getMostUpdatedDup query. If I remove that than it seems to run fast, but then obviously my results are incorrect.
Hope that helps.
- Shu
Hi all, in MS Access 2000 I have a query which joins two other queries together:
--- getExtras ---
SELECT [Extras].[Code], [Extras].[Coords], [getPhone].[Phone]
FROM Extras INNER JOIN getPhone ON [Extras].[Code]=[getPhone].[Code];
--- getMostUpdatedDup ---
SELECT [BadgeHolder].[Counter]...
Hi all, I was just wondering if it is possible to target a specific frame of an external website, assuming I know all the frame names of that external website.
For example, on WebsiteA I have a link to WebsiteB. WebsiteB is made of 3 frames (top_banner, left_navigation, main). Normally when...
Hi all, I was just wondering if it is possible to target a specific frame of an external website, assuming I know all the frame names of that external website.
For example, on WebsiteA I have a link to WebsiteB. WebsiteB is made of 3 frames (top_banner, left_navigation, main). Normally when...
What do you mean foregroung color? Are you trying to have the button colors change when you mouseover them or something? There is no real foreground color just background color.
Let us know what you want to happen then maybe we can help more.
- Shu
I would try to use CSS to solve this situation but there's always the old-school style using a spacer.gif's height attribute to control the vertical spacing like:
<div>blah blah</div>
<img src="images/spacer.gif" width="1" height="10" />
<div>blah blah</div>
Again I would use CSS as the...
The example seems to work for me. Below I have integrated both the .js file and .html file into one since I made some changes to both. I added some crude error handling on the form, just checking that any value is entered into any field. I also added a combo box (select list) to the form...
I tested this:
-----------------------------------
<html>
<head>
<script>
var sessionVar = 'value2';// your session variable value
var JSArrayProd = new Array();
JSArrayProd[0] = new Array();
JSArrayProd[0] = ['value1','text1'];
JSArrayProd[1] = new Array();
JSArrayProd[1] = ['value2','text2']...
Hey all, what's up with this(please test in firefox):
Here is my test code:
------------------------------------
<html>
<head>
</head>
<body>
<form>
<button onClick="window.location.href='http://www.tek-tips.com/'">Go (inside form tags)</button>
</form>
<br />
<button...
This should do it.
===========================================
<html>
<head>
<script>
function setListValue(val){
document.partNumberForm.partnumber.value=val;
}
</script>
</head>
<body>
<form name="partNumberForm">
<table>
<tr>
<td align="center">
<SELECT NAME="partnumber">
<OPTION...
Hey all I was just wondering if FireFox has a bug. It seems that when I use this code:
---------------------------
<html>
<head>
<body>
outside form tags<br>
<button onClick="javascript:window.location.href='index.html'">Reset</button>
<br><br>
<form>
inside form tags<br>
<button...
Hmm.. there are some javscript programs that do pre-cache the images on a page but none that I found are free. You would need a script that does that as image preloading will not help a page inititally load any faster. You just have to optimize your graphics as much as possible.
-Shu
Oh yah, preloading all the current pages images will not make any difference when the page is initially loading. It only will make a difference on images that are on the page but are not seen until you preform some kind of event.
I know there's probably alot more to it. Hopefully an expert...
Usually preloading images is good for image swapping like on a mouseover and it makes a ton of difference in that case. But it only works for your current page so you cannot preload/pre-cache another page's images.
- Shu
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.