- Code: Select all
Dim nImageID As Long
GdPicture.TwainSelectSource (Me.Hwnd)
GdPicture.TwainOpenDefaultSource
GdPicture.TwainSetErrorMessage (True)
GdPicture.TwainSetHideUI (False)
nImageID = GdPicture.CreateImageFromTwain(Me.Hwnd)
GdPicture.TwainCloseSourceManager (Me.Hwnd)
If nImageID <> 0 Then
gdViewer.ClosePicture
gdViewer.DisplayFromImageRef (nImageID)
End If
For my project I really need fast scrolling after twain acquire, because I execute it on old PCs. Normal scrolling is ok, but when I load an image from scanner, application becomes not very usable. Is that an issue of the demo version, a bug, or a my mistake? Thanks.
