Forum Discussion
MeredithMoore
5 years agoQrew Cadet
By the way, if you go into your Exact Form and put the following in the body area, it will auto open to print.
<body onLoad=qdbEF();window.print() class=exactforms lang=EN-US><!-- Body class and onload attributes modified -->
------------------------------
Meredith Moore
------------------------------
<body onLoad=qdbEF();window.print() class=exactforms lang=EN-US><!-- Body class and onload attributes modified -->
------------------------------
Meredith Moore
------------------------------
AdamKeever1
4 years agoQrew Commander
Thanks for that @Meredith Moore.
Use the setTimeout property to delay the window print if your page takes some time to fully load (the 1000 is the time delay in milliseconds; i.e. 1000 = 1 second):
<body onLoad=qdbEF();setTimeout(function(){window.print()},1000) class=exactforms lang=EN-US link=blue vlink=purple><!-- Body class and onload attributes modified -->
------------------------------
Adam Keever
------------------------------
Use the setTimeout property to delay the window print if your page takes some time to fully load (the 1000 is the time delay in milliseconds; i.e. 1000 = 1 second):
<body onLoad=qdbEF();setTimeout(function(){window.print()},1000) class=exactforms lang=EN-US link=blue vlink=purple><!-- Body class and onload attributes modified -->
------------------------------
Adam Keever
------------------------------