When I use the standard forms Select dialog it loads up the imager b/w and the camera color as choices in the dialog. For the life of me I can't figure out how to skip this dialog and just use the camera by default.
Also I don't get any intellisense for the Symbol objects - is this normal?
Thanks
Harry
selecting the device without selecting it from the Select dialog? |
1 Replies
Try this
Device[] automaticSelectDevice;
if (Symbol.Barcode.Device.AvailableDevices.Length > 0)
{
//always use first available device
automaticSelectDevice = new Device[1] { Symbol.Barcode.Device.AvailableDevices[0] };
Symbol.Generic.Device MyDevice =
Symbol.StandardForms.SelectDevice.Select(
Symbol.Barcode.Device.Title,
automaticSelectDevice);
}