Scusatemi, ma ho provato ad utilizzare il programma che mi avete passato! E' grandioso, solamente che copiando il codice che mi restituisce alla fine in un evento click mi restituisce l'errore che la funzione non è definita. Cioè? Vi posto il codice. Grazie.
Private Sub Comando0_Click()
Dim hdib As Long
Call TWAIN_SetHideUI(1)
Call TWAIN_SetFileAppendFlag(0)
Call TWAIN_SetJpegQuality(75)
If TWAIN_OpenSource("Samsung SCX-4x21 Series") <> 0 Then
Call TWAIN_SetXferCount(1)
Call TWAIN_SetAutoScan(0)
' If you can't get a Window handle, use 0:
hdib = TWAIN_Acquire(Me.Hwnd)
If hdib <> 0 Then
' -Do your image processing here-
Call TWAIN_WriteToFilename(hdib, "c:\image.pdf")
Call DIB_Free(hdib)
End If
End If
If TWAIN_LastErrorCode() <> 0 Then
Call TWAIN_ReportLastError("Unable to scan.")
End If
End Sub