I have a simple label with 2 barcodes on it. I'm able to open the label, and print the label, however the barcodes are not printing. The text labels are.
_label = Framework.Open("c:\\temp\\inventory.label");
_label.SetObjectText("part_num", txtPartNumber.Text);
_label.SetObjectText("serial_num", txtSerialNum.Text);
_label.Print("DYMO LabelWriter 450");
I figured it out. Had to use the SDK and not the label framework.