c 通過程式將檔案直接送到印表機列印

2021-04-15 11:01:03 字數 1158 閱讀 5618

using system.io;

using system.diagnostics ;

private void send2printer(string filename)

else

i++;

}if ( running && !p.ha***ited )

p.kill();

}p.dispose();

}catch(exception ee)

}private sub send2printer(byval filename as string)

dim p as new process()

try

p.startinfo.filename = filename

p.startinfo.workingdirectory = (new fileinfo(filename)).directoryname

p.startinfo.createnowindow = true

p.startinfo.windowstyle = processwindowstyle.hidden

p.startinfo.verb = "print"

p.start()

if not p.ha***ited then

p.waitforinputidle(10000)

dim i as integer = 1

dim running as boolean = true

while running andalso i <= 20

system.threading.thread.sleep(500)

if p.ha***ited then

running = false

else

running = not p.closemainwindow()

end if

i += 1

end while

if running andalso not p.ha***ited then

p.kill()

end if

end if

p.dispose()

catch ee as exception

end try

end sub

通過程式壓縮 解壓檔案

通過引用一dll icsharpcode.dll 可以實現所述功能。一 壓縮檔案 using system using icsharpcode.sharpziplib using icsharpcode.sharpziplib.checksums using system.io using icsh...

C 實現通過程式自動抓取遠端Web網頁資訊

通過程式自動的讀取其它 網頁顯示的資訊,類似於爬蟲程式。比方說我們有乙個系統,要提取baidu 上歌曲搜尋排名。分析系統在根據得到的資料進行資料分析。為業務提供參考資料。1 傳送httprequest請求。2 接收httpresponse返回的結果。得到特定頁面的html原始檔。3 取出包含資料的那...

C 實現通過程式自動抓取遠端Web網頁資訊

過程式自動的讀取其它 網頁顯示的資訊,類似於爬蟲程式。比方說我們有乙個系統,要提取baidu 上歌曲搜尋排名。分析系統在根據得到的資料進行資料分析。為業務提供參考資料。1 傳送httprequest請求。2 接收httpresponse返回的結果。得到特定頁面的html原始檔。3 取出包含資料的那一...