Skocz do zawartości

formatowanie w winapi


Nemesis

Recommended Posts

Aby zamienic liczbe na string mozna uzyc alternatywnej funkcji Win Api. Dziala identycznie jak funkcje biblioteczne c, ale dla kodera WinApi chyba to rozwiazanie powinno byc troche przyjemniejsze.
Uzyj funkcji Api wsprintf:

int wsprintf(

LPTSTR lpOut, // pointer to buffer for output
LPCTSTR lpFmt, // pointer to format-control string
... // optional arguments
);

Uzycie :

int b=10; ;liczba do konwersji
char text[2]; ;bufor na text
wsprintf(text,"%d",b);
MessageBox(0,text,"TEST",MB_OK);

Formatowanie identyczne jak w funkcjach c (np "%d,%f itd...)

Link do komentarza
Udostępnij na innych stronach

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Gość
Odpowiedz...

×   Wkleiłeś zawartość bez formatowania.   Usuń formatowanie

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Utwórz nowe...