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!

FileSystemObject

Status
Not open for further replies.

born2program

Technical User
Sep 18, 2006
85
US
I have the following code written in vb.net behind a asp.net page. It errors (Invalid Cast) out on the line fstr = fso_OpenTextFile(fname, 2, Not fso.FileExists(fname)). Any help will be appreciated.



Code:
Dim fso As Object
        Dim fstr As StreamWriter

        Dim qbTranHdr As String
        Dim qbSplHdr As String
        Dim qbEndTranHdr As String

        Dim qbTran As String
        Dim qbSpl As String
        Dim qbEndTran As String

        Dim fname As String

        fname = "C:\TestQuick.iif"

        fso = Server.CreateObject("Scripting.FileSystemObject")

        fstr = fso.OpenTextFile(fname, 2, Not fso.FileExists(fname))

        qbTranHdr = "!TRNS" & vbTab & "TRNSID"
        qbSplHdr = "!SPL" & vbTab & "SPLID"
        qbEndTranHdr = "!ENDTRANS"
        qbEndTran = "ENDTRNS"

        fstr.Write(qbTranHdr & vbNewLine)
        fstr.Write(qbSplHdr & vbNewLine)
        fstr.Write(qbEndTranHdr & vbNewLine)

        qbTran = "TRNS" & vbTab & " " & "BILL"
        fstr.Write(qbTran & vbNewLine)

        qbSpl = "SPL" & vbTab & " " & vbTab & "BILL"

        fstr.Write(qbSpl & vbNewLine)
        fstr.Write(qbEndTran & vbNewLine)

        qbTran = ""
        qbSpl = ""

        fstr = Nothing
        fso = Nothing
 
Scripting.FileSystemObject isn't used (at least this way) in .net.

use the System.IO namespace objects instead. there are a variety of objects to read and write files. depending on what you want to do will determine which objects are best

Jason Meckley
Programmer
Specialty Bakers, Inc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top