上一页 1 2 3 4 5 6 7 8 ··· 19 下一页
摘要: 问题描述:windows 7 环境下,直接双击Excel文件,提示“向程序发送命令时出现问题”信息。--------------------------------------------------------------------------------------------------------------解决:百度出一些解决方法,大体归为两种:1.Excel2007的属性-->“兼容性”-->"特权等级"中的“以管理员身份运行此程序”前的勾去掉;2.打开Excel2007,点击左上角的圆,然后选择 阅读全文
posted @ 2011-02-18 10:01 temptation 阅读(3767) 评论(0) 推荐(0) 编辑
摘要: 一、DataBase 保存数据,以表的形式表现数据二、SQL Structur query language 结构化查询语言,是操作关系型数据库中的对象。 DDL(Data definition language 数据定义语言),用于建表或删表操作,以及对表约束进行修改 create table , alter table , drop table 对表结构的增删操作。 DML(Data manipulation language 数据操作语言),向表中插入纪录,修改纪录 insert , update , delete , merge transaction ,事务控制语言,由DML语 阅读全文
posted @ 2010-12-28 19:46 temptation 阅读(373) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--Student(S#,Sname,Sage,Ssex)学生表Course(C#,Cname,T#)课程表SC(S#,C#,score)成绩表Teacher(T#,Tname)教师表问题:1、查询̶... 阅读全文
posted @ 2010-11-29 14:21 temptation 阅读(305) 评论(2) 推荐(0) 编辑
摘要: 要求:在if后的()内填写内容,使得输出结果为"Hello,world"解答:C#代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1///<summary>2///要求:在if后的()内填写内容,使得输出结果为"Hello,world"... 阅读全文
posted @ 2010-11-09 14:45 temptation 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 要求:两个时间相加,得到的时间形如“xx时:xx分:xx秒”--------------------------------------------------------------------------------------------------------------解答:首先编写时间处理类时间类 Code highlighting produced by Ac... 阅读全文
posted @ 2010-11-08 22:33 temptation 阅读(717) 评论(0) 推荐(0) 编辑
摘要: JavaScript is a class-free, object-oriented language, and as such, it uses prototypal inheritance instead of classical inheritance. This can be puzzling to programmers trained in conventional object-o... 阅读全文
posted @ 2010-11-05 21:30 temptation 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 问题:从MySQL数据库中取出若干条数据、且要求每次都不一样?------------------------------------------------------------------------------------------------------------------------解答:情况1)如果不是大数据量,那么可以一条SQL语句解决[代码]情况2)如果是大数据量,那么上面... 阅读全文
posted @ 2010-11-01 22:29 temptation 阅读(597) 评论(0) 推荐(0) 编辑
摘要: 行列转换Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1/*标题:普通行列转换(version2.0)2作者:爱新觉罗.毓华(十八年风雨,守得冰山雪莲花开)3时间:2008-03-094地点:广东深圳5说明:普通行列转换(version1.0)仅针对... 阅读全文
posted @ 2010-11-01 09:44 temptation 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 题目:输入3个数字,从小到大排列显示。(不需使用数组)解答:C#Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1staticvoidMain()2{3Console.WriteLine("任意输入1个数字:");4doubled1=Convert.T... 阅读全文
posted @ 2010-10-27 18:45 temptation 阅读(462) 评论(0) 推荐(0) 编辑
摘要: 问题:如何将csv格式的文件导入到MySQL数据库中(csv文件中包含有中文内容)?CSV文件内容如下:表结构如下:----------------------------------------------------------------------------------------------具体操作如下:1.修改表及字段的编码方式,使其支持中文汉字表名称为【demo】,需要修改的字段有... 阅读全文
posted @ 2010-10-27 11:47 temptation 阅读(1770) 评论(0) 推荐(0) 编辑
摘要: 地图:index.php->……->wp-setting.php->wp-includes/load.php |_wp-includes/default-constants.php |_wp-includes/version.phpwp-includes/load.php:描述:定义加载 WP 所需要的函数。1)wp_unregister_GLOBALS(... 阅读全文
posted @ 2010-10-26 14:05 temptation 阅读(450) 评论(0) 推荐(0) 编辑
摘要: 地图:index.php->……->wp-config.php->wp-setting.phpwp-settings.php:描述:用于设置公共变量、加载 WP 的程序和类库(存储 WP 函数、类和核心内容所在文件夹的位置)。用户无需修改此文件,但是可以通过修改 wp-config.php 文件来进行配置。1)定义 WPINC 常量,并引入初始化所需文件 ... 阅读全文
posted @ 2010-10-26 14:02 temptation 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 地图:index.php->wp-blog-header.php->wp-load.php->wp-config.phpindex.php:描述:前端入口,基本没有内容。1)定义WP_USE_THEMES常量,当该常量定义为false时,站点会显示为空白;为true时则正常显示。2)加载wp-blog-header.php文件。wp-blog-header.php:描述:用于加载... 阅读全文
posted @ 2010-10-26 14:00 temptation 阅读(361) 评论(0) 推荐(0) 编辑
摘要: wp-includes目录1.wp-includes/cache.php2.wp-includes/capabilities.php3.wp-includes/class-IXR.php:Incutio XML-RPC库。包括了 XML RPC支持函数。由http://scripts.incutio.com/xmlrpc/提供支持。4.wp-includes/classes.php:包括了基本的类... 阅读全文
posted @ 2010-10-26 13:55 temptation 阅读(1073) 评论(0) 推荐(0) 编辑
摘要: wp-content目录WordPress并不更新这个目录。/wp-content/ 目录由用户本人来提供内容。除非要把默认主题升级到最新版本,否则,升级过程中也应避开这部分内容。WordPress主题和插件都存储在这个目录下。wp-content/plugins目录WordPress的所有插件都存放在这个目录下。WordPress的默认插件是为插件开发者所作的示例插件,即Hello Dolly插... 阅读全文
posted @ 2010-10-26 13:52 temptation 阅读(517) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 19 下一页