The purpose of this sample is to provide the basic idea about what the Dynamic TWAIN ActiveX Control looks like.
VB Sample:
Private Sub btnAcquire_Click()
DynamicTwain1.AcquireImage
End Sub
Private Sub DynamicTwain1_OnPostTransfer()
ImgAcquiredImage.Picture(0) = DynamicTwain1.Picture(0)
End Sub
|

During the acquiring process, the OnPreAllTransfers Event, OnPreTransfer Event, OnPostTransfer Event and OnPostAllTransfers Event are triggered. In our sample, we only need to handle the OnPostTransfer Event.