- 积分
- 430
- 明经币
- 个
- 注册时间
- 2002-8-15
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
发表于 2003-4-16 13:28:00
|
显示全部楼层
为什么我用了,对话框不能隐藏!
void GRALIBMAIN::OnButtonInsert()
{
// TODO: Add your control notification handler code here
BeginEditorCommand();//Òþ²Ø¶Ô»°¿òº¯Êý
ads_point basept;
InsertDlg Indlg;
// int nReturnValue = Indlg.DoModal();
if (acedGetPoint(NULL, "\nPick a point: ", basept) == RTNORM)
{
CompleteEditorCommand();
// m_strXPt.Format("%g", basept[X]);
// m_strYPt.Format("%g", basept[Y]);
// m_strZPt.Format("%g", basept[Z]);
}
else
{
CancelEditorCommand();
}
} |
|