NerdTreeThe NERD tree allows you to explore your filesystem and to open files anddirectories. It presents the filesystem to you in the form of a tree ...
分类:
其他好文 时间:
2014-07-09 16:24:53
阅读次数:
193
using System;using System.Collections.Generic;using System.Reflection;using System.Runtime.InteropServices;using System.Text;using System.Windows.Form...
分类:
其他好文 时间:
2014-07-09 15:50:56
阅读次数:
199
using System;using System.Collections.Generic;using System.Linq;using System.Text;using Autodesk.AutoCAD.DatabaseServices;using Autodesk.AutoCAD.Edito...
分类:
其他好文 时间:
2014-07-09 14:23:36
阅读次数:
187
form的autosize=true,formborderstyle=fixedsingletablelayoutpanel及其里面的容器的dock=fill,autosize=truelabel中的文字比较贴着窗体边缘时可以通过padding属性来调整因定宽度则可以使用tablelayoutpan...
1,Switch 语句内的表达式必须为: byte ,char ,short ,int 这四种之一。
2,使用final关键字修饰一个变量时,是指引用变量不能变,引用变量所指向的对象中的内容还是可以改变的。
例如,对于如下语句:
final StringBuffer a=new StringBuffer("immutable");执行如下语句将报告编译期错误:
a=new StringBu...
分类:
编程语言 时间:
2014-07-09 12:13:32
阅读次数:
231
Input表示Form表单中的一种输入对象,其又随Type类型的不同而分文本输入框,密码输入框,单选/复选框,提交/重置按钮等,下面一一介绍。1,type=text输入类型是text,这是我们见的最多也是使用最多的,比如登陆输入用户名,注册输入电话号码,电子邮件,家庭住址等等。当然这也是Input的...
分类:
Web程序 时间:
2014-07-08 23:44:05
阅读次数:
309
C#两个窗体之间传递数据
1 公用变量值传递
public partial class Form1 : Form //parent form
{
public string name="";
public Form1()
{
InitializeComponent();
}
p...
当我们在保存表单内容时,如果其中有一项内容包含Html的tag时,系统会报如下错误:A potentially dangerous Request.Form value was detected from the client xxxxxxxxxxxx要让程序绕开这个检验,我们可以在Model类中的...
分类:
Web程序 时间:
2014-07-08 11:53:27
阅读次数:
179
var formidable = require('formidable');var util = require('util');exports.upload = function(req,res){ var form = new formidable.IncomingForm(); ...
分类:
Web程序 时间:
2014-07-08 00:48:06
阅读次数:
417
EasyUI常用控件禁用方法:
1.validatebox可以用的用法:前两种适用于单个的validatebox;
第三种应用于整个form里面的输入框;
.$("#id").attr("readonly", true); ----- $("#id").removeAttr("readonly");
.$("#id").attr("readonly", "re...
分类:
其他好文 时间:
2014-07-06 10:46:57
阅读次数:
174