Previous Page | Next Page

Controlling SAS from Another Application Using OLE

Top Method



Brings the SAS session to the foreground.
Syntax
Details
Example

Syntax

Top


Details

The Top method works only if the Visible property is set to True.


Example

The following example invokes a SAS session, makes it a visible window, and then brings it to the foreground.

Dim OleSAS as Object
Set OleSAS = CreateObject("SAS.Application")
OleSAS.Visible = True
OleSAS.Top

Previous Page | Next Page | Top of Page