

Labels made by a manufacturer other than DYMO Poor print quality is most frequently caused by one of the following: Press the label release lever forward and pull the jammed label out of the label feed slot. Tear off any labels that have already fed through the printer.Ģ. To clear labels that have become jammed in the printer:ġ. To stop the self-test, press and release the form-feed button. Once the self-test begins, release the form-feed button.ģ. The test pattern automatically changes every 3/4 inch (19 mm).Ģ. The printer begins printing vertical lines along the width of the printer. With a roll of labels in the printer, press and hold the form-feed button on the front of the printer for five to ten seconds. The self-test verifies that all elements of the print head and printing mechanism are in working condition.ġ. If you experience problems with broken characters or other print quality issues, perform a printer self-test. Flashing Blue = Labels are not loaded properly or the label roll is empty. Dimmed Blue = Printer is in power saving mode. Solid Blue = Power is on and printer is ready. The status light visually shows the current state of the printer: If you are unable to solve a problem, try our complete list of LabelWriter Technical Articles, call us or contact DYMO Technical Support.


However, in the event that you encounter a problem, this article offers suggestions for resolving problems that can occur when using the printer. (And why you should too).Your LabelWriter printer should offer years of trouble-free printing with very little maintenance. Last Chance to register for Excel Summit South - Excelguru on Why I’m going to Excel Summit South.Creating a Table Naming Conflict in Power Query on Global name meets Local, Global freaks out.Woolley on Two new range functions: Union and Subtract CR on Filtering Pivots based on external ranges.International Keyboard Shortcut Day 2019.Opening a File from a Userform Disables Ribbon.
#Dymo labelwriter not printing text code#
If I had written the object model, my code would have looked like this: It did it automatically because I set that “property” when I created the label template, but it would be nice to be able to set it in code.
#Dymo labelwriter not printing text how to#
I wanted to set the ShrinkToFit property of the Textbox to TRUE, but I couldn’t figure out how to do it. I had to include a third argument for PaperTray, which is utterly ludicrous if you look at the LabelWriter 450. Out of desperation, I chose the Print2 method. It reminds me of Quickbooks in that there are few, if any, properties and everything is a method.įinally I tried the Print method, but was rewarded with “Object doesn’t support this property or method.” One of my favorite errors. My label has one object on it called “Text”, so the SetField method was pretty straight forward. As far as I can tell, when I call the Open method to the DymoAddin object, the DymoLabels object automatically becomes whatever was open. Name them something understandable like Open and OpenPriorVersion. If you have two Open methods, don’t freaking name them Open and Open2. Am I done bashing the DYMO programmers yet? Not even close. There’s also an Open2 method, but I don’t know the difference. I discovered that GetDymoPrinters returns my one printer, so I pass that to SelectPrinter and that seems to have worked. I guess if you have more than one Dymo printer, GetDymoPrinters returns some delimited string. I set the printer I want to use using SelectPrinter and GetDymoPrinters. I would have thought that I could get the current label from the DymoAddin object, but that doesn’t appear to be the case. I needed to create both the DymoAddin object and the DymoLabels object. From what I can tell, DymoLabels is only one label, from which I can only conclude…wait for it…they gave it an awful name. This object has two properties: DymoAddin (what an awful name) and DymoLabels. I start with a DymoHighLevelSDK object – what an awful name. Let’s step through this and try to see what’s happening.
