上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页
摘要: 汉化之前必须脱壳资源编辑器(界面汉化类): Restorator 2007 http://www.hanzify.org/?Go=Show::List&ID=10253&Down=2&L=cn Passolo: 资源识别(可以建方案 主流) http://www.hanzify.org/?Go=Show::List&ID=11435&Down=2&L=cn Sisulizer: 资源识别(可以建方案 主流) http://www.hanzify.org/?Go=Show::List&ID=12356&Down=2&L=cn 阅读全文
posted @ 2013-06-13 14:32 信息无障碍 阅读(394) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using BLL;using System.Data;using System.Collections;namespace CarsReports.Web{ public partial class Youhao : System.Web.UI.Page { protected void Page_Load(object send 阅读全文
posted @ 2013-06-13 14:32 信息无障碍 阅读(464) 评论(0) 推荐(0)
摘要: 堆栈的特性为先进后出(First In Last Out,FILO)。Push 压栈;Pop 出栈。#include<windows.h>#include<stdio.h>//结构体--基本函数struct stUnit{ char szName[64];//存放名字的};//堆栈类class clStack{private: stUnit *mBuffer;//Buffer 缓冲器 unsigned int mBufSize;//缓存大小 unsigned int mCount;//这个很不稳当~~~不知道什么意思public: //----------------- 阅读全文
posted @ 2013-06-13 14:32 信息无障碍 阅读(192) 评论(0) 推荐(0)
摘要: //下面就是问题代码,红色DriverName和DriverID参数为中文时候出现上面的错误string url = String.Format(urlFormat, DriverName, McuID, DriverID, VehicleNo, DriverMobile, chartSort, startTime, endTime, langValue, startTime, String.Empty); //下面才是正解:string url = String.Format(urlFormat, HttpContext.Current.Server.UrlEncode(DriverName 阅读全文
posted @ 2013-06-13 14:32 信息无障碍 阅读(212) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2013-06-13 14:32 信息无障碍 阅读(180) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2013-06-13 14:32 信息无障碍 阅读(139) 评论(0) 推荐(0)
摘要: <script>function isIE(){a=navigator.appVersion.split(";")b=a[1].split(" ")return b[2]}alert (navigator.appName+" "+isIE())alert ("你的浏览器版本是: "+isIE())</script> 提示:您可以先修改部分代码再运行<html><head><title>JS完整获取IE浏览器信息</title></head 阅读全文
posted @ 2013-06-13 14:32 信息无障碍 阅读(205) 评论(0) 推荐(0)
摘要: static,virtual,override,abstract四个修饰符区别Virtual方法(虚方法)virtual 关键字用于修饰方法、属性、索引器或事件声明,并且允许在派生类中重写这些对象。例如,此方法可被任何继承它的类重写。调用虚方法时,将为重写成员检查该对象的运行时类型。将调用大部分派生类中的该重写成员,如果没有派生类重写该成员,则它可能是原始成员。默认情况下,方法是非虚拟的。不能重写非虚方法。virtual 修饰符不能与 static、abstract 和 override 修饰符一起使用。除了声明和调用语法不同外,虚拟属性的行为与抽象方法一样。在静态属性上使用 virtual 阅读全文
posted @ 2013-06-13 14:32 信息无障碍 阅读(242) 评论(0) 推荐(0)
摘要: ZedGraph是一个非常优秀的开源的作图控件ZedGraph来源:http://sourceforge.net/project/showfiles.php?group_id=114675ZedGraph相关例子资源:http://zedgraph.org/wiki/index.php?title=Sample_Graphs1、在vs中使用ZedGraph2、 基本一些概念几个注意点:图片的保存路径设置:RenderedImagePath属性中设置,程序对该文件夹应该是有写和修改权限的图片的输出格式:OutputFormat属性中设置,Png的推荐,比较清晰。Chart ChartBorder 阅读全文
posted @ 2013-06-13 14:32 信息无障碍 阅读(286) 评论(0) 推荐(0)
摘要: 源代码: ///<summary> /// Web合并相同数据的行标题 ///</summary> ///<param name="gv"></param> ///<param name="col"></param> ///<param name="colName"></param> public static void Unite(GridView gv, int[] col, string[] colName) { int i; str 阅读全文
posted @ 2013-06-13 14:32 信息无障碍 阅读(349) 评论(1) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页