i want to show the messsagebox using win32 API...
int pwdexpirydays=5;
MessageBox(hdlg,(LPCSTR)("Your password will expire in %d days",&pwdexpirydays),(LPCSTR)"Logon Message",MB_OK | MB_ICONINFORMATION);
But i cant get the value...
How to i concate the pwdexpirydays
values into "Your password will expire in %d days"
this string.