So you’ve installed an Application, in my case VB 2010 Express Edition. While running the application you get this error “no imaging component suitable to complete this operation was found.” Great, you mutter to yourself as you wonder what that actually means, we all know MS is great when it comes to descriptions of what errors actually mean. Anyhow, for those of you out there who encounter this issue, here’s the resolution. Please pick the right type of windows you are running.
For 32 bit windows
http://www.microsoft.com/downloads/details.aspx?FamilyID=8e011506-6307-445b-b950-215def45ddd8&displaylang=en
For 64 bit windows
http://www.microsoft.com/downloads/details.aspx?familyid=F64654AC-6E26-41D9-A90A-0E7783B864EE&displaylang=en
I installed that and everything is working now.
I had this issue, and it’s due to a missing Audio codex, the best one I’ve found so far is from Perian.org. It’s easy to use, download it, install it and you should be good to go.
I recently started using YUIAspNet.dll and the compiled version from 2009, looks like it has a bug or two in it. The problem with the Link button where you set the NavigateURL on is the fact that it is getting the AbsolutePath, and not the AbsoluteUri.
AddProperty("NavigateUrl", NavigateUrl.AbsolutePath);
Change that line to:
AddProperty("NavigateUrl", NavigateUrl.AbsoluteUri);
Make sure you build the DLL again, and overwrite what you have in your current bin folder.