vb和c#插入行与删除行
摘要:vb:xSheet.Range("A3").Resize(1, 3).Insert(Shift:=Excel.XlDirection.xlDown)xSheet.Range("A3").Resize(1, 3).Delete()xSheet.Range("A2").Resize(ds.Tables(i).Rows.Count + 1, 3).Value = datac#:((Excel.Range)xSheet.Cells[4, 4]).EntireRow.Insert(null, null); //添加行((Excel.Range)
阅读全文
posted @
2013-12-17 10:11
vinsonLu
阅读(291)
推荐(0) 编辑
vb shell函数在c#的转换
摘要:vb shell:Private Sub AddBarcodeImages(ByVal DTab As DataTable) If Not DTab Is Nothing Then DTab.Columns.Add("BCIMAGE", Type.GetType("System.Byte[]")) Dim r As DataRow For Each r In DTab.Rows Try Dim BatchNo As String = CStr(r....
阅读全文
posted @
2013-11-06 17:16
vinsonLu
阅读(699)
推荐(0) 编辑
c# 制作自定义控件并生成dll文件旷展到其他项目使用
摘要:1.新建项目,同时添加一个类库,然后在类库里面定义自己的控件;完毕生成项目,然后在类库的bin目录下就自动生成了这个自定义控件的dll文件。2.在需要使用这个自定义控件的项目里,直接ctrl+c,ctrl+v这个dll文件到你的项目工具箱,即可拖曳使用。
阅读全文
posted @
2013-08-14 17:36
vinsonLu
阅读(7296)
推荐(0) 编辑
C# 導出Excel(動態列名小例子)
摘要:View Code 1 private void btnExport_Click(object sender, EventArgs e) 2 { 3 foreach (System.Windows.Forms.Control con in this.Controls) 4 { 5 if (!(con is Label)) 6 { 7 if (con.Text == "") 8 ...
阅读全文
posted @
2012-08-02 16:34
vinsonLu
阅读(1372)
推荐(1) 编辑