摘要:1,Excel数据导入 将Excel作为类似access的数据源 using System.Data.OleDb; using System.IO;OpenFileDialog of = new OpenFileDialog();of.Title = "Excel文件"; of.FileName = ""; of.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); of.Filter = "Excel文件(*.xls;*.xls
阅读全文
摘要:HTML标题<h1></h1><p></p>链接:<a href="http://XXXX">xxxx</a>图像:<img src=http://XXXX.jpgwidth="x“ height="y"/>无内容的标签:<br />标签要用小写HTML属性<a href=""> </a>IMG=>map =>area 图像的可点击区域<base href="" /&g
阅读全文
摘要:示例程序1:program.cs public class Program : FormShellApplication<WorkItem, Form1> { [STAThread] static void Main() { new Program().Run(); } protected override void AfterShellCreated() { base.AfterShellCreated(); this.Shell.IsMdiContainer = true; RootWorkItem.Items.Add(this.Shell, "Shell"
阅读全文