Page 5 of 20

Re: MXS Bike Setup Application

Posted: Wed Dec 30, 2009 8:03 pm
by yzmxer608
I'm having problems downloading it, MediaFire says it's an invalid file or it was deleted.

Re: MXS Bike Setup Application

Posted: Wed Dec 30, 2009 8:15 pm
by Servatis
I can download it just fine myself.. i'll try to find a second place to upload it for you, hang on :)

Re: MXS Bike Setup Application

Posted: Wed Dec 30, 2009 8:16 pm
by yzmxer608
Hmmm, it worked now :?, must have been a lag in the connection or something.

Re: MXS Bike Setup Application

Posted: Wed Dec 30, 2009 8:20 pm
by LuKe
one word.......SUPERB

Re: MXS Bike Setup Application

Posted: Wed Dec 30, 2009 8:54 pm
by Servatis
yzmxer608 wrote:Hmmm, it worked now :?, must have been a lag in the connection or something.
good to know, was just about to go searching :)

Re: MXS Bike Setup Application (v2.1 30-dec-2009)

Posted: Wed Jan 13, 2010 8:39 pm
by narm33
some one post a setup so i can try it....................?

Re: MXS Bike Setup Application (v2.1 30-dec-2009)

Posted: Fri Jan 22, 2010 10:22 am
by magnusson
hey wen i try to load a settings this comes up:
Image
what do i have to do???

Re: MXS Bike Setup Application (v2.1 30-dec-2009)

Posted: Fri Jan 22, 2010 2:02 pm
by Servatis
like the instruction sais on the first post, the MXS Bike Setup Application.exe file should be located in your personal folder.
if it's not in the personal folder the application will not be able to locate the config file (this will probably be fixed in the next version).

Re: MXS Bike Setup Application (v2.1 30-dec-2009)

Posted: Fri Jan 22, 2010 6:20 pm
by Vellu
Servatis wrote:(this will probably be fixed in the next version).
I don't think it's necessary, because we can always do a shortcut to the desktop. And it would be hard I think because xp and vista have different adresses for pers. folder.

Re: MXS Bike Setup Application (v2.1 30-dec-2009)

Posted: Fri Jan 22, 2010 7:43 pm
by Servatis
Vellu wrote:
Servatis wrote:(this will probably be fixed in the next version).
I don't think it's necessary, because we can always do a shortcut to the desktop. And it would be hard I think because xp and vista have different adresses for pers. folder.
well there is a specially designed class in the .NET framework that allows for easy access to those user folders. So that is not the problem.
There is another problem though; getting into the personal folder from the outside results in denied access on vista/win7, havent tested on xp yet. that was the initial reason for me to program it this way.
trying to find a way around is not as easy as I thought it was, or I might just be looking in the wrong direction :)

Re: MXS Bike Setup Application (v2.1 30-dec-2009)

Posted: Fri Jan 22, 2010 11:11 pm
by jlv
Servatis wrote:like the instruction sais on the first post, the MXS Bike Setup Application.exe file should be located in your personal folder.
if it's not in the personal folder the application will not be able to locate the config file (this will probably be fixed in the next version).
Use SHGetSpecialFolderPath(NULL, path, CSIDL_LOCAL_APPDATA, 0) to get the local appdata folder, then add "MX Simulator\config" to the returned path.

Re: MXS Bike Setup Application (v2.1 30-dec-2009)

Posted: Sat Jan 23, 2010 3:25 am
by Servatis
well i use,

Code: Select all

string configPath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "\\MX Simulator\\config"; 
to save the path, which after a little research i found does basically the same thing as your suggested code.
it works fine on my laptop which runs vista(messed around with admin rights and login etc. to get rid if annoying messages), I haven't tried it on XP yet.
but on my PC which runs Windows 7, it throws an exception that the folder is not accessible due to rights on the folder.

now i was thinking since you can change the attributes of a file(read-only, hidden, etc) through code, the same is probably true for folders.
but i have yet to find a way to temporarily give the app the rights to access the folder.

Re: MXS Bike Setup Application (v2.1 30-dec-2009)

Posted: Sat Jan 23, 2010 3:31 am
by DJ99X
due to rights on the folder.
Thats what shits me about Windows 7, all that folder permission shit

Re: MXS Bike Setup Application (v2.1 30-dec-2009)

Posted: Sat Jan 23, 2010 3:56 am
by ddmx
Ever since XP windows has been anal about "user account control".

Re: MXS Bike Setup Application (v2.1 30-dec-2009)

Posted: Sat Jan 23, 2010 4:05 am
by DJ99X
Yeah, UAC annoys the shit out of me. I ended up disabling it completely, despite the risks it may involve.