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!

Recent content by shu745

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

Part and Inventory Search

Back
Top