Early Binding

<< Click to Display Table of Contents >>

Navigation:  How To Use the VPE Control > VPE ActiveX >

Early Binding

Previous pageReturn to chapter overviewNext page

The VPE ActiveX can be used with early binding without using a form, which has some performance advantages, for example for batch-processes on a server.

Example for Visual Basic:

IMPORTANT: do not insert VPE into your VB Project as Component, but as Reference!

Dim report As VPE

Private Sub Command1_Click()

 Set report = New VPE

 report.OpenDoc

 report.Preview

End Sub