01 2016 档案

该文被密码保护。
posted @ 2016-01-31 19:18 刀小爱 阅读(0) 评论(0) 推荐(0)
摘要:1.asp.net 默认提交是post 根据 Page.IsPostBack 就能猜出来 默认的是哪种提交方式 而 html 默认是 GET 2. 远程连接 Process.Start( "mstsc","/v:192.168.1.1"); 3. 获取本机的IP Dns.GetHostEntry(D 阅读全文
posted @ 2016-01-30 19:35 刀小爱
摘要:Thread th = new Thread(() => { // Directory.p if (!File.Exists(this.textBox1.Text)) ... 阅读全文
posted @ 2016-01-23 20:18 刀小爱 阅读(162) 评论(0) 推荐(0)
摘要:Screen s = Screen.PrimaryScreen; Bitmap bit = new Bitmap(s.Bounds.Width, s.Bounds.Height); Graphics g = Graphics.FromImage(bit);... 阅读全文
posted @ 2016-01-23 09:17 刀小爱 阅读(210) 评论(0) 推荐(0)
摘要:string str = @"User=SYSDBA;Password=masterkey;Database=" + @"192.168.6.5:c:\ACA1300.FDB;DataSource=192.168.6.5; Port=3050;Dialect=3; Charset=NONE;Ro... 阅读全文
posted @ 2016-01-18 08:25 刀小爱
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication11{ clas... 阅读全文
posted @ 2016-01-15 22:16 刀小爱 阅读(265) 评论(0) 推荐(0)
摘要:using System.Runtime.InteropServices; [DllImport("user32.dll", CallingConvention = CallingConvention.StdCall)] public static extern int Message... 阅读全文
posted @ 2016-01-12 09:58 刀小爱 阅读(335) 评论(0) 推荐(0)
摘要:this.crystalReportViewer1.ToolPanelView = CrystalDecisions.Windows.Forms.ToolPanelViewType.None; 阅读全文
posted @ 2016-01-08 15:29 刀小爱
该文被密码保护。
posted @ 2016-01-04 15:40 刀小爱 阅读(1) 评论(0) 推荐(0)
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Reflection;namespace Conso... 阅读全文
posted @ 2016-01-03 19:40 刀小爱 阅读(305) 评论(0) 推荐(0)
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Reflection;using System.IO... 阅读全文
posted @ 2016-01-03 11:38 刀小爱 阅读(220) 评论(0) 推荐(0)
摘要:从第一层到第五层依次为:border、content+padding、background-image、background-color、margin。 阅读全文
posted @ 2016-01-01 19:03 刀小爱 阅读(190) 评论(0) 推荐(0)