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 strongm 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. 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 =...
  16. pugs421

    ping computer returns what?

    More clarification- I only need to know how to tell whether the ping was successful or not.
  17. pugs421

    ping computer returns what?

    I found this code which pings a machine: ipVar = "ping 192.168.3.107" Set objShell = CreateObject("WScript.Shell") objShell.run ipVar But how do I deal with what it returns? In other words if a computer has crashed and is not able to be pinged, then I need to send a message to another...
  18. pugs421

    automate a process

    In a video production evironment, we currently have overlays that are placed over a completed video. An overlay contains company logo and some other information that is specific to each movie that it is being used on. We have the completed ovelays done in photoshop, and we have to manually...
  19. pugs421

    From Fireworks to photoshop

    I learned design on Fireworks and only tried Photoshop a few of times. Now at work I received the opportunity to do some design, but the tools they gave me to work with is PS and illustrator. Uh O. I feel lost in this program. I know what I need to accomplish, but it seems that these programs...
  20. pugs421

    write textfield values to textfile

    I have code that writes the values entered into the textfields on a form into a text file. The problem is that it only works when the file is saved locally. It doesn't seem to work on a server or even a network drive. I was wondering if it is possible to accomplish this goal, but allowing the...

Part and Inventory Search

Back
Top