DestImageControl Example VB

If there are multiple Image Edit controls within an application, set the DestImageControl property to specify which control will receive the scan data.

Private Sub cmdDestImage_Click()
    'The DestImageControl property must be set to match
    'the value specified in the ImgEdit's ImageControl property.
    'This would scan to an ImgEdit control referred to as ImgEdit2
    frmMain.ImgScan1.DestImageControl = "ImgEdit2"
    frmMain.ImgScan1.StartScan
End Sub