AstronomerDaz Posted November 4, 2015 Posted November 4, 2015 Having migrated my PC across to W10, I am getting an odd behaviour when executing a script that works perfectly under W7... Wondered if anyone else had come across this:So, my script runs an external program called Deep Sky Planner. It opens two reports to calculate positions in the night sky for each of the 8 planets, plus the Moon and Sun. It then saves each of these reports as a HTML file, and a PDF file. I upload these to my astronomical societies web-site. One report is a set of basic data, then a more detailed one is run.Each report is named with the month-year-object, so 1015Venus.html or 1015Sun_det.pdfUnder W7 (64bit), no problem. On my W10 machine, the change of the filename to be saved is not recognised by the 'Save As' dialogue box, even though the new file name is clearly there in the text edit box! So, I get an error saying that the file already exists!I've attached a picture of the dialog box error so you can see what I mean.I've also attached my code (feel free to rip this apart )Has anyone else seen this? Any suggestions?? ThanksDaz DSP_This_Month.au3
Moderators Melba23 Posted November 4, 2015 Moderators Posted November 4, 2015 AstronomerDaz,I would check that you are actually deleting the files in the "; Clear out any files that may have been run already for this month" section as it appears from your image that there is indeed an exisitng file of that name still present.M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
AstronomerDaz Posted November 4, 2015 Author Posted November 4, 2015 Hi,Yes, the files are being deleted - most definitely.What the image is showing is:1 The file 1115Sun.htm is NOT the name of the file being saved - The file being saved is 1115Mercury.htm. 1115Sun was saved on the first iteration of the loop2. The background shows the console of the editor - where I print out the names of each report to be saved as a debug, so I can see the file name is being generated correctly The filename 115Mercury.htm is being entered into the File Name box in the dialog, but the dialog box is not seeing it - it still thinks it is 1115Sun.html
Moderators Melba23 Posted November 4, 2015 Moderators Posted November 4, 2015 AstronomerDaz,My apologies - I can only blame the small screen I was using earlier - and my old eyes!Looking at this function (which appears to be the source of the problem)Func ExportHTML (ByRef $object , $type) local $in=$savePath & $object, $out="" local $varSave $varSaveLabel=$varSaveHTMLLabel if $type = "B" then $in = $in & ".htm" Else $in = $in & "_det.htm" Endif send("!feh") WinWaitActive($varSave) Do ControlSetText($varSaveLabel, "" , "[ID:1001]", $in) Sleep(500) ControlSetText($varSaveLabel, "" , "[ID:1001]", "") Sleep(500) ControlSetText($varSaveLabel, "" , "[ID:1001]", $in) Sleep(500) $out=ControlGetText($varSaveLabel, "", "[ID:1001]") If $in<>$out Then ConsoleWrite("HTML path does not match - rewriting" & @CRLF) Exit EndIf Until $in=$out ControlClick($varSaveLabel, "", "[ID:1]") EndFuncI am struck by 2 things:You do not declare a value for $varSave and yet you use it in the WinWaitActive command.Are you sure the Control IDs you are using are the same in the Win10 dialog as they obviously were in Win 7?Either of those might be causing a problem.M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
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