Programming Reference Manual
 
Syntax
 
With objexpr
    statements
End With
 
Description
Method and property references may be abbreviated inside a With block. Use .method or .property to access the object specified by the With objexpr.
See Also
 
Example
 
Sub Main
    Dim App As Object
    Set App = CreateObject("WinWrap.CppDemoApplication")
    With App
        .Move 20,30 ' move icon to 20,30
    End With
End Sub