B
Beebs
I need to put a conditional around some global, or public delclares in
my main module, but that obviously doesn't work. What other options
do I have to do this. My three variables are:
Dim MyReader As New Symbol.Barcode.Reader
Dim MyReaderData As New
Symbol.Barcode.ReaderData(Symbol.Barcode.ReaderDataTypes.Text,
Symbol.Barcode.ReaderDataLengths.DefaultText)
Dim MyReaderHandler As New System.EventHandler(AddressOf
MyReader_Notify)
and they need to be accessible for the whole application if the device
is a certain type, which I'm able to check for in my Main()
Thanks
my main module, but that obviously doesn't work. What other options
do I have to do this. My three variables are:
Dim MyReader As New Symbol.Barcode.Reader
Dim MyReaderData As New
Symbol.Barcode.ReaderData(Symbol.Barcode.ReaderDataTypes.Text,
Symbol.Barcode.ReaderDataLengths.DefaultText)
Dim MyReaderHandler As New System.EventHandler(AddressOf
MyReader_Notify)
and they need to be accessible for the whole application if the device
is a certain type, which I'm able to check for in my Main()
Thanks