摘要:
1.Array转换成Json String function jsonToString(arr) { var s = ""; if (arr instanceof Array || arr instanceof Object) { var isObj = 0; //check value type 阅读全文
摘要:
1.NameValueCollection类集合是基于 NameObjectCollectionBase 类。 但与 NameObjectCollectionBase 不同,该类在一个键下存储多个字符串值(就是键相同,值就连接起来如下例子)。该类可用于标头、查询字符串和窗体数据。 每个元素都是一个键 阅读全文
摘要:
C# 里面回调方法一般指某个委托.也可以说是接口. using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class 阅读全文
摘要:
使用该用户控件做的效果图,如果数据正确,可实现 波形、直线、等等效果图。。。。。。 对于本程序的认识还是不够深彻。如果有其他方法或算法,欢迎讨论下。将我所能理解的代码都再次标识了一番。 using System; using System.Collections.Generic; using Sys 阅读全文
摘要:
使用WinFrom来实现: 首先要知道串口通信协议以及原理 原理大概提一下:要自己翻阅看。(http://book.51cto.com/art/200911/162532.htm或者http://hi.baidu.com/fly514/item/54aeb9d731ddedb932db9006) 代 阅读全文
摘要:
using System; using System.IO; using System.Data; using System.Reflection; using System.Diagnostics; using System.Configuration; using System.Collecti 阅读全文
摘要:
程序生成版本信息 AssemblyInfo.cs主要用来设定生成的有关程序集的常规信息dll文件的一些参数 请看以下具体说明: //备注: [assembly:AssemblyDescription("用最强的抢劫类写成!")] //产品名称 [assembly:AssemblyProduct("无 阅读全文
摘要:
1.在oracle的之前版本时, 你的用户名密码是大小写不敏感的, 但在11g中, 数据库默认密码的大小写是敏感的,去除oracle的密码大写敏感设定: alter system set sec_case_sensitive_logon=false 2.设置sqlplus命令窗体显示行和列的规范: 阅读全文
摘要:
父窗框mainForm;子窗体childForm,利用事件进行传值 在子窗体中的操作: public event EventHandler accept;public string value; private void btnStart_Click(object sender, EventArgs 阅读全文
摘要:
Oracle 10G 管理页面(Oracle Enterprise Manager 10g): http://localhost:1158/em http://localhost:1158/em/console/logon/logon Oracle数据库导出: (1)整个用户下的所有数据(dmp文件 阅读全文