Author Topic: Jukeboxpro encountered a problem and needs to close  (Read 12388 times)

chenklein

  • Guest
Re: Jukeboxpro encountered a problem and needs to close
« Reply #15 on: May 02, 2010, 06:08:11 PM »
jbp uninstalled.
Note that it left the JukeBlasterPro.license file in c:program files\Juke Blster Pro directory.

Steve

  • Administrator
  • Hero Member
  • *****
  • Posts: 2313
    • Jukeblaster.com
Re: Jukeboxpro encountered a problem and needs to close
« Reply #16 on: May 02, 2010, 06:10:16 PM »
Ok

When you have removed jbp, look on your computer in:-   'My Music/playlists' or 'Music/Playlists' for files named "jbp.wpl, jbp (2).wpl, jbp (3).wpl" etc etc and delete them.


Send us some crypto :-)
It helps us pay for the forum and new jukebox developments


Bitcoin
bc1qlfjvxfpj75wcpraa5phvvxjpc9w7dxhd8y9s0k

Doge
DGvvJZ6JNxcGtSSbgjaNE5zDe13YWwaPVE


chenklein

  • Guest
Re: Jukeboxpro encountered a problem and needs to close
« Reply #17 on: May 02, 2010, 06:23:43 PM »
search found 2016 files with extension .wpl & with names starting with jbp, plylst.. - should i delete them all?

chenklein

  • Guest
Re: Jukeboxpro encountered a problem and needs to close
« Reply #18 on: May 02, 2010, 06:27:39 PM »
Steve,

Been doing some searching on Google for the clr20r3 exception - this is what I found, with some suggestions for trapping exceptions in your code...

Its a bug in your code, so you need to debug - the reason you get the event is because an exception is being thrown, but hasnt been caught - i.e. its an unhandled exception, and the default behaviour in .Net 2 for unhandled exceptions is to terminate the application and report the event.

You can always add in a handler to pickup unhandled exceptions, but the root cause is the same - its a bug in your application code.

Code Snippet
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(WorkerThreadHandler);
public void WorkerThreadHandler(object sender, UnhandledExceptionEventArgs args)
{
if (!(args.ExceptionObject is ThreadAbortException))
{
Exception exc = args.ExceptionObject as Exception;
MessageBox.Show(exc.ToString());
}
}

Hope this helps

 
This is an unhandled exception report. In .NET 2.0 (unlike .NET 1.1) the appDomain will unload when there is an unhandled exception. You can wire up your app to get more information about unhandled exceptions. Take a look at this article:
http://www.eggheadcafe.com/articles/20051205.asp

Steve

  • Administrator
  • Hero Member
  • *****
  • Posts: 2313
    • Jukeblaster.com
Re: Jukeboxpro encountered a problem and needs to close
« Reply #19 on: May 02, 2010, 06:38:58 PM »
Steve,

Been doing some searching on Google for the clr20r3 exception - this is what I found, with some suggestions for trapping exceptions in your code...

Its a bug in your code, so you need to debug - the reason you get the event is because an exception is being thrown, but hasnt been caught - i.e. its an unhandled exception, and the default behaviour in .Net 2 for unhandled exceptions is to terminate the application and report the event.

You can always add in a handler to pickup unhandled exceptions, but the root cause is the same - its a bug in your application code.

Code Snippet
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(WorkerThreadHandler);
public void WorkerThreadHandler(object sender, UnhandledExceptionEventArgs args)
{
if (!(args.ExceptionObject is ThreadAbortException))
{
Exception exc = args.ExceptionObject as Exception;
MessageBox.Show(exc.ToString());
}
}

Hope this helps

 
This is an unhandled exception report. In .NET 2.0 (unlike .NET 1.1) the appDomain will unload when there is an unhandled exception. You can wire up your app to get more information about unhandled exceptions. Take a look at this article:
http://www.eggheadcafe.com/articles/20051205.asp

Ok Geoff
Thanks for that lesson, what was the cause of the exception ?, i will write code to handle it right now.


Send us some crypto :-)
It helps us pay for the forum and new jukebox developments


Bitcoin
bc1qlfjvxfpj75wcpraa5phvvxjpc9w7dxhd8y9s0k

Doge
DGvvJZ6JNxcGtSSbgjaNE5zDe13YWwaPVE


chenklein

  • Guest
Re: Jukeboxpro encountered a problem and needs to close
« Reply #20 on: May 02, 2010, 06:46:36 PM »
Ok, so how do we progress now?
I have deleted the 2016 files in my disk with extension .wpl.
Should I try to reinstall JBP next?

Steve

  • Administrator
  • Hero Member
  • *****
  • Posts: 2313
    • Jukeblaster.com
Re: Jukeboxpro encountered a problem and needs to close
« Reply #21 on: May 02, 2010, 06:59:05 PM »
Geoff

Please stop trying to find the answer by googling error codes, they will not give you the answer.

If I am to help you, you must listen to what I say and follow my instructions or we are just going round in circles wasting each other's time,

I have not told you to delete all 1600 wpl files, I told you the ones to delete & where to find them.

Go into your recycle bin and restore them, then follow my instructions to delete only the files i specified.

I am going to take a break now (my head hurts lol), I will help you with the next step if you can complete the first step by the time I get back.


Send us some crypto :-)
It helps us pay for the forum and new jukebox developments


Bitcoin
bc1qlfjvxfpj75wcpraa5phvvxjpc9w7dxhd8y9s0k

Doge
DGvvJZ6JNxcGtSSbgjaNE5zDe13YWwaPVE


chenklein

  • Guest
Re: Jukeboxpro encountered a problem and needs to close
« Reply #22 on: May 02, 2010, 07:17:43 PM »
Steve,
Sorry to have offended you. Hope your head is feeling better.
I have restored files from the recycle bin. Only jbp.wpl & jbp (*).wpl from My Musc/playlists have been deleted. (still ~1600 files).
Awaiting your instructions.

Geoff.


Steve

  • Administrator
  • Hero Member
  • *****
  • Posts: 2313
    • Jukeblaster.com
Re: Jukeboxpro encountered a problem and needs to close
« Reply #23 on: May 02, 2010, 08:18:12 PM »
Geoff

You havn't offended me dude dont worry  ;), I just get frustrated when I'm trying to get the other party to do something so I can help them, and they go off and do something diffrent to what I said, it just wastes time and nothing gets fixed.

So, lets carry on, there are some other files to delete and they are harder to find than the wpl files so I will wait till you come back on line to proceed, I will be on for the rest of the night, just reply when you are ready to go  ;D


Send us some crypto :-)
It helps us pay for the forum and new jukebox developments


Bitcoin
bc1qlfjvxfpj75wcpraa5phvvxjpc9w7dxhd8y9s0k

Doge
DGvvJZ6JNxcGtSSbgjaNE5zDe13YWwaPVE


chenklein

  • Guest
Re: Jukeboxpro encountered a problem and needs to close
« Reply #24 on: May 02, 2010, 08:44:11 PM »
READY TO GO

Steve

  • Administrator
  • Hero Member
  • *****
  • Posts: 2313
    • Jukeblaster.com
Re: Jukeboxpro encountered a problem and needs to close
« Reply #25 on: May 02, 2010, 08:53:11 PM »
Ok

You have to be very very very carefull hear and only delete the folders (NOT files,  FOLDERS!) that are shown in the picture bellow, note that when you are trying to find "Admin/AppData" folder you will replace Admin with the name of the computer user account name, might be Chen ? or something ?.

When you have found the folders "JukeBlasterPro" & the "_" folder/s delete them then come back to me


« Last Edit: May 02, 2010, 08:54:53 PM by Steve »
Send us some crypto :-)
It helps us pay for the forum and new jukebox developments


Bitcoin
bc1qlfjvxfpj75wcpraa5phvvxjpc9w7dxhd8y9s0k

Doge
DGvvJZ6JNxcGtSSbgjaNE5zDe13YWwaPVE


chenklein

  • Guest
Re: Jukeboxpro encountered a problem and needs to close
« Reply #26 on: May 02, 2010, 09:11:26 PM »

Found:
C:\Documents and Settings\Administrator\Local Settings\Application Data\’œ‘‡—Š__‰“œ’†™ŠŠ\Juke_Blaster_Pro.exe_Url_d1wmxwy1qwqsc4vzhrc2iitap251bqiu

Should i delete C:\Documents and Settings\Administrator\Local Settings\Application Data\’œ‘‡—Š__‰“œ’†™ŠŠ

or only the Juke_Blaster_Pro.exe_Url_d1wmxwy1qwqsc4vzhrc2iitap251bqiu folder

Steve

  • Administrator
  • Hero Member
  • *****
  • Posts: 2313
    • Jukeblaster.com
Re: Jukeboxpro encountered a problem and needs to close
« Reply #27 on: May 02, 2010, 09:20:17 PM »
Hi 

Yes delete the folders in red, did you find any similar in the same location ?


C:\Documents and Settings\Administrator\Local Settings\Application Data\’œ‘‡—Š__‰“œ’†™ŠŠ\Juke_Blaster_Pro.exe_Url_d1wmxwy1qwqsc4vzhrc2iitap251bqiu


Send us some crypto :-)
It helps us pay for the forum and new jukebox developments


Bitcoin
bc1qlfjvxfpj75wcpraa5phvvxjpc9w7dxhd8y9s0k

Doge
DGvvJZ6JNxcGtSSbgjaNE5zDe13YWwaPVE


chenklein

  • Guest
Re: Jukeboxpro encountered a problem and needs to close
« Reply #28 on: May 02, 2010, 09:24:16 PM »
Done.
Only found 1 folder at this location.
No others anywhere that match the description.

Steve

  • Administrator
  • Hero Member
  • *****
  • Posts: 2313
    • Jukeblaster.com
Re: Jukeboxpro encountered a problem and needs to close
« Reply #29 on: May 02, 2010, 09:26:44 PM »
ok

So you didnt find one that is called "JukeBlasterPro" or any that just have an underscore as a name like this " _ " ?


Send us some crypto :-)
It helps us pay for the forum and new jukebox developments


Bitcoin
bc1qlfjvxfpj75wcpraa5phvvxjpc9w7dxhd8y9s0k

Doge
DGvvJZ6JNxcGtSSbgjaNE5zDe13YWwaPVE