Questions tagged [autoexec]

18 questions
-1
votes
6 answers

How to bypass MSAccss AutoExec macro and bypass Startup form

How do I bypass the MSAccess autoexec macro and startup form for a deep-legacy code upgrade of a large MS Access 2003 application with hundreds of forms and reports? It is an upgrade from Access 2003 to Access 2016, 2019 or 365. This is a mission…
JNS
  • 19
  • 1
  • 3
-1
votes
2 answers

exec a xlam everytime I open an excel file

I have the following peace of code to exec a xlam file when I open the excel file: Sub Auto_Open() Application.OnTime Now + TimeValue("00:00:05"), "readCsv" End Sub Sub readCsv() .... End Sub I add it as Add-ins so every…
Iban Arriola
  • 2,526
  • 9
  • 41
  • 88
-3
votes
1 answer

How can we make a Python script auto executable at system startup (preferably linux) on every system it is installed on?

I have a python script , it has to be auto - executed on startup. I know how to make it happen in my system through editing and adding files in etc/init.d . I have created a Python Package for it with setup.py and other files but I cant find a way…
1
2