Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. shu745

    DTS package fails when scheduled as a Job.

    NM.. Dumb question.. I got it. Thanks MrDenny.
  2. shu745

    DTS package fails when scheduled as a Job.

    thx mrdenny. How would I go about doing that? - Shu
  3. shu745

    Query taking 2.5 minutes to process, plz help.

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

    Query taking 2.5 minutes to process, plz help.

    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]...
  5. shu745

    Target HTML Frame

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

    Target HTML Frame

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

    CSS Color for Link Button

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

    controling the height of a <br>

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

    Quick IE 'view source' question.

    Thanks Guys! I appreciate it much!
  10. shu745

    Change Textbox to Combo

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

    CSS Background Color Problem

    That page is not found.
  12. shu745

    Quick IE 'view source' question.

    Is there a way I can specify what program (other than notepad) is opened when I view source thru IE. Thanks in adv. Shu
  13. shu745

    Drop Down Selected from If Statement?

    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']...
  14. shu745

    FireFox issue with page redirect within form tags

    Sweet! Looks like everything works great. Thanks much!
  15. shu745

    FireFox issue with page redirect within form tags

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

    option select in javascript`

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

    Quick Issue :: onClick with FireFox

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

    Does preloading images really make a difference?

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

    Does preloading images really make a difference?

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

    Does preloading images really make a difference?

    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

Part and Inventory Search

Back
Top