Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

call printer software in local machine

Status
Not open for further replies.

royyan

Programmer
Jul 18, 2001
148
US
I am trying to use a "Print" button in a web form to call a label printer software "Dymo Lable Writer" in clients local machine. I tried following code, it looks like calling software on the web server instead of the local machine. Please help me to identify the right way to call the program. Many Thanks!

Private Sub btnPrint_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPrint.Click

Call Shell("C:\Program Files\Dymo Label\Dymolbl.exe", AppWinStyle.NormalFocus, , -1)

End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top