<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="rss.xsl" media="screen"?>
<rss version="2.0">
  <channel>
    <title>瀚靈軒 - 『程序设计』</title>
    <link>http://www.cnaxh.com/forum/showforum-8.aspx</link>
    <description>Latest 20 threads</description>
    <copyright>Copyright (c) 瀚靈軒</copyright>
    <generator>Discuz!NT</generator>
    <pubDate>Thu, 08 Jan 2009 20:35:56 GMT</pubDate>
    <ttl>60</ttl>
    <item>
      <title>程序技巧问题综合收集(更新)...</title>
      <description><![CDATA[第一个问题：body.fix,head.fix是什么文件?用什么打开?

这个文件主要是用来生成图形验证码的文件,一般有下面几种Head.fix和Body.fix两种!
Fix是bmp的一种衍生格式,用来生成ASP代码的图形验证码 
Eg:
1.图象绘制完成后,将文件存为24位位图格式的BMP图象文件.
2.去除前54Byte内容. 
3.改名为BODY+数字.FIX 
4.修改C]]></description>
      <link>http://www.cnaxh.com/forum/showtopic-32.aspx</link>
      <category>『程序设计』</category>
      <author>Alva</author>
      <pubDate>Tue, 29 Jan 2008 15:44:34 GMT</pubDate>
    </item>
    <item>
      <title>[原创]SPY+++ V0.2</title>
      <description><![CDATA[本人首发 
SPY+++++++++++ 0.2 
===========================
增加了很多小功能 ，呵呵 反正对我来说很有用 ，还在不断改进中。。。
对上一版本的更新：
* 增加了对已知句柄的应用，可在 “窗口句柄: ”栏中输入已知句柄回车
  
  即可取得关于这个句柄的相关信息（如果句柄有效）
* 增加对窗口标题修改功能 修改标题后 回车
* 增加]]></description>
      <link>http://www.cnaxh.com/forum/showtopic-316.aspx</link>
      <category>『程序设计』</category>
      <author>叮咚茶</author>
      <pubDate>Wed, 21 May 2008 12:05:03 GMT</pubDate>
    </item>
    <item>
      <title>DOS中SET命令的详细用法</title>
      <description><![CDATA[DOS中SET命令的详细用法
例子:
@echo off
set var=我是值
echo %var%
pause
请看 set var=我是值 ,这就是BAT直接在批处理中设置变量的方法!
set 是命令 var是变量名   =号右边的&amp;quot;我是值&amp;quot;是变量的值
在批处理中我们要引用这个变就把var变量名用两个%(百分号)扩起来,如%var%
这种SET语法只能直]]></description>
      <link>http://www.cnaxh.com/forum/showtopic-315.aspx</link>
      <category>『程序设计』</category>
      <author>Alva</author>
      <pubDate>Wed, 21 May 2008 11:47:43 GMT</pubDate>
    </item>
    <item>
      <title>BAT批处理文件妙用</title>
      <description><![CDATA[在使用电脑的过程中我们会遇到很多的问题，烦人的广告窗口不停的弹出；不停的在多套网络配置中切换；时常忘掉备份网络中的关键数据；加密的文件夹由于误操作无法打开。你想过没有以上这些问题都可以通过一个小文件解决？你甚至可以借助它解决几乎所有在使用电脑时遇到的问题。它就是功能强大的bat文件。 

　　一、查漏补缺——给系统功能添把火　　 

　　我们的操作系统虽然功能强大，但是在某方面的应用上依旧]]></description>
      <link>http://www.cnaxh.com/forum/showtopic-279.aspx</link>
      <category>『程序设计』</category>
      <author>Alva</author>
      <pubDate>Wed, 07 May 2008 09:40:01 GMT</pubDate>
    </item>
    <item>
      <title>强:顶级程序员编写的程序</title>
      <description><![CDATA[e100 33 f6 bf 0 20 b5 10 f3 a5 8c c8 5 0 2 50 68 13 1 cb e 1f be a1 1 bf 0 1 
e11b 6 57 b8 11 1 bb 21 13 89 7 4b 4b 48 79 f9 ad 86 e0 8b c8 bd ff ff e8 20 
e134 0 3d 0 1 74 1a 7f 3 aa eb f3 2d ff 0 ......]]></description>
      <link>http://www.cnaxh.com/forum/showtopic-142.aspx</link>
      <category>『程序设计』</category>
      <author>Alva</author>
      <pubDate>Thu, 21 Feb 2008 16:03:02 GMT</pubDate>
    </item>
    <item>
      <title>JavaScript常用内容</title>
      <description><![CDATA[Code:    
一、验证类 
1、数字验证内 
1.1 整数 
1.2 大于0的整数 （用于传来的ID的验证) 
1.3 负整数的验证 
1.4 整数不能大于iMax 
1.5 整数不能小于iMin 
2、时间类 
2.1 短时间，形如 (13:04:06) 
2.2 短日期，形如 (2003-12-05) 
2.3 长时间，形如 (2003-12-05 13:04:06]]></description>
      <link>http://www.cnaxh.com/forum/showtopic-100.aspx</link>
      <category>『程序设计』</category>
      <author>Maker</author>
      <pubDate>Thu, 14 Feb 2008 01:56:05 GMT</pubDate>
    </item>
    <item>
      <title>asp数组使用</title>
      <description><![CDATA[在ASP编程中使用数组

数组的定义

Dim MyArray

MyArray = Array(1,5,123,12,98)

可扩展数组

Dim MyArray()

for i = 0 to 10

ReDim Preserve MyArray(i)

MyArray(i)=i

next

将一个字符串分割并返回分割结果的数组

Dim MyA]]></description>
      <link>http://www.cnaxh.com/forum/showtopic-101.aspx</link>
      <category>『程序设计』</category>
      <author>Maker</author>
      <pubDate>Thu, 14 Feb 2008 02:03:55 GMT</pubDate>
    </item>
  </channel>
</rss>