This commit is contained in:
parent
091c8f2ada
commit
e2c1ddcb20
17 changed files with 156 additions and 72 deletions
|
@ -116,6 +116,17 @@ CString XYStr;
|
|||
pCmdUI->SetText(XYStr);
|
||||
}
|
||||
|
||||
/*********************************************************************************/
|
||||
bool CMapEditDoc::Question(char *Txt)
|
||||
{
|
||||
CString Str;
|
||||
Str.Format(Txt);
|
||||
int Ret=AfxMessageBox(Str,MB_YESNO , MB_ICONQUESTION);
|
||||
|
||||
if (Ret==IDYES) return(true);
|
||||
return(false);
|
||||
|
||||
}
|
||||
/*********************************************************************************/
|
||||
/*********************************************************************************/
|
||||
/*** Windows Message Handlers ****************************************************/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue