Is it possible to display a value in a window?
I want you display the mouse position in a window, but String can only handle std::strings.
Must I convert my float value to string to be able to display the text?
Heero
*Solved*
It now works, i use this code to display a value in the window.
_itoa(Sprite.GetRotation(), buffer, 10);
String.SetText(buffer);