上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 22 下一页
摘要: public partial class FormPost :Form { public FormPost() { InitializeComponent(); } public string _cookieStr; public string cookieStr { get { return _cookieStr; } set { _cookieStr = value; } } private string _UserIDList; public string User_IDList { get { return _UserIDList; } set { _UserIDList = valu 阅读全文
posted @ 2013-06-13 14:33 信息无障碍 阅读(181) 评论(0) 推荐(0)
摘要: public partial class FormWebBrowser :Form{ public FormWebBrowser() { InitializeComponent(); } private static CookieContainer _ReqCookies = new CookieContainer(); ///<summary> ///请求Cookies ///</summary> public static CookieContainer ReqCookies { get { if (_ReqCookies == null) { _ReqCookie 阅读全文
posted @ 2013-06-13 14:33 信息无障碍 阅读(227) 评论(0) 推荐(0)
摘要: <script language="javascript" type="text/javascript">function DisplayTime() { var timeSum=document.getElementById("txtTimeSum").value; var startTime=document.getElementById("txtStaDate").value; var tStaDate=startTime.toString().split(/[-\s:]/); //字符串转时间 阅读全文
posted @ 2013-06-13 14:33 信息无障碍 阅读(187) 评论(0) 推荐(0)
摘要: 需求,分两种:一种是规划需求,另一种是客户需求。需求人员要引导客户需求转向我们已经规划好的需求,这样能很好的限制客户漫无边际的需求,还能为后期增值添加筹码。需求规格说明书,这个很重要,作为需求最后的成果,就是记录在这里面。这里特别要区分人与系统,什么事情是人做的?什么事情是机器做的?例如:我们做一个车辆系统,要统计数据各种报表。其中一张表就是耗油量与行驶速度的关系。如果我们在规格说明书这样说:汽车在行驶过程中,行驶速度的大小与耗油量的关系。上面貌似描述很准确,但是上面没有区分人与系统,行驶速度与耗油量的数据是人做的?还是系统做的?如果是系统的做的,那就麻烦了,你是不是要整个GPS导航以及传感器 阅读全文
posted @ 2013-06-13 14:33 信息无障碍 阅读(133) 评论(0) 推荐(0)
摘要: 定义了过多字段//p_Path :Excel文件目录public DataTable GetDataFromExcel(string p_Path){string strCon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + p_Path + ";Extended Properties='Excel 8.0;HDR=YES;IMEX=0'"; OleDbConnection conExcel = new OleDbConnection(strCon); DataSet ds = ne 阅读全文
posted @ 2013-06-13 14:33 信息无障碍 阅读(263) 评论(0) 推荐(0)
摘要: 导出PDF,是不是发现PDF没有调样式,字体很小啊,但是Html文本有是正确的。Doc doc = new Doc();doc.Page = doc.AddHtml(html);//相信大多人是这样用的这里只需要改成doc.Page = doc.AddImageHtml(html);AddHtml改成AddImageHtml 就行了,样式就调用了。 阅读全文
posted @ 2013-06-13 14:33 信息无障碍 阅读(159) 评论(0) 推荐(0)
摘要: using System;namespace Modifier{ public class GeneralMethods : staticMethods { ///<summary> ///一个尚未声明的静态字段"g_Y"实例化一个静态字段"g_X" ///</summary> public static int g_X = g_Y; ///<summary> ///"g_Y" 实例化。 ///</summary> public static int g_Y = 5; public Ge 阅读全文
posted @ 2013-06-13 14:33 信息无障碍 阅读(246) 评论(0) 推荐(0)
摘要: 简体中文操作系统下开发的.net项目 怎么不能在繁体操作系统运行呢?我放到台湾的繁体版的操作系统,程序根本就不运行,不知道什么原因。如需叫用 Just-In-Time (JIT) 偵錯的詳細資料,請參閱本訊息結尾處 (而非這個對話方塊) 的資訊。************** 例外狀況文字 **************System.Exception: 請重試沒有任何應用程式與此操作的指定檔案有關聯。 於 BLL.Document.Print2Pdf() 於 D:\WPFGis\Agent_EN\BLL\Document\Document.cs: 行 267 於 BLL.Document.btn 阅读全文
posted @ 2013-06-13 14:33 信息无障碍 阅读(183) 评论(0) 推荐(0)
摘要: #include <iostream>using namespace std;void Methods(){ for (int i = 0; i <= 5; i++) { if (i == 1) { cout<<"That is Continue Methods!"<<" i="<<i<<endl; // ---③、⑦ continue; cout<<"That Continue is contiue?"<<endl; } if (i==2) { 阅读全文
posted @ 2013-06-13 14:33 信息无障碍 阅读(227) 评论(0) 推荐(0)
摘要: FlowLayoutPanel一些应用程序需要一个布局可随窗体大小的调整或其中内容大小的改变而自动进行适当排列的窗体。在需要动态布局并且不希望在代码中显式处理Layout事件时,可考虑使用布局面板。FlowLayoutPanel是.NET Framework的新增控件。顾名思义,面板可以采用Web窗体的方式给Windows窗体布局。FlowLayoutPanel是一个容器,允许以垂直或水平的方式放置包含的控件。除了放置控件之外,还可以剪辑控件。放置的方向使用FlowDirection属性和FlowDirection枚举来设置。WrapContents属性确定在重新设置窗体的大小时,控件是放在下 阅读全文
posted @ 2013-06-13 14:33 信息无障碍 阅读(246) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 22 下一页