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

    Getting 2 Words From a Double Word

    Thanks for the prompt response... I'll try the macros. Pulsar
  2. PulsarSL

    Getting 2 Words From a Double Word

    Hi guys, I'm using the Windows MCI to write a program. One of the status commands I'm using returns information I need about the levels in both the left and right audio channels in a dword. The low-order word is the right channel and the high-order word is the left channel. How do I seperate...
  3. PulsarSL

    What Doesn't FF Like About This Line??

    Hmmm. Fixed it. The error from FF led me to investigate the code of the box. It was missing id="txtNumPad", but it's name was also set to "txtNumPad". Apparently IE falls back to the element's name if no id is specified, but FF does not? Pulsar
  4. PulsarSL

    What Doesn't FF Like About This Line??

    Error: document.getElementById("txtPadNum") has no properties
  5. PulsarSL

    What Doesn't FF Like About This Line??

    Sorry. That was not part of the code. Not sure how it slipped in there as I did C&P -- Must have hit it somehow. Pulsar
  6. PulsarSL

    What Doesn't FF Like About This Line??

    Hello everyone, The following line is in an external .js file in the same directory as my html file. It is called when a button is pushed. txtPadNum is a textbox in the html file. In IE, it works perfectly. In Firefox, it does not update the div's innerHTML AT ALL. What doesn't firefox...
  7. PulsarSL

    Strange cursor behavior

    THANK YOU tsuji and Dan. document.close() fixed it. It is very strange that in yours it did not exhibit similar results. Thanks!! Pulsar
  8. PulsarSL

    Strange cursor behavior

    Problem persists. Firefox bug?
  9. PulsarSL

    Strange cursor behavior

    First, I'd like to say thanks for all the help so far. I copied your code into a fresh HTML document and loaded it up on a different computer, and I still get the hourglass cursor. I really have no clue why this is happening. If I go to something like javascriptsource.com and look at some...
  10. PulsarSL

    Strange cursor behavior

    I wrote a simple test function to make sure I wasn't somehow stuck in an endless loop. function checkCode() { document.write("done."); return; } I changed my onload to call this. Still get the hourglass arrow! Why is this happening!!! Please! I'm desperate for an answer! Thanks Pulsar
  11. PulsarSL

    Strange cursor behavior

    Hey guys, Just so you know, there were a few little mistakes here and there (mostly with the math) that I've corrected. I won't post an updated version of the code unless you request it. The cursor problem is still there. The encryption/decryption code works as intended. I just ran through...
  12. PulsarSL

    Strange cursor behavior

    <body onload="testCrypt()"> in the html file calls the testCrypt() function listed above. Thanks Pulsar
  13. PulsarSL

    Strange cursor behavior

    Sorry. It's an encryption program that uses one-time pads. It's kind of hard to follow the logic since it's undocumented. I'm porting it from visual basic. Basically, you call cipherText with your alphabet, clear text, key and a 0 or 1 telling whether you're decrypting or encrypting...
  14. PulsarSL

    Strange cursor behavior

    Hey In firefox, when I execute my script, the cursor changes to an arrow with an hourglass next to it, and never changes back to normal. Happens on two different computers. Does not happen in IE. It's not an infinate loop as I have it print to screen right before the end of the functions and...
  15. PulsarSL

    Can't find error in simple javascript

    Thanks, changing the capital I to lowercase and changing the variable name fixed it. I'm porting this from VB where a variable of the same name as the function is returned, so I guess that's how that slipped in there. Pulsar
  16. PulsarSL

    Can't find error in simple javascript

    Hey -- When I have this javascript in my file and try to execute a function defined after it, the function is never executed. When I remove this piece, it works fine. This leads me to believe that there is something wrong with this bit. Is this a correct assumption? And do you see anything...
  17. PulsarSL

    Client/Server Model

    Hey guys, I'd like to build a client/server program that can exchange data. Like a chat program with one server and all clients connect to that server. How can I do this with winsock? Do I need to open each connection on a different port? I'm not experienced with the winsock control, so...
  18. PulsarSL

    Receiving/Sending E-Mail through VB6?

    I was hoping there was a nicer way, but I suppose there isn't...
  19. PulsarSL

    Receiving/Sending E-Mail through VB6?

    Thanks... it's kind of confusing though -- can you send me in the right direction? Do you know of any example sites? thanks, PulsarSL
  20. PulsarSL

    Receiving/Sending E-Mail through VB6?

    Thanks, that's useful, but I can't find anything on receiving email, either on google or tek-tips. Any ideas? thanks

Part and Inventory Search

Back
Top