+ Reply to Thread
Results 1 to 2 of 2

Can I assume everyone has Scripting Run Time (scrrun.dll) on C:\WI

  1. #1
    Tetsuya Oguma
    Guest

    Can I assume everyone has Scripting Run Time (scrrun.dll) on C:\WI

    Hi all,

    Subject says it all; Can I assume everyone has Scripting Run Time
    (scrrun.dll) on C:\WINNT\sytem32\?

    Apparenlty it comes with Internet Explorer 6.0.

    What other alternatives do I haev to create a text file and insert some text
    in lines?

    Thanks for your time.



  2. #2
    Bob Phillips
    Guest

    Re: Can I assume everyone has Scripting Run Time (scrrun.dll) on C:\WI

    Sub CreateTextFile()
    Dim FileNumber
    FileNumber = FreeFile ' Get unused file number.
    Open "C:\Test.txt" For Output As #FileNumber
    Write #FileNumber, "This is a first line of data"
    Print #FileNumber, "This is a second line of data"
    Close #FileNumber

    End Sub


    --
    HTH

    Bob Phillips

    (remove nothere from email address if mailing direct)

    "Tetsuya Oguma" <TetsuyaOguma@discussions.microsoft.com> wrote in message
    news:8F36E7F3-364D-4315-BDAF-AE245DCE641A@microsoft.com...
    > Hi all,
    >
    > Subject says it all; Can I assume everyone has Scripting Run Time
    > (scrrun.dll) on C:\WINNT\sytem32\?
    >
    > Apparenlty it comes with Internet Explorer 6.0.
    >
    > What other alternatives do I haev to create a text file and insert some

    text
    > in lines?
    >
    > Thanks for your time.
    >
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1