找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

查看: 1136|回复: 2

[教学]:如何在MFC的“模式”对话框执行ACAD的acedGetXXX函数

[复制链接]

已领礼包: 145个

财富等级: 日进斗金

发表于 2002-3-10 09:37:36 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
How can I use acedGetxxx() functions from a MFC modal dialog box ?  
ID    1597  
Applies to:    AutoCAD 2000
AutoCAD 2000I
AutoCAD 2002


This document is part of    MFC     


Question
How can I use acedGetXXX() functions from a MFC modal dialog box ?
Answer
There is no user intervention allowed at the AutoCAD main frame window or other
child windows when a child modal dialog is active. Since acedGetXXX functions
need to get user inputs mostly, they cannot be used pending an active modal
dialog.

Fortunately, you can hide and activate a modal dialog in your ARX application
inside AutoCAD. Generally speaking, when a modal dialog is active, MFC disables
the access to the parent window until the modal dialog is dismissed. This is
true for most of the windows applications, so there is no exception for AutoCAD.

To do this, you need to hide the modal dialog first, activate the parent, do
acedGetXXX(), activate the modal dialog, set the focus on it and set the parent
window disabled.


  1. GetParent ()->EnableWindow (TRUE) ; // Enable the parent
  2. ShowWindow (SW_HIDE) ; // Hide ourself
  3. GetParent ()->SetFocus () ; // Give focus to the parent
  4.                 // you do not really need to
  5.                 // do that (but it's better)

  6. ads_point pt ; // Do something...
  7. acedGetPoint (NULL, "\nPick a point: ", pt) ;
  8. acutPrintf ("\nYou picked (%.2lf, %.2lf, %.2lf,)\n",
  9.     pt [X], pt [Y], pt [Z]
  10. ) ;

  11. ShowWindow (SW_SHOW) ; // Show ourself
  12. SetFocus () ; // Give focus to ourself
  13. GetParent ()->EnableWindow (FALSE) ; // Disable the parent
  14. EnableWindow (TRUE) ; // Because our parent was disabled
  15.               // we need to enable ourself
复制代码
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
发表于 2002-3-12 06:52:49 | 显示全部楼层
已经调试成功!
void gongchengtu::OnButton3()
{
ads_point pt1;
GetTopLevelParent()->EnableWindow(TRUE
ShowWindow(SW_HIDE);
GetTopLevelParent()->SetFocus();
ads_getpoint(NULL,"\n 坐标点:",pt1);
m_px=pt1[0];
m_py=pt1[1];
ShowWindow(SW_SHOW);
SetFocus() ; // Give focus to ourself
EnableWindow (TRUE) ;
UpdateData(FALSE);
}
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

已领礼包: 145个

财富等级: 日进斗金

 楼主| 发表于 2002-3-13 01:05:13 | 显示全部楼层
最初由 xulixin 发布
[B]已经调试成功!
void gongchengtu::OnButton3()
{
ads_point pt1;
GetTopLevelParent()->EnableWindow(TRUE
ShowWindow(SW_HIDE);
GetTopLevelParent()->SetFocus();
ads_getpoint(NULL,"\n 坐标点:",pt1)... [/B]


能跟大家说说问题的原因吗? 如何改就可以了?
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|申请友链|Archiver|手机版|小黑屋|辽公网安备|晓东CAD家园 ( 辽ICP备15016793号 )

GMT+8, 2024-11-16 04:54 , Processed in 0.184894 second(s), 35 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表