摘要: OleDbCommand cmd = conn.CreateCommand();cmd.CommandType = CommandType.Text;cmd.CommandText = "SELECT * FROM song WHERE 1=0";OleDbDataAdapter da = new OleDbDataAdapter(cmd);DataSet ds = new D... 阅读全文
posted @ 2010-09-19 17:37 风中的云 阅读(730) 评论(0) 推荐(0) 编辑
摘要: 网址:http://www.regexlab.com/zh/regref.htm#multi 阅读全文
posted @ 2010-09-19 16:47 风中的云 阅读(102) 评论(0) 推荐(0) 编辑
摘要: public class FolderDialog : FolderNameEditor{ FolderNameEditor.FolderBrowser fDialog = new System.Windows.Forms.Design.FolderNameEditor.FolderBrowser(); public FolderDialog() { } public DialogResult D... 阅读全文
posted @ 2010-09-19 11:00 风中的云 阅读(206) 评论(0) 推荐(0) 编辑
摘要: OpenFileDialog fileDialog = new OpenFileDialog();//fileDialog.InitialDirectory = tbLocalPath.Text;fileDialog.Title = "选择文件";fileDialog.Filter = "xml files (*.xml)|*.xml";fileDialog... 阅读全文
posted @ 2010-09-19 10:48 风中的云 阅读(262) 评论(0) 推荐(0) 编辑