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

Pages: [1]
1
Graphics / Buttons
« on: August 31, 2014, 12:23:58 am »
I want create 2 buttons, but I don't know how.

(click to show/hide)

2
Graphics / Re: Int to string
« on: August 29, 2014, 12:53:21 am »
Thanks Strelok! Working. :)

How about add to SFML this function:

#include <sstream>

std::string Convert_Int_to_str(int Integer)
{

std::string result;

result = static_cast<std::ostringstream*>( &(std::ostringstream() << Integer) )->str();
return result;

}

This will useful function for some guys like me.

3
Graphics / Int to string
« on: August 28, 2014, 01:56:46 am »
How correctly convert int to std::string?

OS: Windows
IDE: CodeBlocks with MinGW 4.7 (32 bit)

(click to show/hide)

Pages: [1]
anything