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 - marox

Pages: [1]
1
General / Change Icon of *.exe
« on: September 18, 2008, 12:19:55 am »
the universal method(all comilers, windows only) 8) :
add a file with rc as extension to tyour project, then this line:

Code: [Select]
1 ICON "your_ico.ico"then compile.
PS:use  SnIco Edit to create new icon, or , or Icon Sushi to extract it from an executable.
PS2: sorry for my english

2
General / Another annoying beginnerĀ“s question
« on: September 13, 2008, 12:02:06 am »
to convert float to string, use this:

Code: [Select]
#include <sstream>
template< T > string to_string(T value){
ostream oss;
oss << value;
return oss.str();
}

PS: it worls also with int, long, double ...

3
General / Another annoying beginnerĀ“s question
« on: September 12, 2008, 09:49:29 pm »
how do you limit your framelimit?

4
Window / sf::Input
« on: September 09, 2008, 12:26:26 am »
you can do that with Event class ;)

5
Window / Inherit from RenderWindow
« on: May 18, 2008, 03:33:36 pm »
link error?

Pages: [1]
anything