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
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