First, any help is greatly appreciated. I'm trying to solve a problem for a co-worker. I am also new to VBA and scripts.
We use excel for inventory and a Dymo Labelwriter 450 Turbo. My co-worker's labeling process is typing in one item number into the Dymo app and then printing it before typing in another number. (As far as I can tell, multiple item numbers can't be entered to print onto multiple labels at one time.) We have been able to copy multiple item numbers in the same column, run DYMO LabelWriter.scpt using Mac's script editor, which basically opens Dymo's Excel Add-in.app and allows the printer to print multiple labels at a time. I would like to streamline this process by using VBA to open the Add-in.app.
Is it possible to directly open the Dymo application -OR- run the Dymo script that will open the application using VBA? If so, how?
The DYMO LabelWriter.scpt is as follows:
tell application "Finder" to open file "DYMO Excel Add-in.app) of folder "Addins" of folder "DLS8" of folder "DYMO" of folder "Frameworks" of folder "Library" of startup disk
Again, any help is greatly appreciated!
We use excel for inventory and a Dymo Labelwriter 450 Turbo. My co-worker's labeling process is typing in one item number into the Dymo app and then printing it before typing in another number. (As far as I can tell, multiple item numbers can't be entered to print onto multiple labels at one time.) We have been able to copy multiple item numbers in the same column, run DYMO LabelWriter.scpt using Mac's script editor, which basically opens Dymo's Excel Add-in.app and allows the printer to print multiple labels at a time. I would like to streamline this process by using VBA to open the Add-in.app.
Is it possible to directly open the Dymo application -OR- run the Dymo script that will open the application using VBA? If so, how?
The DYMO LabelWriter.scpt is as follows:
tell application "Finder" to open file "DYMO Excel Add-in.app) of folder "Addins" of folder "DLS8" of folder "DYMO" of folder "Frameworks" of folder "Library" of startup disk
Again, any help is greatly appreciated!