We use VPE 7.1 in our VB.NET VS2015 application.
Mostly, we use the VPE to generate .pdf's and show the result in an external window (so that the user can decide what he want to do interactive).
Therefore we create the base object in code:
Dim report As New VpeControl
On some special forms (consoles), we have to query data, show the result on a VPE on a form and change the date over a timer automatically from code.
This works, if we take the .ocx (VpeCtrl71.ocx) for this (so we can paste the .ocx on a form and set the options from code).
But.. if we use the .ocx (only for this purpose), we have to include the .ocx in our application and take care, that it is registered by every user (what only works with admin rights and is not nice).
Therefore my questions:
Is it possible to embed the in code generated VpeControl object (see code above) on a windows form (like the activeX) so that we don't need the activeX?
If yes, how to do this (advise please)..
Thanks for a fast feedback.