I’m really beginning to dislike the WordPress code window.  One of those nut fuckers updated it again.  It worked, now it works like shit.  If it ain’t broke, fix it until it is. I have a Honeywell 7580 Genisis barcode …

Use RawImport to separate a USB HID barcode scanner and keyboard events Read more »

Option to pick automatic, left, or right rolls. private void Dymo() { try { PrintDocument pd = new PrintDocument(); pd.PrinterSettings.PrinterName = “DYMO LabelWriter 450 Twin Turbo”; PrinterSettings.PaperSourceCollection sources = pd.PrinterSettings.PaperSources; // pd.DefaultPageSettings.PaperSource = sources[0]; // Automatic // pd.DefaultPageSettings.PaperSource = sources[1]; …

C# Print directly to a Dymo LabelWriter 450 Twin Turbo Read more »

Here’s my simple version using System.ComponentModel; //Define a class to hold the event arguments, if one isn’t already defined. public class DesignEventArgs : EventArgs { private DesignListItem item; public DesignEventArgs(DesignListItem item) { this.item = item; } public DesignListItem Item { …

Dirt Simple C# .NET Custom Event for UserControl Read more »