Win32 Question

Started by
1 comment, last by aajd 21 years, 10 months ago
Is there anyway of converting a float to an string? Or is there a way of making the edit boxes in the Win32 SDK displaying floating point numbers? I''m currently using SetDlgItemInt() but this of course converts the number to an integer. I was thinking of converting the float to the string because then I would be able to use SetDlgItemText() to make the number appear in the edit box. aajd
Advertisement
evct(), fvct(), gvct(), sprintf()

basically, you need to print the number to a buffer (e.g. sprintf(buf,"%f",number); ) and then SetDlgItemText();

Superpig
- saving pigs from untimely fates
- sleeps in a ham-mock at www.thebinaryrefinery.cjb.net

Richard "Superpig" Fine - saving pigs from untimely fates - Microsoft DirectX MVP 2006/2007/2008/2009
"Shaders are not meant to do everything. Of course you can try to use it for everything, but it's like playing football using cabbage." - MickeyMouse

sprintf..
---visit #directxdev on afternet <- not just for directx, despite the name

This topic is closed to new replies.

Advertisement