zoukankan      html  css  js  c++  java
  • NX 二次开发-c/c++调用外部文件代码

    //这些引用文件要放到dlx之后
    
    #include <uf.h>
    #include <uf_ui.h>
    #include <uf_exit.h>
    #include <io.h>
    #include <iostream>   
    #include <fstream>
    #include <string.h>
    #include <stdio.h> 
    #include <afxwin.h>
    #include <winuser.h>
    #include <windows.h>
    #include <shlwapi.h>
    #include <shlobj.h>
    #include <shellapi.h>
    #include <winuser.h>
    #include <tlhelp32.h>
    using namespace std;
    
    //打开文件夹
    ShellExecute(NULL, _T("open"), _T("C:\WINDOWS\"), NULL, NULL, SW_SHOW);
    //打开CHM文
    ShellExecute(NULL, _T("open"), _T("D:\HB_MOULD\Help\NXOPEN参考手册(nx1872).CHM"), NULL, NULL, SW_SHOW);
    //打开表格文
    ShellExecute(NULL, _T("open"), _T("D:\412946-2_T3.xlsm"), NULL, NULL, SW_SHOW);
    //打开记事本
    ShellExecute(NULL, _T("open"), _T("C:\1.txt"), NULL, NULL, SW_SHOW);
    //打开 计算器
    ShellExecute(NULL, _T("open"), _T("calc"), NULL, NULL, SW_SHOW);
    //打开 网页
    ShellExecute(NULL, _T("open"), _T("http://www.baidu.com/"), NULL, NULL, SW_SHOW);
  • 相关阅读:
    Redis的发布订阅
    Redis的事物
    Redis的持久化
    Redis配置文件详解
    Redis五大数据类型
    Redis安装
    DP练习题回顾
    基环树浅谈
    Tarjan算法浅谈
    拓展欧拉定理浅谈
  • 原文地址:https://www.cnblogs.com/huadong2020/p/13738056.html
Copyright © 2011-2022 走看看