iCAx开思工具箱

标题: 一启动注册文件 proe就自动退出 [打印本页]

作者: LIRUI616    时间: 2009-3-23 11:13
标题: 一启动注册文件 proe就自动退出
我想添加一个菜单栏“拉深模设计” 和一个菜单栏按钮“筒形件拉深模具设计”
DLL文件已经在VC中成功组建  信息文件和注册文件(PRODD.DAT)也写好了
但是在proe里注册PRODD.DAT以后,一点启动PROE就自动退出了
下面是CPP文件及信息文件和注册文件内容,高手们给看看是怎么回事啊,谢谢!

// PRODD.cpp : Defines the initialization routines for the DLL.
//
#include "stdafx.h"
#include "PRODD.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#include"ProMenu.h"
#include"ProUtil.h"
#include"ProMenubar.h"

//
// Note!
//
//  If this DLL is dynamically linked against the MFC
//  DLLs, any functions exported from this DLL which
//  call into MFC must have the AFX_MANAGE_STATE macro
//  added at the very beginning of the function.
//
//  For example:
//
//  extern "C" BOOL PASCAL EXPORT ExportedFunction()
//  {
//   AFX_MANAGE_STATE(AfxGetStaticModuleState());
//   // normal function body here
//  }
//
//  It is very important that this macro appear in each
//  function, prior to any calls into MFC.  This means that
//  it must appear as the first statement within the
//  function, even before any object variable declarations
//  as their constructors may generate calls into the MFC
//  DLL.
//
//  Please see MFC Technical Notes 33 and 58 for additional
//  details.
//
/////////////////////////////////////////////////////////////////////////////
// CPRODDApp
BEGIN_MESSAGE_MAP(CPRODDApp, CWinApp)
//{{AFX_MSG_MAP(CPRODDApp)
  // NOTE - the ClassWizard will add and remove mapping macros here.
  //    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPRODDApp construction
CPRODDApp::CPRODDApp()
{
// TODO: add construction code here,
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CPRODDApp object
CPRODDApp theApp;
extern "C" int user_initialize()
{
    ProError status;
ProFileName MsgFile;
    uiCmdCmdId   PushButton_cmd_id1;
ProStringToWstring(MsgFile, "PRODD.txt");//设置菜单信息文件名
    /*=========================================================*\
     添加菜单条
    \*=========================================================*/
status=ProMenubarMenuAdd ("PRODD", "拉深模设计",
                        "Utilities", PRO_B_TRUE, MsgFile);
    /*=========================================================*\
     菜单按钮设置
    \*=========================================================*/
//设置菜单按钮的动作函数(例8-1)
    //添加菜单按钮
ProMenubarmenuPushbuttonAdd("PRODD", "bddcad", "筒形件拉深模具设计",
             "筒形件拉深模具设计", NULL,
           PRO_B_TRUE, PushButton_cmd_id1, MsgFile);
return status;
}
/*===============================================================*\
FUNCTION: user_terminate()
\*===============================================================*/
extern "C" void user_terminate()
{
   AFX_MANAGE_STATE(AfxGetStaticModuleState());
}

信息文件PRODD.TXT:

拉深模设计
PRODD
拉深模设计
#
筒形件拉深模具设计
bdcad
筒形件拉深模具设计
#
筒形件拉深模具设计
bdcad
筒形件拉深模具设计
#

注册文件:
NAME       PRODD
EXEC_FILE  E:\document\PROE二次开发\PRODD\Release\PRODD.dll
TEXT_DIR   E:\document\PROE二次开发\PRODD\Release\text
STARTUP    dll
ALLOW_STOP TRUE
DELAY_START TRUE
REVISION   2002
END


作者: Easy2009    时间: 2009-3-23 14:16
//设置菜单按钮的动作函数(例8-1)
<这里应该有代码>
//添加菜单按钮.
作者: LIRUI616    时间: 2009-3-24 10:32
2#  
对 应该是有代码
我刚才加上了  
结果还是自动退出  哎  不知道哪里的问题

新的CPP文件 (, 下载次数: 16) 添加到附件了
高手帮忙再看看
作者: 5I3D    时间: 2009-3-24 10:37
按钮的label 和帮助的label不能相同,否则系统无法区分该选用哪个。
作者: LIRUI616    时间: 2009-3-24 16:49
4#  
真是太谢谢您了
问题果然就是在这里,改了,成功启动20x
太感谢了
作者: 5I3D    时间: 2009-3-26 20:04
不客气,共同进步嘛。
作者: ldhldh136    时间: 2009-4-19 11:19
bu dong
作者: myqhx    时间: 2009-5-14 08:07
我也来学习一下,好东东
作者: szchengui    时间: 2009-5-17 11:15
学习了,haodongdong
作者: baotongwei    时间: 2009-7-17 10:07
1#  

我也遇到了类似的问题,但是我菜单按钮的动作函数我也加了,按钮的label 和帮助的label也不相同,但是已注册还是自动退出,就是不知到问题在哪
作者: liaoshan    时间: 2009-9-6 14:12
支持一下!
作者: Copyright321    时间: 2009-12-30 21:44
这个小东西容易忽略,应该记着
作者: xdf992148    时间: 2010-3-29 14:20
学习了,haodongdong
作者: liuruntian    时间: 2011-11-16 21:03
还是不明白啊




欢迎光临 iCAx开思工具箱 (https://t.icax.org/) Powered by Discuz! X3.3