I'm working on a small project that requires printing directly to a DYMO printer using their SDK. I've made other projects before using the same method:
- Find DYMO
- Get .label file
- Set label variable object(s)
- Print label
However, I receive the following error from the VB.NET program when calling the label.Print()
method:
Paper '12mm' is not supported by 'DYMO LabelWriter DUO Label'
I receive the error delayed, so I'm assuming that the Print()
method runs in a separate thread. Therefore I'm also assuming that the error occurs in the Print()
method. This method is also the only point that the Label
and IPrinter
objects are provided in a single method according to the list above.
This error does not make sense, as the DYMO software has successfully printed labels using the same .label template. Is there possibly an incompatibility issue with the V8.+ of the SDK/Software and this model? If so, how/where can I determine a compatible version?
Insight on the fixing the error would be greatly appreciated or even any leads on documentation of error handlers with the DYMO SDK (all I've found are old samples of how to use the SDK).