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

    onClick Not Working

    Chris, thanks! Yes, I was trying to save some time because I was certain the issue had to do with binding the javascript being brought in and placed on the page with innerHTML. Had I posted the actual onClick() event in my code, you would have noticed a missing quotation mark.. Appreciate the...
  2. ToddWW

    onClick Not Working

    Hi folks. Been searching google and forums for a while and unable to find this result. Here's a quick simple piece of code to explain. <html> <head> <script> function myFunc() { alert('hello'); } function ajaxCall() { //performing ajax call here and using innerHTML to place...
  3. ToddWW

    Access Select List Option Value on Hover

    I've read a few posts dated back several years. Wondering if there's a new implementation for IE 8 or 9 or Safari so I can access select list properties by just hovering over the option. I know I can do it with a crafty CSS list, but I'm trying to implement something quick on a page using a...
  4. ToddWW

    Animated GIF stops when using AJAX

    I have a chunk of javascript that changes the opacity of the web page, positions an animated GIF in the middle of the screen, then fires an XMLHttpRequest to the server to collect data. When the XMLHttpRequest object gets to the Send method, the animation stops until the object gets a response...
  5. ToddWW

    Strange Hover Behavior

    Here's the code. function getDetail(elmtRef,parms) { if (typeof lastClickedElmt == "object") { lastClickedElmt.className = "td1"; } elmtRef.className = "td2"; lastClickedElmt = elmtRef; } CSS .td1 { border:rgb(160,160,160) solid 1px; background-color:white; }...
  6. ToddWW

    Strange Hover Behavior

    Solved. Instead of changing the border style directly with Javascript, I setup another class and use Javascript to switch between the two classes. Hover works good now.
  7. ToddWW

    Strange Hover Behavior

    I have table elements with a "td1" class definition. My CSS is written as follows .td1:hover { border:red solid 1px; } However, if I change the border style using JavaScript like this. elmtRef.style.border = "blue solid 1px;" Everything works great, but the hover no longer fires on...
  8. ToddWW

    Need SQL Join Help

    Worked like a charm! Thanks a million! SELECT Games.gm_date, Games.tm_id, Home.tm_div, Home.tm_conf, Games.gm_oppid, Opp.tm_div AS opp_div, Opp.tm_conf AS opp_conf FROM Games INNER JOIN Teams AS Home ON Games.tm_id = Home.tm_id INNER JOIN Teams AS Opp ON Games.gm_oppid = Opp.tm_id...
  9. ToddWW

    Need SQL Join Help

    Can you help me out on what that looks like? I've never constructed an SQL statement that joins the same table twice. I'm looking for gm_homeid and gm_oppid with tm_div and tm_conf for both gm_homeid and gm_oppid. Thanks a million!
  10. ToddWW

    Need SQL Join Help

    I hope this is simple. I have a sports database with a table for teams and a table for games. Teams tm_id tm_name tm_conf tm_div Games gm_homeid (maps to tm_id in Teams) gm_oppid (maps to tm_id in Teams) gm_date gm_homescore gm_oppscore What would a query look like that will give me the conf...
  11. ToddWW

    Transfer PDF between servers using HTTP POST

    Thanks Chris. This looks like it is designed for client to server file uploads. Any idea on server to server using a server object like winhttprequest?
  12. ToddWW

    Transfer PDF between servers using HTTP POST

    Hello All. I've been working on this for a few days now, scouring the internet and this site for some solutions. I need to be able to move a PDF from one ASP server to another ASP server (not client to server) using HTTP POST. FTP is not an option becuase I need a synchronous transaction with...
  13. ToddWW

    Basic CSS Question

    I have a div element that automatically stretches with the width of the window. How do I place one piece of text on the left and another on the right of that div element. Do I need to nest two div or span elements in there? Thanks in advance. ToddWW
  14. ToddWW

    Access properties in Firefox

    I like to use my own properties in certain elements then be able to access them using document.getElementById(). It works great in IE, but not Firefox. <div id="mydiv" fileType="pdf"> var v1 = document.getElementById("mydiv"); alert(v1.fileType); I get an alert window in IE with "pdf". In...
  15. ToddWW

    iframe onload event

    I have an onload event in an iframe element and I'm preloading with about:blank. The onload event fires in both IE and Firefox when the parent document loads. When I use javascript to change the src of the iframe to a PDF document, the onload event fires in Firefox but not IE8. When I load...
  16. ToddWW

    RI Code Not Working Correctly

    Thank You Olaf. It didn't solve my problem but it made me realize I was setting up my indexes incorrectly all these years!! Yikes!! So I guess, in the long run, it did solve my problem. Thanks again.
  17. ToddWW

    RI Code Not Working Correctly

    I have been working with FoxPro since v3. Currently working with VFP 8. I have a database with one table that has a primary key and a second table with a regular key. I create the join and click the button to modify the referential integrity. All three (insert,delete,update) default to...
  18. ToddWW

    Stored Procedures in VFP 8

    I've been using stored procedures in VFP 7 using the following steps. OPEN DATABASE fbdata1 SHARED MODIFY PROCEDURE With VFP 7, I could write procedures, etc... and call them from my ASP web pages. Everything would work great. After making any changes, I could just hit File / Save and the...
  19. ToddWW

    Routing and Remote Access &amp; VPN

    Currently I have several computers on a 10.10.10.x network. On one of them (10.10.10.7) I have a dialout PPTP VPN connection configured through "Network and Dialup Connections". When I make the connection to the VPN host, everything works and I can access the resources on that remote network...
  20. ToddWW

    Problem with loadMovie()

    Or can I load the movie into a different level? I still need the two movie clips to be able to talk to each other. For example, I need a button in the main .swf to be able to manipulate the intro .swf

Part and Inventory Search

Back
Top