Scripting
文章平均质量分 76
blues-star
这个作者很懒,什么都没留下…
展开
-
XMB数字。
New Document n0 = "#define t_width 3/n"+ "#define t_height 5/n"+ "static char t_bits[] = {0xF,0x5,0x5,0x5,0xF}";n1 = "#define t_width 3/n"+ "#define t_height 5/n"+ "static char t_bits[] = {0x4,0原创 2004-06-24 08:43:00 · 1106 阅读 · 0 评论 -
读取文字点阵。
/*********************************************************************************** * * Copyright (C) 2004 Ming Run. * * This software is provided as-is, without any express or implied warr原创 2004-08-17 12:08:00 · 1422 阅读 · 0 评论 -
Python一例。
# ftptest.py - An example application using Pythons ftplib module.# Author: Matt Croydon matt@ooiio.com>, referencing many sources, including:# Pydoc for ftplib: http://web.pydoc.org/2.2/ftplib.htm原创 2004-08-09 09:01:00 · 1267 阅读 · 0 评论 -
JScript.NET建立多线程程序示例。
/************************************************************************************ * * Copyright (C) 2004 Ming Run. * * This software is provided as-is, without any express or implied war原创 2004-08-13 18:37:00 · 1614 阅读 · 0 评论 -
Python第三天。
import CLR.System.Windows.Forms as WinFormsfrom CLR.System.Drawing import Sizefrom CLR.System.Drawing import Pointfrom CLR.System.Drawing import Colorfrom CLR.System.Drawing import SystemColorsclass原创 2004-08-11 19:03:00 · 2858 阅读 · 1 评论 -
昨天的Python程序改写成JScript.NET了。
// // Using directives// import System;import System.Data;import System.Data.OleDb;import System.Windows.Forms;import System.Drawing; //// Test form Class//class JSTest ext原创 2004-08-12 18:12:00 · 1464 阅读 · 0 评论 -
有点喜欢上Python了。
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.## All Rights Reserved.## This software is subject to the provisions of the Zope Public License,# Version 2.0 (ZPL). A copy of the ZPL sho原创 2004-08-10 17:52:00 · 1215 阅读 · 0 评论 -
发送键盘命令生成get set脚本。
被get set搞的烦死了,又不想用宏(VB的),写了个脚本new ActiveXObject("WScript.Shell").SendKeys("%{TAB}private " + WScript.Arguments(0) + " " + WScript.Arguments(1) + ";~~public " + WScript.Arguments(0) + " " + String.fr原创 2004-08-04 09:39:00 · 1421 阅读 · 2 评论 -
很早写的一个关于VML的例子。
查看代码原创 2004-08-11 11:47:00 · 1316 阅读 · 1 评论 -
脚本语言的定义。
A scripting language is a programming language that is used to manipulate, customise, and automate the facilities of an existing system. In such systems, useful functionality is already available thro原创 2004-08-10 14:40:00 · 1875 阅读 · 3 评论 -
Javascript实现DES加密算法。
转载:http://www.shopable.co.uk/des.html //Javascript version //Paul Tero, July 2001 //http://www.shopable.co.uk/des.html // //Optimised for performance with large blocks by Michael Hayworth, Novembe原创 2004-07-06 10:23:00 · 3697 阅读 · 0 评论 -
自由的脚本 与 重构
自由的脚本 与 重构 关键字:脚本、重构 想想,该写点什么像样的东西了,今天忽然在论坛里看到了一个帖子,给了一个答案,几看都不是很爽,于是就试着重构了几下,写写心得。 问题是这样的:http://community.csdn.net/Expert/topic/3178/3178153.xml?temp=.261532 求一个正则表达式,去除网页上name为yyy的img元原创 2004-07-15 19:02:00 · 1725 阅读 · 3 评论 -
生成文件夹文件列表。
/** * Title: File List Generator * * Description: * * * * Usage: * * 1. Save the code to a file named afile.js; * 2. Drag a Folder Icon on the afile.js * or原创 2004-06-24 08:46:00 · 1487 阅读 · 0 评论 -
Js继承。
// 实现继承 function C_parent() { this.tmp = "Hello world."; } function C_child() { } C_child.prototype = new C_parent(); var obj_child = new C_child(); WSH.Echo(obj_child.tmp);原创 2004-06-25 08:59:00 · 955 阅读 · 0 评论 -
XML保存文件一例,MSXML,ADODB.Stream。
// Save File To XML var SourceFile = "C://manage.vsd"; var TargetXMLFile = "D://tmp//test.xml"; var ado_stream = new ActiveXObject("ADODB.Stream"); var xml_dom = new ActiveXObject("Microsoft.XMLDO原创 2004-06-24 11:43:00 · 1323 阅读 · 0 评论 -
Slider在IE里应用。
<OBJECT id=Slider1 style="WIDTH: 245px; HEIGHT: 45px" classid=clsid:373FF7F0-EB8B-11CD-8820-08002B2F4F5A VIEWASTEXT> alert(Slider1.Value);原创 2004-08-27 09:52:00 · 1247 阅读 · 0 评论