Chapter Contents |
Previous |
Next |
Submit Method |
Syntax | |
Details | |
Example |
Syntax |
Submit("SAS-program-code") |
Details |
The string of text that you specify as SAS-program-code can contain multiple SAS statements separated by semicolons. The contents of the string are submitted to the SAS System for processing.
Example |
The following example references a data library and invokes a SAS/AF application:
Dim OleSAS as Object Set OleSAS = CreateObject("SAS.Application") OleSAS.Visible = True OleSAS.Submit("libname afapp 'f:\sas\afapp';") OleSAS.Command("af c=afapp.bigapp.main.frame")
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.