码迷,mamicode.com
首页 > 其他好文 > 详细

Ax barcode print

时间:2014-12-27 23:00:21      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:

static void winAPI(Args _args)
{
    str FilePathName;
    str labelData;
    int i = 1;
    boolean isSuccessful;
    FilenameFilter filter;
    str filePath = "C://Test.BTW";
    TextIO         m_TXTFile;
    container      m_con;
    wo_mstr        wm;
    #File
    ;

    m_TXTFile = new TextIO("C:\\Test.TXT",#io_write);

    if(!m_TXTFile || m_TXTFile.status() != IO_Status::Ok)
    {
        throw error("访问磁盘失败!");
    }

    while select wm
    {
        m_con = [strfmt("%1,%2,%3",wm.wo_nbr,wm.wo_part,wm.wo_qty_req)];
        isSuccessful = m_TXTFile.writeExp(m_con);
        i++;
    }
    
    if(isSuccessful)
    {
        //info("ExportComplete!");
        WinAPI::shellExecute(filePath,"null","","PRINT",0,false);
    }

    //WinAPI::shellExecute(filePath,"null","","PRINT",0,false);
}

  

Ax barcode print

标签:

原文地址:http://www.cnblogs.com/Jinnchu/p/4189330.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!