First off, I apologize for taking so long to reply - had some real life stuff that came up.
I'm currently creating a Windows 7 VM, on which I should be able to debug the app, without having to worry about (relatively) trivial matters like visual style support - something that xp doesn't have, which may add complications to rooting out the real cause. In addition, the version of vstudio used to write this, doesn't install in xp.
I do appreciate all the feedback, and help you guys have given me - and apologize for not testing this out fully, on other platforms, before releasing it.
Oh well, I guess those learning experiences just keep on comin' :p
Thanks for your patience :/
Update: The problem with the config file generated by the program, boils down to a simple typo. In the current version, the config file it generates, contains the following line:
When it should read:
The "v" was missing before the 4.0 in the sku attribute.
However, that only covers the .NET error box, not the reason why the app would crash. That turned out to be nothing more than stupidly using real paths, instead of relative...which is why it worked *perfectly* on my computer...and nobody else's.
So, that's fixed. Even tested it out on a "virgin" Win 7 box (i.e. no Vstudio installed), and loaded up fine.
Now, it's still not working on xp - but that, is likely due to visual styling, and I'll go ahead and work on that, by making it use a "normal" window in that case.</supportedruntime></supportedruntime></supportedruntime>
I'm currently creating a Windows 7 VM, on which I should be able to debug the app, without having to worry about (relatively) trivial matters like visual style support - something that xp doesn't have, which may add complications to rooting out the real cause. In addition, the version of vstudio used to write this, doesn't install in xp.
I do appreciate all the feedback, and help you guys have given me - and apologize for not testing this out fully, on other platforms, before releasing it.
Oh well, I guess those learning experiences just keep on comin' :p
Thanks for your patience :/
Update: The problem with the config file generated by the program, boils down to a simple typo. In the current version, the config file it generates, contains the following line:
Code:
< supportedRuntime version="v4.0" sku=".NETFramework,Version=4.0" />
<supportedruntime version="v4.0" sku=".NETFramework,Version=4.0">
When it should read:
Code:
<supportedruntime version="v4.0" sku=".NETFramework,Version=<strong>v</strong>4.0">< supportedRuntime version="v4.0" sku=".NETFramework,Version=[B]v[/B]4.0" />
<supportedruntime version="v4.0" sku=".NETFramework,Version=<strong>v</strong>4.0">
The "v" was missing before the 4.0 in the sku attribute.
However, that only covers the .NET error box, not the reason why the app would crash. That turned out to be nothing more than stupidly using real paths, instead of relative...which is why it worked *perfectly* on my computer...and nobody else's.
So, that's fixed. Even tested it out on a "virgin" Win 7 box (i.e. no Vstudio installed), and loaded up fine.
Now, it's still not working on xp - but that, is likely due to visual styling, and I'll go ahead and work on that, by making it use a "normal" window in that case.</supportedruntime></supportedruntime></supportedruntime>
Last edited: