因為工作中需要,所以上網找了一些資料

這邊先將找到的資料暫時先紀錄下來,以後再來整理

A:用Bartender作了一個格式檔(.btw),想請問如何在C#程式裡能夠叫出這個範本檔列印?

Q:給你段程式參考一下
     Process p = new Process();
     p.StartInfo.FileName = @"C:\Program Files\Seagull\BarTender UltraLite Plus\8.0\bartend.exe";
     p.StartInfo.Arguments = "/F=" + "\"c:\123.btw\"" + " /P /X";
     p.StartInfo.UseShellExecute = false;
     p.StartInfo.RedirectStandardInput = true;
     p.StartInfo.RedirectStandardOutput = true;
     p.StartInfo.RedirectStandardError = true;
     p.StartInfo.CreateNoWindow = true;
     p.Start();

我用的是8.0
但參數下法是一樣的
p.StartInfo.FileName 是設定Bartender執行檔的位置

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 leolin1390 的頭像
    leolin1390

    182147649

    leolin1390 發表在 痞客邦 留言(0) 人氣()