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 Mike Lewis 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. samuelma

    Frames with VBScript?

    This code displays the file in the existing frame window when I click on the link &quot;SiteY&quot;. <HTML> <HEAD> <TITLE></TITLE> <Script language=&quot;vbscript&quot;> <!-- Function ReturnTimeStamp(myPath,myExtension) Dim myMonth,myDay,myYear,myDate myMonth=right(&quot;0&quot; &...
  2. samuelma

    Reading dated file names.

    I think I posted the following in the wrong place thinking it was an HTML thing not a VBS thing. Like I said on the bottom &quot;Am I even close?&quot; I need to use HTML/VBS to read a TXT file or HTM file The file names have a DATE in them and are in date order. examples...
  3. samuelma

    Need help fixing Seagate SCSI drive

    If the business has insurance it may pay for Ontrack to restore the data.
  4. samuelma

    Sanitizing/shredding RAID 5 array...

    Before you create the second array move the disks around.
  5. samuelma

    compaq presario EZ2200 (Will not boot- need to keep data)

    Put another disk in it make it the master (jumper) Make the existing disk slave (jumper) Leave the existing disk (slave) unpluged and install the OS. Get the system running stable and shutdown power off. Plug in the existing disk (slave). If the disk works you will be able to copy your data, if...
  6. samuelma

    System Will not Boot

    corrupt master boot record Try this boot to an msdos 6.x floppy disk with FDISK.EXE type &quot;FDISK /mbr&quot; press enter. this rewrites the Master Boot Record (mbr)
  7. samuelma

    Compaq SCSI Drive - in non Compaq machine

    Jumpers, Jumpers, Jumpers... Look at the jumper configuration of your existing drives and match them on the new drives. I use some compaq drives in my home Linux and W98 machines using Adapetec 29xx controllers. I had to look up the jumper configurations on the seagate website.
  8. samuelma

    HTML/VBS to read dated file names.

    Sorry it took so long to get back. I'm lost when you say &quot;make a function that changes the page source to the value&quot; I can put the date function (I didn't write it) between the script tags but I don't know how to &quot;change a page source to a value in VBS. I did look at a bunch of...
  9. samuelma

    HTML/VBS to read dated file names.

    I need to use HTML/VBS to read a TXT file or HTM file The file names have a DATE in them and are in date order. examples: &quot;myfile-07-28-02.txt&quot; &quot;myfile-07-29-02.txt&quot; &quot;myfile-07-30-02.txt&quot; &quot;myfile-07-28-02.htm&quot; &quot;myfile-07-29-02.htm&quot...
  10. samuelma

    Filename With the Date

    I had to use 2 sets of parens. Imagin that, DOH! Like the following.. function ReturnTimeStamp(myPath,myExtension) Dim myMonth,myDay,myYear,myDate myMonth=right(&quot;0&quot; & month(now),2) myDay=right(&quot;0&quot; & day(now),2) myYear=right(&quot;0&quot; & year(now),2)...
  11. samuelma

    Links without underlines using HTML or ?Script

    Thank you very much. This works great! I put the beginning of my webpages up just in case you would like to see what I'm doing with the code. It's very odd but it's different from all the fancy schmancy webpages I visit daily. Not much content at this time but enough to see that it works...
  12. samuelma

    Filename With the Date

    The message box thing is very cool. I've tried adding it to the file name in many ways. Set f1 = fso.CreateTextFile ReturnTimeStamp(&quot;c:\temp\testtest&quot;,&quot;.txt&quot;) Set f1 = fso.CreateTextFile(&quot;c:\temp\testtest&mydate&.txt&quot;) Set f1 =...
  13. samuelma

    Filename With the Date

    I have this script that copies a file from one place to another. I use this to copy files over the network to my machine or to another place. I use this to automate coping many files like a batch file. I need to time stamp the file name I'm copying to. So it needs to be done at the...
  14. samuelma

    Links without underlines using HTML or ?Script

    I want to remove the underline from the link with a hover to change the color. I'm &quot;almost&quot; sure I've seen this on a webpage in the past. Is this possible? I'm not a webdeveloper so I don't have the skill set most of you have. Short Story... My ISP is moving all the webpages to a new...
  15. samuelma

    HELP! FSO giving me fits

    Thank You!!! I was able to take what you gave me and make it read a file with multiple server names in it! This is the code... THANKS AGAIN! Dim fso, wrfile Const ForReading = 1 Const ForWriting = 2 Const ForAppending = 8 Const HardDisk = 3 Set fso =...
  16. samuelma

    HELP! FSO giving me fits

    First I should say, I've tried to do this and I just don't get it. I'm not a programmer, I'm just an administrative person that has been tasked with something totaly new and unknown. (Programming VBScript.) I've done a little html code for simple things but this is overwhelming. I've been asked...

Part and Inventory Search

Back
Top