Below is an ActiveX solution to opening an Access program that resides on the users local machine.
<script type="text/javascript">
function Start() {
var connX = new ActiveXObject("Access.Application");
connX.OpenCurrentDatabase("C:\\Database1.accdb");
connX.Visible = true;
}
</script>
I want this to be able to be run from most browsers and not be ActiveX. How do I do that?
Assume use has Access and the OS is Windows 7 or 8 or 10. I would like the solution to work on IE, Edge, Chrome, Firefox, and Safari. If solution can not work on any of those browsers let me know what browsers it does work on.
How does Craig's list call up whatever your email client is and pass that program data like subject and to and body of email?
I was wondering if the same methodology could be use to call the local database client (instead of the local email client) which in this case would be Microsoft Access.