Registriert seit: 18. Nov 2015
Ort: Kehl
678 Beiträge
Delphi 11 Alexandria
|
AW: IntToStr zu WCHAR
5. Aug 2017, 12:27
Zu Deiner Lösung sag ich jetzt nix.........
Code:
#include <stdio.h>
wchar_t Buffer[100];
int err = _snwprintf_s(Buffer, 100, 99, L"%.3f x %.3f y , %6.2f FPS", aMediaProperty.Video_Width, aMediaProperty.Video_Height, aMediaProperty.Video_FPS);
if (err <0){
// Buffer to small fix it
}
else
SetWindowText(hLblVideoInfo, Buffer);
Fritz Westermann
|
|
Zitat
|