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 Files\DYMO Label\dymolbl.exe"
p.Start()
DymoAddIn.Open("C:\Documents and Settings\All Users\Documents\DYMO Label\Label Files\Himanshu_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.
ASKED:
May 27 2009 10:08 AM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _