Jump to content

rolandinchania

Members
  • Posts

    4
  • Joined

  • Last visited

Previous Fields

  • PlayStation Network ID
    NW-HD5

rolandinchania's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, I had the problem with and without Net 1.1 or even 2.0 After recompiling Gym runs even on my Vista. Send me an email and I send you my recompiled version. Roland
  2. may be this link might help, but you need some programing experience http://www.atraclife.com/forums/index.php?...ost&p=28235
  3. may be the following thread might be useful, however it needs some programing knowledge... http://www.atraclife.com/forums/index.php?...ost&p=28235
  4. 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 find private 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!
×
×
  • Create New...