Click or drag to resize

Error Handling

Early Binding:
VB
Dim SoApp As SoApplication
Set SoApp = New SoApplication

Pro: Can use Intellisense

Con: Typelibrary must be always available when developing

Late Binding:
VB
Dim SoApp as Object
Set SoApp = CreateObject("SuperOffice.Application")

Pro: Flexible

Con: More work (no intellisense), more syntax errors, slower

Up: Controlling the Application   Prev: Interacting with the application   Next: Interacting with the application          Edit