What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Panda - Botcenter

same here. Win 7. have latest C++ and even did the link you posted for the 2008. and also the 3.5 net frame. still gives that error (even tried as adminstrator) same thing
 
same here. Win 7. have latest C++ and even did the link you posted for the 2008. and also the 3.5 net frame. still gives that error (even tried as adminstrator) same thing

same, win7, latest C++, latest framework, and error.
 

i found it,
Code:
- assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
- trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
- security>
- requestedPrivileges>
  requestedExecutionLevel level="asInvoker" uiAccess="false" /> 
  /requestedPrivileges>
  /security>
  /trustInfo>
- dependency>
- dependentAssembly>
  assemblyIdentity type="[COLOR="red"]win32[/COLOR]" name="[COLOR="red"]Microsoft.VC90.DebugCRT" version="9.0.21022.8" processorArchitecture="x86" [/COLOR]publicKeyToken="[COLOR="red"]1fc8b3b9a1e18e3b[/COLOR]" /> 
  /dependentAssembly>
  /dependency>
  /assembly>
and even the folder:
Inside that folder you'll probably see a stack of subfolders with crazy looking names. The one you would need to have to solve the problem above is called x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_none_bcb86ed6ac711f91, which as you can see has a name that closely resembles the properties of the assemblyIdentity tag in the XML listed above.
which means that i have that installed, yet it still wont let me run it. still the same error.
 
Last edited:
i found this

Probably you've attempted to run your program on a machine that doesn't have the VC redistributables installed, or you're attempting to run a debug build on a machine that doesn't have Visual Studio installed (the debug libraries aren't redistributable).

Maybe you just relese the Debug version.
you need to compiile it too a realese
 
i found it,
Code:
- assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
- trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
- security>
- requestedPrivileges>
  requestedExecutionLevel level="asInvoker" uiAccess="false" /> 
  /requestedPrivileges>
  /security>
  /trustInfo>
- dependency>
- dependentAssembly>
  assemblyIdentity type="[COLOR="red"]win32[/COLOR]" name="[COLOR="red"]Microsoft.VC90.DebugCRT" version="9.0.21022.8" processorArchitecture="x86" [/COLOR]publicKeyToken="[COLOR="red"]1fc8b3b9a1e18e3b[/COLOR]" /> 
  /dependentAssembly>
  /dependency>
  /assembly>
and even the folder:

which means that i have that installed, yet it still wont let me run it. still the same error.
Try with this version : View attachment x86_microsoft.vc90.debugcrt_1fc8b3b9a1e18e3b_9.0.21022.8_none_96748342450f6aa2.zip
 
Yep this was the debug version with visual studio 2008, should work with the dll I posted above, until i post the release one. Completely forget about it.
Lack of sleep is messing with me... :)
 
Yep this was the debug version with visual studio 2008, should work with the dll I posted above, until i post the release one. Completely forget about it.
Lack of sleep is messing with me... :)


Where to put the files you linked ? C:\WINDOWS\WinSxS ?!

Anything else, cuz I just put your folder in that folder, but nothing happens.
 
Where to put the files you linked ? C:\WINDOWS\WinSxS ?!

Anything else, cuz I just put your folder in that folder, but nothing happens.

Weird. Can't help you now, I will be focused on building a release version.
 
Give him the time he need?s and stop kidding him

I was actually serious about wanting to know howlong compiling takes.. Im not a coder nor never will be one.. I was just curious since the size of the programm aint that big. Does it involve loads of work? or is it just press Compile in a programm? Wasn't there to push him in anyway tbh :)
 
I was actually serious about wanting to know howlong compiling takes.. Im not a coder nor never will be one.. I was just curious since the size of the programm aint that big. Does it involve loads of work? or is it just press Compile in a programm? Wasn't there to push him in anyway tbh :)
In fact a few seconds, but that's more about correcting compiling errors... :D
 
I set it up right, but when i push the "start monitoring" it gives me :
Unhandled exception has occurred in your application. if you click continye, the application will ignore this error and attempt to continue. if you click quit, the application will close immediately. External component has thrown an exception.
and here is the details of the message
View attachment Error.txt
Once i press continue, nothing happens after.
(Windows 7 = 64bit)
 
Last edited:
Back
Top