Results 1 to 2 of 2

Thread: The use of Parameters

  1. #1

    Thread Starter
    New Member
    Join Date
    Sep 1999
    Location
    Barcelona, España
    Posts
    14

    Post

    Hi,

    Does anyone know how to use parameters when you execute a programme, that you can type commands behind the executeble to select for example search criteria.

    Regards Wouter

  2. #2
    Guru Aaron Young's Avatar
    Join Date
    Jun 1999
    Location
    Red Wing, MN, USA
    Posts
    2,177

    Post

    If you mean "How can I incorperate the Command Line into my App", then you need to check out Command which returns a String containing any Command Line Parameters passed to your App when it starts, ie.
    Code:
    Private Sub Form_Load()
        If Len(Command) Then Msgbox "You Passed: " & Command
    End Sub

    ------------------
    Aaron Young
    Analyst Programmer
    [email protected]
    [email protected]


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