Write-only |
Description |
Terminates the Network Analyzer application. |
VB Syntax |
app.Quit |
Variable |
(Type) - Description |
app |
An Application (object) |
Return Type |
Not Applicable |
Default |
Not Applicable |
Examples |
app.Quit |
C++ Syntax |
HRESULT Quit() |
Interface |
IApplication |
Remarks |
Under the rules of COM, the server should not exit until all references to it have been released. This method is a brute force way of terminating the application. Be sure to release all references (or terminate the client program) before attempting to restart the Network Analyzer application. An alternate approach to terminating the application is to make the application invisible (app.Visible = False) and release all references. The server will shutdown. |