Paxar 6039 Printer User Manual


 
4-6 Programmer’s Manual
NoReadWav
Description
Sets the file for a No Scan. This sound is heard whenever a bar code is
unsuccessfully scanned. To have no sound, clear this field.
Syntax
public string NoReadWav
Parameters
None
Return Values
None
Example C#
using Ultra;
Ultra.Scan.General GENERAL = new Ultra.Scan.General();
// Instantiate class
GENERAL.NoReadWav = "noscan.wav";
Ultra.Scan.Control CONTROL = new Ultra.Scan.Control();
// Instantiate class
CONTROL.CommitChanges();
//--Save Changes to the Scanner Configuration
Example VB.NET
Imports Ultra
Dim GENERAL As New Scan.General ' Instantiate class
Dim CONTROL As New Scan.Control ' Instantiate class
GENERAL.NoReadWav = "noscan.wav"
CONTROL.CommitChanges()
' Save Changes to the Scanner Configuration