ScriptControl 接口 属性名称 类型 备注 AllowUI BOOL 检测是否允许运行用户的接口元素。如果为 False ,则诸如消息框之类的界面元素不可见。 CodeObject Object 脚本暴露给宿主调用的对象。只读...
ScriptControl 接口 属性名称 类型 备注 AllowUI BOOL 检测是否允许运行用户的接口元素。如果为 False ,则诸如消息框之类的界面元素不可见。 CodeObject Object 脚本暴露给宿主调用的对象。只读...
ScriptControl控件-msscript.ocx msscript.oca 复制代码 代码如下: AllowUI:可读写,布尔值,检测是否允许运行用户的接口元素.如果为False,则诸如消息框之类的界面元素不可见. CodeObject: 返回宿主被调...
代码如下: public void CutToF(Stream stream) { Image initImage = Image.FromStream(stream, true); if (initImage.Width = 480 initImage.Height = 480) { initImage.Save(D://test.jpg, ImageFormat.Jpeg); } else { int initWidth = initImage.Width...
1.建立连接字符串,里面包含数据库名称、用户名和密码 2.建立操作字符串,里面是对数据操作的SQL语句 3.建立Connection,用连接字符串作为参数建立 4.建立Command,用操作字符串和Conne...
代码如下: class Dirctonary { public void DictionaryGet() { Dictionaryint, string productList = new System.Collections.Generic.Dictionaryint, string(); productList.Add(1, ProductionOne); productList.Add(2, ProductionTwo); foreach (KeyVal...
复制代码 代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace StreamReadWrite { class Program { static void Main(string[] args) { // Get the directories currently...
代码如下: //加载Excel public DataSet LoadDataFromExcel(string filePath) { try { string strConn; //strConn = Provider=Microsoft.Jet.OLEDB.4.0;Data Source= + filePath + ;Extended Properties=Excel 8.0;HDR=False;IMEX=1; strConn = string.F...
1.根据单个分隔字符用split截取 例如 复制代码 代码如下: string st=GT123_1; string[] sArray=st.split(_); 即可得到sArray[0]=GT123,sArray[1]=1; 2.利用多个字符来分隔字符串 例如 复制代码 代码如下: str...
//Main: 复制代码 代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Merge { class Program { static void Main(string[] args) { while (true) { Console.WriteLine(请选择:); Con...