Example #1
0
void BaseWordForm::ShowInfoDlg()
{
	wchar_t * code = GetShowInfoCode();

	if (!code)
		return;

	Information * info = new Information();
	if (info)
	{
		info->SetType(code);
		info->ShowPopup(this);
		AddToDestructList(info);
	}
}