开发思路:
在AutoCAD(或pro ENGINEER)中打开二维(或三维)的CAD图形数据后,通过在该绘图软件中增加的工具条切换到电场计算软件中;电场计算软件在进行电场计算之前,提供各种参数设置功能,对器件内部各元器件的材料及边界条件进行设置;参数设置完成之后,根据实际情况对几何实体进行网格划分,计算之后对计算结果进行图形化处理。请问我应该用那一种开发软件来做二次开发比较好?VC++6.0合适吗
敬礼了,呵呵

解决方案 »

  1.   

    然后在ON_SIZE中处理,判断类型:
    afx_msg void OnSize(
       UINT nType,
       int cx,
       int cy 
    );
    Parameters
    nType 
    Specifies the type of resizing requested. This parameter can be one of the following values: 
    SIZE_MAXIMIZED   Window has been maximized. 
    SIZE_MINIMIZED   Window has been minimized. 
    SIZE_RESTORED   Window has been resized, but neither SIZE_MINIMIZED nor SIZE_MAXIMIZED applies. 
    SIZE_MAXHIDE   Message is sent to all pop-up windows when some other window is maximized. 
    SIZE_MAXSHOW   Message is sent to all pop-up windows when some other window has been restored to its former size. 
    cx 
    Specifies the new width of the client area. 
    cy 
    Specifies the new height of the client area. 
      

  2.   

    以前我使用过HIGH C7.0开发过AutoCAD for dos的应用,现在可能有AutoCAD for Win的专门的二次开发的工具吧
      

  3.   

    最好用XML,描述一下数据显示格式,扩展性比较好。