madhukar Posted October 3, 2012 Posted October 3, 2012 Hi, I need my script to wait till it saves the file. I use Sleep() and it halts the script for specific amount of time but when I save the file the time taken varies depending upont the size and the system response time. Can anyone help? Thanks
Moderators JLogan3o13 Posted October 3, 2012 Moderators Posted October 3, 2012 Hi, madhukar. Can you please post the code you're using to "save the file". Depending on how you're doing this exactly, there are a couple of ways you can go about this. "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
madhukar Posted October 3, 2012 Author Posted October 3, 2012 Hi Jlogan, I use the function save($file) Function save($filename) { Send("^s") sleep(2500) send($filename) send("{ENTER}") }
water Posted October 3, 2012 Posted October 3, 2012 If you just use FileWrite/FileWriteLine the file is saved as soon as the function ends (because FileOpen/FileClose is done implicitely) and the execution of the script continues. If you use FileOpen/FileWrite/FileWriteLine/FileClose and you want to be sure that the file is saved to disk before you close the file you should use function FileFlush. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
water Posted October 3, 2012 Posted October 3, 2012 Which program do you send "^s" to? Means: Which program do you automate? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now