posted @ 2011-04-11 21:57 beeone 阅读(146) 评论(0) 推荐(0) 编辑
摘要:
using System;using System.Data;class Program{ static void Main() {//// Get the DataTable.//DataTable table = GetTable();//// Use DataTable here with SQL, etc.// } /// <summary> /// This example method generates a DataTable. /// </summary> static DataTable GetTable() {//// Here we create 阅读全文
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace DataTabelTestInXml{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } public static DataTable dt = new D 阅读全文
posted @ 2011-04-11 21:55 beeone 阅读(325) 评论(0) 推荐(0) 编辑
摘要:
循环语句是编程的基本语句,在C#中除了沿用C语言的循环语句外,还提供了foreach语句来实现循环。那么我要说的就是,在循环操作中尽量使用foreach语句来实现。 为了来更好地说明为什么要提倡使用foreach,用如下三种不同方式来编写循环语句。 int[] nArray = new int[100]; // Use "foreach" to loop array foreach( int i in nArray ) Debug.WriteLine( i.ToString() ); // Use "for" to loop array for( int 阅读全文
posted @ 2011-04-11 21:54 beeone 阅读(498) 评论(0) 推荐(0) 编辑
摘要:
注意:当Excel需要引用的时候请:项目--菜单 --- 添加引用 ---COM ---Microsoft Excel 11.0 Object Library --- 确定using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.IO;using System.Diagnostics;using System.Th 阅读全文
posted @ 2011-04-11 17:13 beeone 阅读(384) 评论(0) 推荐(0) 编辑
摘要:
using System;using System.Collections.Generic;using System.Text;using Word;using System.Data;using System.Collections;namespace Pixysoft.Office{ /// <summary> /// 支持创建、打开、保存、关闭文档 /// 支持页面设置 /// 支持普通文字输入设置 /// 支持表插入 /// 支持BookMark /// </summary> public class WordDocuments { private bool v 阅读全文
posted @ 2011-04-11 17:03 beeone 阅读(810) 评论(0) 推荐(0) 编辑
摘要:
Excel操作类 /// <summary> /// Excel操作类 /// </summary> public class Excel { #region 私有属性 private _Application _oExcel = null; //Excel应用程序 private _Workbook _oBook = null; //Excel工作薄 private _Worksheet _oSheet = null; //Excel工作表 private bool _visible=false; //是否显示Excel程序 #endregion #region 公共 阅读全文
posted @ 2011-04-11 17:00 beeone 阅读(459) 评论(0) 推荐(0) 编辑
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using DevComponents.DotNetBar;using DevComponents.DotNetBar.Controls;namespace CsharpTest{ public partial class Form1 : Form { public Form1() 阅读全文
posted @ 2011-04-11 16:02 beeone 阅读(912) 评论(0) 推荐(0) 编辑
摘要:
break表示跳出循环,continue表示结束本次循环 示例程序如下: #include"stdio.h" voidmain() {intn,m; for(n=1;n<=10;n++)/*这个循环输出1234,在n是5的时候循环退出*/ {if(n==5) break; printf("%d",n); } printf("\n"); for(m=1;m<=10;m++)/*这个循环输出1234678910,*/ {if(m==5)/*在m是5的时候没有执行当次循环的其他语句,所以未输出5*/ continue; prin 阅读全文
posted @ 2011-04-11 15:38 beeone 阅读(231) 评论(0) 推荐(0) 编辑