AGS Server Studio
sucks a bit.
Latest Updates RSS
-
arturito
-
arturito
SELECT SERVERPROPERTY(‘productversion’), SERVERPROPERTY (‘productlevel’), SERVERPROPERTY (‘edition’)and
SELECT @@VERSION -
arturito
Problem:
Could not load file or assembly ‘System.Web.Silverlight’ or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0×80070057 (E_INVALIDARG))
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.IO.FileLoadException: Could not load file or assembly ‘System.Web.Silverlight’ or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0×80070057 (E_INVALIDARG))
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.Settings: Copy Local = True
System: Windows 7 64 bit , Visual Studio 2008
Solution: Still working on it
-
arturito
When I write some console application in Bloodshed Dev C++ or Visual Studio, I hate bringing up comand line and typing in the whole path to the program I’ve just written. I found two short ways of having “Press any key to continue…” before the console window disappears. One of them is a good one and the other is bad.
1. Good one
int main() {
// do something
cout<<”Press Enter to continue…”;
cin.get();
}Well, this one really is “Press Enter to continue…”, which shouldn’t be a problem
2. Bad one
int main() {
// do something
system.(“PAUSE”);
}This one is very bad! If you want to know why, read this article:
-
arturito
03.04.2009

-
arturito
#include <ctime> void delay(int n)
{
clock_t start_time, cur_time; start_time = clock(); while((clock() – start_time) < n * CLOCKS_PER_SEC)
{}
}int main()
{
// do something
delay(5);
// delays 5 seconds
} -
arturito
LOL! -
arturito
-
arturito
!What an original idea! Play Street Fighter on You Tube!
-
arturito

