This one works with no problem:
wxMessageBox(_("Text"), _("Title"));
This one has no compile or run-time error but does nothing, no message box is displayed:
MessageBox(*(HWND *) KeyloggerFrame::GetHandle(), _("Text"), _("Title"), MB_OK);
Have any idea why the second one fails?