Results 1 to 2 of 2

Thread: command line

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2000
    Location
    Pittsburgh, PA
    Posts
    329
    when i get the command line with
    Code:
    Command()
    it returns the value in quotes


    what i get: (with Command())

    "C:\filepath\app.exe"


    i need Command() to return what is above without the quotes


    what i need: (with Command())

    C:\filepath\app.exe


    if you know how i can fix this please tell me.

    ok thanks for reading this and anu help is appreciated!

    ______________

  2. #2
    Guest
    Code:
    Dim MyCommandLine As String
    MyCommandLine = Replace(Command, Chr$(34), " ")
    MyCommandLine = Trim$(MyCommandLine)

Posting Permissions

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



Click Here to Expand Forum to Full Width