Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hallo everyone,
New day, new question. I was wondering if it is possible to configure a button in such a way thay a click on it would:
* Execute a stored procedure
* Bonus: Perform a full reload of the document
If this is possible, how can this be achieved? By using a macro?
Thank you,
Jan
Perhaps this is helpful:
set objWscript = CreateObject("WScript.Shell")
objWscript.Run YOURPATH & YOURFILE ' bat, cmd, vbs
'ActiveDocumentGetApplication.Sleep 10000 '10 sec
ActiveDocument.Reload
- Marcus