- 博客(19)
- 收藏
- 关注
原创 检测系统的IIS版本脚本
function OnAppSearch() STRING szIISKey, szNumName, szNumValue; NUMBER nType, nSize, nvType, nvSize;begin RegDBSetDefaultRoot(HKEY_LOCAL_MACHINE); szIISKey = "S
2007-11-14 15:37:00
743
原创 在用InstallScript MIS Project 打包中加入License对话框的方法.
在Script脚本操作界面中进行以下操作 图1 选择 OnFirstUIBefore 事件 在Dlg_SdCustomerInformation后加入 Dlg_SdLicense: szLicenseFile = SRCDIR^ "license.txt"; szTitle = ""; szMsg = ""; szQuestion = "
2007-11-14 15:36:00
1106
原创 用InstallShield生成新的Web.Config
在InstallShield中写Web.Config 就是和操作XML文件 需要调用系统的MSXML.DOMDocument在开发Asp.net程序后.对WebConfig有自定义动态配置 需要动态生成Web.Config特使用以下代码实现,有什么问题,请看客拍砖 #define ERROR_XML_FILE
2007-11-14 15:20:00
1427
原创 IIS HTTP 500 内部服务器错误 服务器无法加载应用程序 '/LM/W3SVC''/LM/W3SVC' '找不到指定的元数据
运行环境:Windows XP Sp2现象:[1] 浏览主机的.net脚本时出现 “HTTP 500 - 内部服务器错误”[2] 察看计算机系统事件,发现每次浏览.net脚本均会出现一个警告如下:事件类型: 警告事件来源: W3SVC事件种类: 无事件 ID: 36日期: 2006-9-4事件: 15:48:51用户: N/A计算机: FITMOS描述:服务器无法加载应用程序 /LM/W3SVC
2007-10-27 15:49:00
2186
转载 Fast VBScript string class
Fast VBScript string classby Jan Verhoeven, 10 November 2001String building in VBScript is very slow. The VBScript class presented below is easy to use and much faster. ... fast string class clas
2007-10-26 16:13:00
583
原创 IE屏蔽鼠标右键及快捷键方法
html> script>function KeyDown(){ //屏蔽鼠标右键、Ctrl+n、shift+F10、F5刷新、退格键 //alert("ASCII代码是:"+event.keyCode); if ((window.event.altKey)&& ((window.event.keyCode==37)|| //屏蔽 Alt+ 方向键 ← (windo
2007-10-20 17:37:00
844
转载 InstallShield SQL 数据库安装
function OnFirstUIAfter() STRING szTitle, szMsg1, szMsg2, szOpt1, szOpt2; NUMBER bvOpt1, bvOpt2; NUMBER bShowUpdateServiceDlg; STRING szWaitText; STRING szServiceName; NUMBER svSer
2007-10-19 03:37:00
2312
1
转载 检测SQL的InstallShield脚本 通用于最新的 12
//全局变量STRING szSQLServiceName; //数据库服务器名 STRING szSQLServiceName1; //数据库服务器名(缓存) STRING szSQLServiceFilePath; //数据库服务器执行文件路径STRING szSQLServiceDataRootPath; //数据库服务
2007-10-19 03:34:00
1434
转载 fastreport固定行分页
var ChildDataLine : Integer;// 子数据打印完一项时procedure MasterData1OnAfterPrint(Sender: TfrxComponent);begin ChildDataLine := mod 4;end;// 某项主数据的子数据打印完后准备打印主数据的最后页时procedure GroupFooter1OnBeforePrint(Sen
2007-10-18 21:40:00
6913
转载 Convert FLV to jpg sequence
Convert FLV to jpg sequenceffmpeg -i video.flv -an -r 1 -y -s 320x240 video%d.jpg-i Input file name-an disable audio-r fps-y overwrite file-s output dimensionConvert particular frame to jpgffmpeg -i v
2007-10-18 10:40:00
786
原创 MS CRM 3.0安装过程。
提是Win2003SP1+AD+SQLSP4+ReportingService+Exchange(可选)+Office2003,有任何一个小问题都会导致CRM不能成功安装。以下是安装过程: 安装Windows Server 2003操作系统并打上SP1补丁安装AD域控制器1.选择管理工具——管理您的服务器2.打开后点击添加删除角色3.选择域控制器,然后单击下一步4.显示如下界面后,
2007-09-07 09:44:00
1186
原创 读取到系统字体
//如何获得系统字体列表 System.Drawing.Text.InstalledFontCollection fonts = new System.Drawing.Text.InstalledFontCollection(); foreach (System.Drawing.FontFamily family in fonts.Fa
2007-06-26 11:49:00
788
转载 Array vs. ArrayCollection in Flex 2 (with a ColdFusion Slant)
Ive been spending a bit of personal time digging into Flex 2 development. One thing Ive noticed up front is that theres an important distinction between using an Array and an ArrayCollection when c
2007-06-23 00:00:00
1717
转载 两个Flex的例子(附源码)
1。过滤DataGrid显示的数据 这个例子利用复选框和DataGrid向我们演示了如何过滤数据。 示例:点击这里 查看源码:点击这里2。Flex中的Easing Function(这个Easing实在不知道如何翻译) 这个例子利用chart和以及panel向我们演示了Flex中各种酷的效果,包括碰撞、加速等效果,正因为这些效果Flash才如此迷人。 示
2007-06-22 11:54:00
1272
原创 动态显示/隐藏 DataGrid 的列。
在List中选中一个就会显示相应的 DataGrid 的列 xml version="1.0" encoding="utf-8"?>mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="horizontal" horizontalAlign="left" creationComplete="initAp
2007-06-22 11:46:00
2799
原创 在 Tree 中查找节点。在对话框中输入要查找的节点的值
xml version="1.0" encoding="utf-8"?> Searchable Tree control example. uses e4x expression to find a node with matching id attribute-->mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" crea
2007-06-22 11:44:00
772
原创 动态创建 DataGrid 列
xml version="1.0" encoding="utf-8"?> This example uses the dataProvider to build the dataGrid columns dynamically -->mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" cre
2007-06-22 11:42:00
923
转载 C#动态执行代码
private void Compiler(string code) ...{ CompilerParameters vCompilerParameters = new CompilerParameters(); vCompilerParameters.GenerateExecutable = false; vCo
2007-06-08 11:47:00
3283
2
转载 五种提高 SQL 性能的方法
有时, 为了让应用程序运行得更快,所做的全部工作就是在这里或那里做一些很小调整。啊,但关键在于确定如何进行调整!迟早您会遇到这种情况:应用程序中的 SQL 查询不能按照您想要的方式进行响应。它要么不返回数据,要么耗费的时间长得出奇。如果它降低了报告或您的企业应用程序的速度,用户必须等待的时间过长,他们就会很不满意。就像您的父母不想听您解释为什么在深更半夜才回来一样,用户也不会听你解释为什么查询耗费
2007-06-07 17:54:00
582
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人