wackywoo105
Registered User.
- Local time
- Yesterday, 18:12
- Joined
- Mar 14, 2014
- Messages
- 203
I'm trying to set a scanner up to use auto document feeder if it's available. It was working fine previously but I have changed my printer.
I'm sure I had some code somewhere that listed the available printer/scanner options. Something like:
This however doesn't bring up a list of proerties.
Previously wiaScanner.Properties.item("3087").Value gave the current state of the ADF, but it seems with the new printer this just stays fixed at 7.
Can anyone help with code to list all available properties?
I'm sure I had some code somewhere that listed the available printer/scanner options. Something like:
Code:
Set wiaScanner = wiaDialog.ShowSelectDevice
Dim props As String
For Each item In wiaScanner.Properties
props = props & vbCrLf & item & " " & item.Name
Next item
This however doesn't bring up a list of proerties.
Previously wiaScanner.Properties.item("3087").Value gave the current state of the ADF, but it seems with the new printer this just stays fixed at 7.
Can anyone help with code to list all available properties?