1樓:匿名使用者
datagrideview 有個 drawtobitmap方法可以把你的控制元件以及上面的資料一起繪製到一張**上;(其實這個方法是繼承 control 類的 所以任何控制元件都可以列印出來)
然後用 printdocument 類 在他的printpage()事件中列印出來就行了
printdocument pd = new printdocument();
pd.printpage += new printpageeventhandler(this.pd_printpage);
具體**列印方法上網搜尋一下有很多。
2樓:匿名使用者
datagrideview裡面的資料是可以遍歷的啊 你可以根據row和cells的索引來找,或者最直接的方法就是你的datagrideview的資料來源 大多數情況下應該是一個datatable物件,你列印這個datatable物件就是了啊
3樓:匿名使用者
你的datagridview 顯示資料不是繫結了一個 datatable 麼 ,你呼叫列印的時候 把這個datatable作為引數穿過去不就行了 一般列印的方法都是列印整個 datatable ,方法網路上很多的 你可以參考看看。 匯出 txt excel pdf 都有的
4樓:
這個需要匯出報表的 ,沒那麼簡單
c#問題**等。如何在c#中查詢資料庫的資料並且顯示到datagridview中
5樓:匿名使用者
建表create table youtable (id int ,username varchar(25),pwd varchar(18))
insert into youtable values (1,'admin','123')
看 demo 是否滿足需求
6樓:匿名使用者
查出來是一個集合 ,直接繫結到datagridview上就可以了
7樓:匿名使用者
在查詢按鈕的點選事件裡按照條件查詢,然後,把查詢出來的集合填充到datagridview裡
c#裡怎樣清空datagridview中的資料
8樓:匿名使用者
1、首先新新增一個按鈕(button控制元件),修改它的text屬性為「刪除第一行資料」。
2、雙擊該按鈕,出現**編輯介面。
3、新增如下**://如果datagridview1中沒有資料,就不執行刪除操作,直接返回//這裡之所以是小於等於1,因為空白行也算一行統計在內if (datagridview1.rows.
count <= 0)//刪除第一行資料,下表從零開始datagridview1.rows.removeat(0);。
4、執行(除錯)程式,在出現的介面中,點選「新增資料按鈕」,新增一條資料。
5、然後點選「刪除資料」,併成功刪除資料。
9樓:du瓶邪
datagridview .datascous=null;
datagridview .databand();
或者執行這個方法
foreach (gridviewrow row in gridview1.rows)
在或者datagridview.rows.clear();
10樓:火駒
datagridview.setdatabind(null,null);
datagridview.update();
11樓:
datagridview1.rows.clear();
12樓:匿名使用者
datagridview.datasource=null;
datagridview.databind();
13樓:皮卡中國行
用datagridview.datasource=null;
14樓:
datagridview.datasource可以繫結datatable。
可以將其設空。
建議最好datatable.clear();
將繫結的datatable清空。
c#如何把datagridview匯出到excel
15樓:匿名使用者
這裡有
c程式 將陣列的所以元素列印出來
劉培鑫 你的陣列是string型別嗎,是的話 如下 string str new string foreach string sss in str for int i 0 i 注 array是int float string 等基本型別的陣列.如果是自定義型別則輸出type.tostring 引入一...
cad圖紙列印出現問題,CAD圖紙列印出現問題?
1 檢查與修復。很多時候需要匯入從其他電腦拷貝來的autocad格式的圖,這樣的圖匯入後在進行修改或者者其他一些操作的時候會發生致使錯誤並退出。解決這種問題的方法是開啟 檔案 中的 繪圖實用程式 選擇其中的 檢查 命令,這樣可以修復其中的一些錯誤。如果autocad圖不能很順利地匯入或者匯入後有一些...
求C語言原始碼最好是能列印出來的,求C語言原始碼 最好是能列印出來的
介紹給lz一本好書,絕對能滿足lz的要求,這是我在新華書店找到的一本書 在卓越上可以買到,31元左右,非常不錯!書籍名 c語言課程設計案例精編 含光碟 高等院校課程設計案例精編 書籍簡介 c語言由於具有靈活 高效 可移植性好等諸多優點,成為軟體開發中常用的計算機程式語言之一。全書介紹了貪吃蛇遊戲 計...