Hi,
I searched multiple forums, but couldn't find an answer. Maybe there's no solution for my question...
Is it possible to open a certain form with a certain record-id from a URL? Database is shared and split (frontend/backend)
Suppose I have a database DBTEST.accdb and form DBFORM where I want to open that form with recordID = 5.
For the moment, I can open my database with a URL to a html-file with this code:
But maybe there's another solution to open the form? With /cmd parameters??
Thanks
Wim
I searched multiple forums, but couldn't find an answer. Maybe there's no solution for my question...
Is it possible to open a certain form with a certain record-id from a URL? Database is shared and split (frontend/backend)
Suppose I have a database DBTEST.accdb and form DBFORM where I want to open that form with recordID = 5.
For the moment, I can open my database with a URL to a html-file with this code:
Code:
<script type="text/javascript">
window.onload=function openURL()
{
var shell = new ActiveXObject("WScript.Shell");
shell.run("MSACCESS J:/Agfiles/080515/BRUGS_OMMELAND/TOEPASSINGEN/ACCESS/BROMONET.accdr /runtime");
}
</script>
But maybe there's another solution to open the form? With /cmd parameters??
Thanks
Wim