Kadaan Posted August 24, 2007 Report Share Posted August 24, 2007 When I click the "Save All" button, the dialog box prompting me to select a destination folder doesn't display a folder list:I'm running GYMv1.2b_beta with a NW-706F player under XP Pro SP2 with .NET 2.0. Quote Link to comment Share on other sites More sharing options...
Bawbagg Posted September 28, 2007 Report Share Posted September 28, 2007 I have the same problem.Can anyone feed a solution?? Quote Link to comment Share on other sites More sharing options...
pomj Posted September 28, 2007 Report Share Posted September 28, 2007 I think you don't have the correct version of .net framework installed. I think I've read something about that somewhere. I think you'll need the version GYM was written in. 1.1? Quote Link to comment Share on other sites More sharing options...
rolandinchania Posted October 2, 2007 Report Share Posted October 2, 2007 (edited) I had the same problem with saving the files. Net Framework 1.1 and 2.0 are installed on my Windows XP.After some modifications in the sourcecode of GYM 1.2beta and recompiling it with Visual C#2005 (free express edition) I can save the files now.Now the alterations in the source code:1) In the main.cs findprivate void Form1_Load(object sender, System.EventArgs e) { ///insert this as the first line Control.CheckForIllegalCrossThreadCalls = false;2) In the main.cs find the following lines of code and insert a new line of code after my comment: ///the next line...private void pb_SaveTrack_Click(object sender, System.EventArgs e) { if (g_SaveTracksThread != null) g_SaveTracksThread.Abort(); g_TracksToSave = tl_Tracks.GetSelectedTracks(); g_SaveTracksThread = new System.Threading.Thread(new System.Threading.ThreadStart(SaveTracks)); /// the next line has to be inserted here!!! g_SaveTracksThread.SetApartmentState(ApartmentState.STA); g_SaveTracksThread.Start(); }3) In the main.cs find the following lines of code and insert a new line of code after my comment: ///the next line...private void tl_Tracks_saveTracks(ArrayList tracks) { if (g_SaveTracksThread != null) g_SaveTracksThread.Abort(); g_TracksToSave = tracks; g_SaveTracksThread = new System.Threading.Thread(new System.Threading.ThreadStart(SaveTracks)); /// the next line has to be inserted here!!! g_SaveTracksThread.SetApartmentState(ApartmentState.STA); g_SaveTracksThread.Start(); }4) In the main.cs find the following lines of code and insert a new line of code after my comment: ///the next line...private void pb_SaveTracks_Click(object sender, System.EventArgs e) { if (g_SaveTracksThread != null) g_SaveTracksThread.Abort(); g_TracksToSave = tl_Tracks.GetCurrentViewTrackList(); g_SaveTracksThread = new System.Threading.Thread(new System.Threading.ThreadStart(SaveTracks)); /// the next line has to be inserted here!!! g_SaveTracksThread.SetApartmentState(ApartmentState.STA); g_SaveTracksThread.Start(); }5) recompile the whole gym (not the keywizard)6) I'm not regularly visiting this forum and and I'm not a c# guru so don't expect immediate answers :-(7) Good luck! Edited October 2, 2007 by rolandinchania Quote Link to comment Share on other sites More sharing options...
Bribaba Posted December 5, 2007 Report Share Posted December 5, 2007 I'm having the same folder problem. Is there a fix, other than recompiling the source code?Brian Quote Link to comment Share on other sites More sharing options...
JSP62 Posted December 24, 2007 Report Share Posted December 24, 2007 Not sure how you are getting the error.I think pomj is correct, you need to have net 1.1 installed.Those of you experiencing this problem, are you on Vista? Quote Link to comment Share on other sites More sharing options...
rolandinchania Posted January 2, 2008 Report Share Posted January 2, 2008 Hi,I had the problem with and without Net 1.1 or even 2.0After recompiling Gym runs even on my Vista.Send me an email and I send you my recompiled version.Roland Quote Link to comment Share on other sites More sharing options...
darkpl Posted January 2, 2008 Report Share Posted January 2, 2008 Would you be so nice and send it to d_ark@o2.pl ? Quote Link to comment Share on other sites More sharing options...
Bribaba Posted January 9, 2008 Report Share Posted January 9, 2008 I'd also like the recompiled version of GYM, please: Bribaba@Gmail.comThanks Quote Link to comment Share on other sites More sharing options...
dbarajas Posted January 12, 2008 Report Share Posted January 12, 2008 I would really appreciate it if you could send me the recompiled version of GYM too. My e-mail is noway.noflags.sfh@gmail.com Quote Link to comment Share on other sites More sharing options...
Iyonesco Posted May 17, 2008 Report Share Posted May 17, 2008 Roland, thanks a lot for the fix. After following your instructions it now works fine. Rather than have everyone have to go through the hassle of installing Visual Studio and making the modifications it would probably be easier to just upload the modified version. I've uploaded a modified version of 1.2Beta to a few file hosting sites below:http://rapidshare.de/files/39441978/GYM_1.2Beta.zip.htmlhttp://www.mediafire.com/?c0o34dnhqbyhttp://www.badongo.com/file/9428062Hopefully they'll stay alive for a while but these sites usually delete files if they're not downloaded for a set period of time.Thanks to the original creator of GYM and thanks again to Roland for the instructions. Quote Link to comment Share on other sites More sharing options...
Oei Posted February 6, 2011 Report Share Posted February 6, 2011 My god, please someone tell that there's still a way to somehow get the modified version of GYM to see the folders. My 3 years of careful music collection are stuck in the player and I feel very desperate. Now that I found this thread my hopes got a bit higher. Hope someone still reads this... Please reupload the program if possible! Quote Link to comment Share on other sites More sharing options...
ghobsonuk Posted July 19, 2012 Report Share Posted July 19, 2012 Recently got a new Windows 7 PC & found I couldn't save (no window would come up at all). Downloaded the source, used the copy of Visual Studio 2010 I have at work to open it, which converted the files, added rolandinchania's amendments, compiled it, replaced my old GYM.exe on my NW-HD5 & seems to work for me now. Link here: http://www.sendspace.com/file/aavnu8 Obviously keep a backup of your old GYM.exe just in case it doesn't work for you. Quote Link to comment Share on other sites More sharing options...
PIRATA! Posted September 24, 2012 Report Share Posted September 24, 2012 Recently got a new Windows 7 PC & found I couldn't save (no window would come up at all). Downloaded the source, used the copy of Visual Studio 2010 I have at work to open it, which converted the files, added rolandinchania's amendments, compiled it, replaced my old GYM.exe on my NW-HD5 & seems to work for me now. Link here: http://www.sendspace.com/file/aavnu8 Obviously keep a backup of your old GYM.exe just in case it doesn't work for you. Please provide new link because this one you provide is not working any more!! Thank you very much!!! Quote Link to comment Share on other sites More sharing options...
415k Posted February 6, 2013 Report Share Posted February 6, 2013 HI i am very interested in this modified version of GYM as i cannot see any folder either.... i have been trying to remove my mp3s from my NW-HD3 for years and i stumbled on GYM and i believe this will work... thanks by the way im running Windows XP Quote Link to comment Share on other sites More sharing options...
ghobsonuk Posted March 15, 2013 Report Share Posted March 15, 2013 OK, here's a new link that should stay active as long as I keep it on my Google Drive: https://docs.google.com/folder/d/0BwMWsRbwy_9MalhiX3JlWmlDUkU/edit?usp=sharing As I said before, please back up your old GYM.exe 1st. I had this new version on my work PC, but am not able to test it out right now, but pretty certain it is the one I posted before. Quote Link to comment Share on other sites More sharing options...
sfbp Posted March 15, 2013 Report Share Posted March 15, 2013 Thanks very much. Are you willing to put the source online? If so, we would be willing to upload it to our board here for all to enjoy. Not myself being a GYM user nor an NWZ-HDx owner, can you tell me which walkmen it supports please? The NW-A1200 for example? Admin Quote Link to comment Share on other sites More sharing options...
ghobsonuk Posted March 22, 2013 Report Share Posted March 22, 2013 Thanks very much. Are you willing to put the source online? If so, we would be willing to upload it to our board here for all to enjoy. Not myself being a GYM user nor an NWZ-HDx owner, can you tell me which walkmen it supports please? The NW-A1200 for example? Admin OK, there's now a zip file 'GYMV1.2UPGRADE.zip' in the same folder as the exe. Basically as I said before I opened the source project (downloaded from the GYM website) in Visual Studio 2010, let it convert the project (the UpgradeLog.XML in the zip will give you an idea of what happened there), then added rolandinchania's changes to main.cs, recompiled it & put the GYM.exe out there. As for what versions it will work on, I'm afraid I only have an NW-HD5, so can only say it will definitely work on that. Suspect however it will work for a lot of models if GYM works in general & it's just the folder selection that is causing a problem. Backup your current GYM.exe & try it. Quote Link to comment Share on other sites More sharing options...
sfbp Posted March 22, 2013 Report Share Posted March 22, 2013 No upgrade involved for me, since I don't have the original, having (I thought) no need for it.Is everything a body needs to make and use this software included in what you posted?ThanksStephen Quote Link to comment Share on other sites More sharing options...
ghobsonuk Posted March 28, 2013 Report Share Posted March 28, 2013 Ahhhh. Basically if someone doesn't have GYM at all they need the GYM zip file from http://clientes.netvisao.pt/~sonygym/GYMv1.2b_beta.zip & need to replace the GYM.exe from that zip with the one I'm hosting. Feel free to grab that zip & replace the GYM.exe inside it with mine & host the resulting zip here. Not sure what version that would make it? 1.2c? I have seen reference to 1.3 on this messageboard, but not sure what is involved there. You probably won't have too much interest in GYMV1.2UPGRADE.zip that I put up in that case, that's just the Visual Studio Project that has the source code for the 2 exe's in the download zip Quote Link to comment Share on other sites More sharing options...
sfbp Posted March 28, 2013 Report Share Posted March 28, 2013 Thanks That in turn raises the question: where is the source for the remaining pieces? I'm not an open-source purist but I know that generally these things should at least be available if we post them. I'd better hold off until I know a bit more about GYM, especially if (as it appears to be) using Sony secret knowledge about encryption. Stephen Quote Link to comment Share on other sites More sharing options...
sfbp Posted April 4, 2013 Report Share Posted April 4, 2013 Well.... I just tried the ORIGINAL 1.2b Beta and it ran with my NW-A1200 connected, under XP. I have a totally different problem now - the keywizard refuses to run (I tell a lie, it runs but just site there forever after making one directory on the hard disk). Without the keywizard, GYM refuses to export the tracks. I'm surprised if the NW-A1200 even needs keys because AFAIK all music on that device is unencrypted. I can copy off the files and play them. However GYM does read the database nicely. This means that if one looked at the source one ought to be able to figure out how to make the files on the NW-A1200 (and presumably 1000, and 3000) have the right names. One could borrow the source to write a nice utility to read files on there. (Incidentally I have a hunch this format looks like SS's "backup" format). Any idea what's going on, folks? This is my first experience of this piece of software. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.