File Sonic Premium Account - 10 November 2011




USER : ich@barthel-hh.de
PASS :220368

free2all.in_1010@hotmail.com - free2all1010
Premium until 2011-11-10 02:24:42

mjacobs2050@yahoo.com - v513p9185
Premium until 2011-11-29 06:22:43

serkanerol78@mynet.com - 7805burcu
Premium until 2011-11-23 19:53:45

yerimfall@gmail.com - 29mai72
Premium until 2011-11-28 03:20:30

sissititi@neuf.fr - veuri1
Premium until 2011-11-09 08:26:30

User : scretsqurl@yahoo.com
Pass : totoro 
 
User: bfletcher@comcast.net
Pass: internet 
Premium Until 15 November 2011


Read More.... File Sonic Premium Account - 10 November 2011

PCSX2 Update! 0.9.9 r4948

Today I Want to Share Daily Updated PCSX2.
PCSX2 0.9.9 r4948 Free Completed With Prefered Plugin. I Has Few Fix Like:
cmake: allow to easily set global compilation flags






Ok Enough Explanations Let's Just Download And Try It!

Download:

Visual C++ 2010 (x86) runtime package (Must Be Installed) Click Here
Bios Click Here
PCSX2 0.9.9 r4948 Click Here 
Read More.... PCSX2 Update! 0.9.9 r4948

PCSX2 Update! 0.9.9 r4947

Today I Want to Share Daily Updated PCSX2.
PCSX2 0.9.9 r4947 Free Completed With Prefered Plugin. I Has Few Fix Like:
Change a few compiler options in Linux to remove a few warnings during compilation.





Ok Enough Explanations Let's Just Download And Try It!

Download:

Visual C++ 2010 (x86) runtime package (Must Be Installed) Click Here
Bios Click Here 
Pcsx2 0.9.9 r4947 http://adf.ly/3anT1
Read More.... PCSX2 Update! 0.9.9 r4947

.Net Framework Initializing Error

I got this error yesterday while running FxCop application from Microsoft. I think the problem was because of the .Net framework installed on my machine, I have only .Net 4.0 installed and no other versions of .Net. And I think FxCop was expecting .Net 2.0 in the system.
.Net Framework Initialization Error – Unable to find a version of the runtime to run this application
.Net Framework Initialization Error – Unable to find a version of the runtime to run this application

After few searches I found the resolution for this issue. You can add supportedRuntime tag to the application config (It will be like ApplicationName.exe.config in the same folder where application installed.) file, under startup tag, and set the attribute of the supportedRuntime as the version of the .Net Framework installed in the system.
Open Note Pad And Enter This Code:
<startup>
  <supportedRuntime version="v4.0.30319" />
</startup>
After That Save And Give Name Like The Application Name
ApplicationName.exe.config

Example, I Want To Open Linkbucks Superior From Ubers.org

linkbuckssuperior.exe.config

Edited:
New Code For Fixing This Issues Is Here:
<configuration>
   <startup>
      <supportedRuntime version="your current installed framework"/>
      <supportedRuntime version="your current installed framework"/>
   </startup>
</configuration>
Example: I have Installed .Net Framework 4, So Here Is The Code:
<configuration>
   <startup>
      <supportedRuntime version="v4.0.30319"/>
      <supportedRuntime version="v4.0.30319"/>
   </startup>
</configuration>
Hope You Could Configure It Ur Self Or You Could Ask Me To Make This Cofig By Comment
Read More.... .Net Framework Initializing Error