I have some software that is written in Excel that some advertising agencies use to buy radio and TV ad time. Most use PCs, but some use Macs. There were no problems running the software on Macs until OSX. One problem that I am having is ...
The software makes orders and a Visual Basic macro copies the orders out to an external Excel file. Then there is another macro - triggered by a keyboard shortcut - that opens an emial and attaches the order file to it. The email may then be addressed to the station represenative and sent. This email macro has not worked on the several Mac OSX machines that I have shown it on. There are no error messages - it just doesn't do anything.
The email macro was recorded so it's pretty simple. It is just recording the [ Send to / Email Recipient (as attachment) ] from the File menu. BTW, the [ Send to / Email Recipient (as attachment) ] works if done from the file menu. Just not in a macro.
And I even talked an OSX user through recording the macro on his OSX machine, giving it a keyboard shortcut, and trying it. It wouldn't even work that way. Also, the code that he recorded was the same as mine.
There are about a dozen other macros in the software and they all work fine under OSX.
Any insight into this appreciated. Thanks for your consideration.
I'll include the recorded macro below:
________________________
Sub SendEmail()
Application.Dialogs(xlDialogSendMail).Show
ActiveWorkbook.Close False
End Sub
________________________
Regards,
Vernon