Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Fuv

Pages: 1 2 [3]
31
Yeah, its workin'. I should have read that tutorial more carefully. Thanks.

Kind Regards
Fuv

32
Even if I wrote in code(only it it main!):
Code: [Select]
sf::Window w;

i got the message box with error.

33
Quote from: "Mindiell"
maybe an App.Close() can be a good idea, no ?


no, the problem still shows.

Quote
Is this really your main ? it's a bit empty



Yes. its all I have. Yesterday I started using SFML and I m using this tutorial:
http://www.sfml-dev.org/tutorials/1.6/window-window.php

Kind Regards
Fuv

34
Now I started making Window. I added necessary libs to linker output: sfml-window.lib and it compiles and links good, but after running I got msg:
Code: [Select]
Run-Time Check Failure #2 - Stack around the variable 'App' was corrupted.

I dont know what is going on. I read that its my code fault, but I copied it from tutorial:
Code: [Select]
#include <SFML/Window.hpp>

int main()
{
sf::Window App(sf::VideoMode(800, 600, 32), "SFML Window");

}


And error is becouse of the line in main(), becouse if i put it into comment program works good(doing nothing but works)

Kind Regards
Fuv

35
General / [SOLVED]No sfml-system.dll found?
« on: May 28, 2010, 02:54:07 pm »
Hello all,
I am trying to make my first app with SFML. I have been using this tutorial to Visual C++ 2008:
http://www.sfml-dev.org/tutorials/1.6/start-vc.php

I ve done:
-Go to the Tools / Options menu, then to Projects and Solutions / VC++ Directories and in the Include files, add SFML\include and in Library files, add SFML-\lib
-Copy the code from the site
-Linker / Input item/Additional dependencies/sfml-system.lib.
And I also copied all DLL and BIN files to the folder named lib in Visual C++.

And I got message(translated from Polish by me):
Code: [Select]
This application has failed, becouse no sfml-system.dll file has been found. Reinstalling the application may fix this problem

How to solve the problem?

Kind Regards
Fuv

//edit:
Just I had to put all dlls and bins into folder where .exe file of my program is.
Kind Regards

Pages: 1 2 [3]