Sub DSBNote (sText As String)
Same thing as SBNote- (Prints Text specified in the main window's status bar or the splash screen if during startup) if debug message flag is set; otherwise, does nothing.
Example
- VB.NET
<pss> Sub Scan(ScanData) DSBNote "Scan line 0" Shipment.E("/SHIPMENT/COMMON/SHIPPER_REFERENCE") = ScanData DSBNote "Scan line 1" System.RefreshScreen DSBNote "Scan line 2" Shipment.Load DSBNote "Scan complete" End Sub </pss>
- C#
public void Scan(object ScanData) { DSBNote("Scan line 0"); Shipment.E("/SHIPMENT/COMMON/SHIPPER_REFERENCE") = ScanData; DSBNote("Scan line 1"); System.RefreshScreen(); DSBNote("Scan line 2"); Shipment.Load(); DSBNote("Scan complete");
Comments
0 comments
Article is closed for comments.