• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






Greyed Wolf

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 ··· 8 9 10 11 12 13 14 下一页

2012年11月5日

Simple Accordion Menu that displays in UniHTMLFrame
摘要: Note... Most of the HTML code is from switchonthecode.com/tutorials/javascript-and-css-tutorial-accordion-menus so if you use please give their site a visit.To sample add a TUniLabel to MainForm called PCInfoLabel (case sensitive)Create a UniHTMLFrame and add the following code to UniHTMLFrame.HTML& 阅读全文
posted @ 2012-11-05 21:45 Greyed Wolf 阅读(405) 评论(0) 推荐(0)
 
播放flash的代码、参数
摘要: 在网上找到一段播放flash的代码,参数很多,谁能告诉我在网站中播放flash都有什么参数可以使用,哪里有参考文档,谢谢一、<OBJECT codeBase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0 height=400 width=550 classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000>< PARAM NAME="_cx" VALUE="14552"> 阅读全文
posted @ 2012-11-05 17:24 Greyed Wolf 阅读(2105) 评论(0) 推荐(0)
 

2012年10月31日

mysql学习(三)
摘要: 一、显示mysql系统变量show VARIABLES;显示版本号:select version();@@datadir:系统变量;@x:会话变量; x:可在存储过程或函数中使用的变量;例子:select firstname into @a from users ;SELECT @a m; 阅读全文
posted @ 2012-10-31 09:25 Greyed Wolf 阅读(129) 评论(0) 推荐(0)
 

2012年10月29日

MySQL性能优化设置
摘要: 作者:andyao 原文link: http://andyao.iteye.com/admin/show/144033 转载请留名1. 简介 在Web应用程序体系架构中,数据持久层(通常是一个关系数据库)是关键的核心部分,它对系统的性能有非常重要的影响。MySQL是目前使用最多的开源数据库,但是MySQL数据库的默认设置性能非常的差,仅仅是一个玩具数据库。因此在产品中使用MySQL数据库必须进行必要的优化。 优化是一个复杂的任务,本文描述MySQL相关的数据库设计和查询优化,服务器端优化,存储引擎优化。2. 数据库设计和查询优化 在MySQL Server性能调优中,首先要考虑的就是Datab 阅读全文
posted @ 2012-10-29 14:46 Greyed Wolf 阅读(531) 评论(0) 推荐(0)
 

2012年10月24日

Is it possible to show some Word Document (or Excel document) in a UniGUI Frame ?
摘要: If no-one has any better idea's you might want look at using TUniUrlFrame to open documents using javascript There is example at http://www.kavoir.co...es-in-html.htmlbut it uses activex so restricts functionality to IEGlen<script type="text/javascript"> function openWord(strFile 阅读全文
posted @ 2012-10-24 23:24 Greyed Wolf 阅读(413) 评论(0) 推荐(0)
 

2012年10月23日

MYSQL 数据导入导出LOAD DATA AND OUTFILE
摘要: MYSQL LOAD DATA AND OUTFILE 2011-09-27 10:39:33标签:LOAD DATA AND OUTFILE mysql 数据库 休闲 职场LOAD DATA [LOW_PRIORITY] [LOCAL] INFILE 'file_name.txt' [REPLACE | IGNORE] INTO TABLE tbl_name [FIELDS [TERMINATED BY '\t'] [OPTIONALLY] ENCLOSED BY ''] [ESCAPED BY '\\' ]] [LINES T 阅读全文
posted @ 2012-10-23 23:31 Greyed Wolf 阅读(8386) 评论(0) 推荐(0)
 
软件开发成本估算
摘要: 项目开发注意开发历程2011-07-18 18:01376人阅读评论(0)收藏举报 首先我们需要明确的是为什么要做软件项目预算.首先软件项目是不同于一般工程项目的项目类型.受用户需求,开发方式的影响很大.没有明确的预算,会导致软件开支的不可控制,随着项目的进行,开发放要承担的风险也会增加.另外如果没有预算,更不可能与客户达成开发协议.没有人会傻到委托别人做一个自己都不知道要花多少钱才能完成的项目.最后也就是我个人对项目预算的看法,好的项目预算应该包括团体预算与小组或个人预算两部分,好的项目经理应该了解自己的团队,对突发事件等的考虑应该放在项目预算之中,然后将项目的开支细化到小组乃至个人,这一点 阅读全文
posted @ 2012-10-23 14:37 Greyed Wolf 阅读(3830) 评论(0) 推荐(0)
 

2012年10月22日

Joomla及Flexicontent使用
摘要: 一、Changing the minimum word length allowed for searchingWhen using the flexicontent search view, you may want to change the minimum search word length allowed.Note that both FLEXIcontent and MySql pose a limit to thisSet a minimum characters in the menu item pointing to search viewEdit mysql.ini (or 阅读全文
posted @ 2012-10-22 12:31 Greyed Wolf 阅读(553) 评论(0) 推荐(0)
 

2012年10月21日

dll模块在Apache 2.2 web server 使用时的配置
摘要: Apache 2.2Apache 2.2Apache 2.2 web server for Windows allows running ISAPI modules. For this, a plugin called mod_isapi must be enabled.Apache doesn't have a visual interface for configuration. You must do some modifications to httpd.conf file.First of all, uncomment the following line:LoadModul 阅读全文
posted @ 2012-10-21 22:31 Greyed Wolf 阅读(376) 评论(0) 推荐(0)
 

2012年9月27日

BIGSHOT Flash使用
摘要: This plugin allows you to quickly add a flash banner, video, or other hosted or external SWF file to Joomla articles or to a custom HTML module.All parameters are optional. If you don't specify any particular parameter, then it is pulled from the default plugin parameters.In most cases, all you 阅读全文
posted @ 2012-09-27 22:09 Greyed Wolf 阅读(215) 评论(0) 推荐(0)
 
上一页 1 ··· 8 9 10 11 12 13 14 下一页