iCAx开思工具箱

标题: 请问存储部件文件对话框的函数是哪一个? [打印本页]

作者: zxdawn    时间: 2006-5-16 11:23
标题: 请问存储部件文件对话框的函数是哪一个?
我需要将打开的部件文件另存为一个文件,但不知存储部件文件对话框的函数,请求赐教
作者: zxdawn    时间: 2006-5-17 10:33
我做的是标准件库,需要将所导入的种子零件进行参数化设计后另存为一个文件名称,所以需要一个存储文件的对话款,请哪位大侠指点一下
作者: zzz    时间: 2006-5-17 11:23
UF_UI_create_filebox()
作者: zxdawn    时间: 2006-5-17 15:40
谢谢,做出来了,以下是代码
    char filter_string[132] = "*.prt";
    char filepath[132]="";
    int response;
    int rc = 0;
    char msg[132];
    UF_initialize();
    rc = UF_UI_create_filebox ("My prompt",
                               "save file",
                               filter_string,
                               "bb.prt",
                               filepath,
                               &response);

    if(rc)
    {
        UF_get_fail_message(rc, msg);
        printf("error = %s\n", msg);
    }
        UF_PART_save_as (filepath);




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