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 wOOdy-Soft 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 pugs421

  1. pugs421

    Date/Time - Determine if user observes Daylight Savings, and when

    I am trying to determine the start and end dates of daylight savings time (DST) according to the user's locale specified in their system. I am so close, but I am off by one hour. Here in the Florida, DST starts at Sun Mar 11 02:00:00 EST 2007, but my function returns Sun Mar 11 01:00:00 EST...
  2. pugs421

    XMLHttpRequest - Reuse function for multiple file requests

    Thanks a lot for your help, but I still can't get this to work for Mozilla based browsers. I have tried a lot of things, but I just can't get it. Shouln't I just have to move the : if (this.engine) { var obj=this; this.engine.onreadystatechange=function() {...
  3. pugs421

    XMLHttpRequest - Reuse function for multiple file requests

    Thanks for the assistance. Would you mind pointing me in the right direction for the prototype technique?
  4. pugs421

    XMLHttpRequest - Reuse function for multiple file requests

    I am using XMLHttpRequest to request an XML file and display the data in an HTML page. I would like to call upon multiple XML files in the same HTML document without writing a different loadXMLDoc() function for each file that I will need to request. This more of a question on Javascript...
  5. pugs421

    $_SERVER['PATH_INFO'] won't work.

    LOL. Good troubleshooting DRJ. Next I'll ask which button is the 'any key'. Thanks.
  6. pugs421

    $_SERVER['PATH_INFO'] won't work.

    But my version is 1.3.33,right? I'm sorry, I don't understand.
  7. pugs421

    $_SERVER['PATH_INFO'] won't work.

    This may be helpful: Operating system Linux Kernel version: 2.4.21-15.ELsmp Apache version 1.3.33 (Unix) PHP version 4.3.10
  8. pugs421

    $_SERVER['PATH_INFO'] won't work.

    I am trying to make search enging friendly URL's. The articles that I have read suggest using $_SERVER['PATH_INFO']. When I write "echo $_SERVER['PATH_INFO'];" on my pages, it does not display anything. Does anyone know why I am unable to display this value? Thanks
  9. pugs421

    remove commas from string

    Much better. Thanks.
  10. pugs421

    remove commas from string

    That didn't seem to work. I wrote a function to remove the needle from the haystack. Code and example below. I'm sure that there is an easier way to do this simple task, but I need to get this project done. Thanks. ----------- function removeChar(haystack,needle){ var needleLocation =...
  11. pugs421

    remove commas from string

    Is there a "find and relace" function that I can use in actionscript to remove the commas from a string that the user enters into a text field? I need to remove all commas from a text string. Thanks
  12. pugs421

    scripting in AI - Export Jpeg

    I found out how. Substitute the number 1 in place of aiJPEG
  13. pugs421

    scripting in AI - Export Jpeg

    I am starting to learn how to automate tasks using the AI scripting plugin and VBScript. The documentation is mostly writen in VB and not VBScript. If anyone has knowledge in scripting for Illustrator can you please point me in the right direction as to what is wrong with this script: Dim...
  14. pugs421

    Disconnect drives based on the server they are mapped to

    Set Wn = WScript.CreateObject ("WScript.Network") 'disconnect drive Wn.RemoveNetworkDrive "f:" Might work
  15. pugs421

    use contents of text file as an array

    the content of a text file that is write looks like this: "\\fc1\drive_e$\","\\fc2\drive_e$\","\\fc3\drive_e$\","\\fc4\drive_e$\","\\fc5\drive_e$\","\\fc6\drive_e$\","\\fc7\drive_e$\","\\fc8\drive_e$\","\\fc9\drive_e$\" I want to use the contents of the text file as an array: Set fs =...

Part and Inventory Search

Back
Top