I can not get the most trivial programs to run. It always gives me the same error: http://img215.imageshack.us/img215/2116/capturezk.png
or
A buffer overrun has occurred in SFMLTest04.exe which has corrupted the program's internal state. Press Break to debug the program or Continue to terminate the program.
or
SFMLTest04.exe has triggered a breakpoint
1 2 3 4 5 6 7 8 9 10 11
#include <SFML/Window.hpp>
int main()
{
sf::Window App(sf::VideoMode(800,600,32), "test");
while ( true )
{
App.Display();
}
return 0;
}