Does anyone no if Monarch version 9.0 works with Windows 10?
Answers
-
Hi Darrell,
What sort of problems are you seeing?
V9 will not run at all?
Or certain things do not seem to be working?
I can't answer for WIn 10 - I have been avoiding it successfully so far!
Have you re-installed after the Windows upgrade? If not that might be worth a try - preferably on a test machine if someone has one available.
Grant
0 -
Altair Forum User said:
Hi Darrell,
What sort of problems are you seeing?
V9 will not run at all?
Or certain things do not seem to be working?
I can't answer for WIn 10 - I have been avoiding it successfully so far!
Have you re-installed after the Windows upgrade? If not that might be worth a try - preferably on a test machine if someone has one available.
Grant
I checked the computer this morning and the user said it worked now not sure what happened over the weekend but it fixed itself.
0 -
Altair Forum User said:
I checked the computer this morning and the user said it worked now not sure what happened over the weekend but it fixed itself.
Good news.
And yeah, who knows what the computers get up to amongst themselves when left to play over a weekend?!
0 -
Altair Forum User said:
Good news.
And yeah, who knows what the computers get up to amongst themselves when left to play over a weekend?!
0 -
Altair Forum User said:
Hi Darrell,
What sort of problems are you seeing?
V9 will not run at all?
Or certain things do not seem to be working?
I can't answer for WIn 10 - I have been avoiding it successfully so far!
Have you re-installed after the Windows upgrade? If not that might be worth a try - preferably on a test machine if someone has one available.
Grant
We are running Monarch 10.5 Pro at work. I was just migrated over from Windows 7 to Windows 10 recently and Monarch 10.5 Pro does work. The only issue I have is I cannot run any scripts that call Monarch. If I open Monarch first, no problem. It is only when I try to run everything from a script that I have issue. I had no problem under Windows 7.
In Windows 7 I would start Monarch via the script with the following script:
Sub OpenMonarch()
Call Shell(Environ$("COMSPEC") & " /c G:\Accounting\PRM_ACTG\Monarch\BatchFiles\Monarch.bat ", vbHide)
Application.Wait (Now + TimeValue("0:00:10"))
End Sub
that would then call the batch file that started Monarch:
\\Lnk-smb03.tagtmi.com\software\Monarch\Program\Monarch.exe
I run approx. 50 scripts that use Monarch every morning as a scheduled task. So manually starting Monarch each time isn't really feasible.
Are there any gurus out there that can help me?
Thanks in advance for any help.
Ralph
0 -
Altair Forum User said:
We are running Monarch 10.5 Pro at work. I was just migrated over from Windows 7 to Windows 10 recently and Monarch 10.5 Pro does work. The only issue I have is I cannot run any scripts that call Monarch. If I open Monarch first, no problem. It is only when I try to run everything from a script that I have issue. I had no problem under Windows 7.
In Windows 7 I would start Monarch via the script with the following script:
Sub OpenMonarch()
Call Shell(Environ$("COMSPEC") & " /c G:\Accounting\PRM_ACTG\Monarch\BatchFiles\Monarch.bat ", vbHide)
Application.Wait (Now + TimeValue("0:00:10"))
End Sub
that would then call the batch file that started Monarch:
\\Lnk-smb03.tagtmi.com\software\Monarch\Program\Monarch.exe
I run approx. 50 scripts that use Monarch every morning as a scheduled task. So manually starting Monarch each time isn't really feasible.
Are there any gurus out there that can help me?
Thanks in advance for any help.
Ralph
Hi Ralph -
Without getting too technical, have you tried changing your script from using batch files to instead use Monarch 10's COM object?
0 -
Altair Forum User said:
Hi Ralph -
Without getting too technical, have you tried changing your script from using batch files to instead use Monarch 10's COM object?
I am not up-t0-date with writing batch files. I have always programed Monarch with Excel like Kruncher.
You got a way to write a batch program to start Monarch with Windows 10 like I did with Windows 7?
Ralph
0 -
Altair Forum User said:
I am not up-t0-date with writing batch files. I have always programed Monarch with Excel like Kruncher.
You got a way to write a batch program to start Monarch with Windows 10 like I did with Windows 7?
Ralph
The script you supplied above is shelling out to the OS and running a batch file.
You would need to program the steps that are in the batch file into VB/VBA instead - eliminating the batch file altogether.
0