35 pts.
 How can I send VB.NET output to the DYMO labels
For one project i need to integrate the application output of my project with the labels of the dymo printer. Actually we have to send some data(text,numeric,mix) to the labels of the DYMO LABELWRITER DUO Label printer. The labels we need to send data is 1. Shipping(99014) 2. Tape Label with 12 mm width. I have downloaded the the sdk from your site, but i am not getting any specific help which meet our requirement. I am sending you the code snippet which i am using. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Code Snippe '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Dim DymoAddIn As Object Dim DymoLabels As Object Dim sAddress As String, sCRLF As String sCRLF = Chr(13) & Chr(10) DymoAddIn = CreateObject("Dymo.DymoAddIn") DymoLabels = CreateObject("Dymo.DymoLabels") Dim p As New System.Diagnostics.Process p.StartInfo.FileName = "C:Program FilesDYMO Labeldymolbl.exe" p.Start() DymoAddIn.Open("C:Documents and SettingsAll UsersDocumentsDYMO LabelLabel FilesHimanshu_Label.LWL") sAddress = "Himanshu" & sCRLF & "properly" & sCRLF & "Conveniently located in..." & sCRLF & "India" DymoLabels.SetAddress(0, sAddress) Me.Refresh() ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' I am using the VB.Net as programming language. With this code i am able to open the dymo printer with the pre specified dymo label. But i am not been able to send the data to this pre specified label.

Software/Hardware used:
ASKED: May 27, 2009  10:08 AM
UPDATED: May 27, 2009  12:27 PM

Answer Wiki:
Last Wiki Answer Submitted:  Be the first to answer this question.
All Answer Wiki Contributors:  Be the first to answer this question.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _