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 gkittelson 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. joannadarling

    Invoking a Web Service from VBScript

    I could use some help calling a web service from VBScript. I can't find any example that I've successfully been able to implement. I'm just trying to get a test web service to work, I just picked one from www.webservicemart.com. And I guess I really just have no idea what I'm doing. Are...
  2. joannadarling

    "Expected End of Statement" Around GetFile() and OpenAsTextStream()

    I found the problem. VbsEdit is actually a very nice program and it provided the line number where the error was at, it just wasn't labeled so I had no idea what it was, and it was in a "line, column" format, eg. (1, 19). Anyway, the problem is what both of you guys mentioned, declaring and...
  3. joannadarling

    "Expected End of Statement" Around GetFile() and OpenAsTextStream()

    Same error! But, it told me line 9 again, even though the line numbers changed, which makes me think that my debugger doesn't work. 7 Dim FileObject, UserFile, UserStream 8 Set FileObject = CreateObject("Scripting.FileSystemObject") 9 Set UserFile = FileObject.GetFile("user.txt") 10 Set...
  4. joannadarling

    "Expected End of Statement" Around GetFile() and OpenAsTextStream()

    mrmovie, I do not have an on error resume next. I will try what you said and let you know what happens! Thanks.
  5. joannadarling

    "Expected End of Statement" Around GetFile() and OpenAsTextStream()

    I am getting the "Expected End of Statement" error around line 9. I numbered the lines below so you can see 7 Dim FileObject = CreateObject("Scripting.FileSystemObject") 8 Dim UserFile = FileObject.GetFile("user.txt") 9 Dim UserStream = UserFile.OpenAsTextStream(2) What could I be doing...

Part and Inventory Search

Back
Top