自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(37)
  • 资源 (137)
  • 收藏
  • 关注

原创 C# ToolStrip菜单图标大小设置 源码下载

改变工具栏图标大小,大小级别(small medium large extralarge)    使用方法: 将工程中的IconToolStrip.cs、OldNewEvent.cs、Resources拷贝到你的工程中,然后在form_load中加入类似如下的代码即可实现改变图标的大小: // Begin updating tool

2011-06-29 22:09:00 4304

原创 测试文章

测试一下测试

2016-08-16 17:24:08 335

原创 测试文章

测试一下测试

2016-08-16 17:20:58 345

转载 JS获取父框架的内容:获取子框架的内容:js框架应用

获取父框架的内容:   window.parent.id; ("id"为你要获取该值的名称);      parent.document.getElementById("xxx");      parent.document.getElementsByTagName("body")[0];         获取子框架的内容:   (第一个getElementBy

2012-01-11 21:33:51 652

转载 window.name实现的跨域数据传输

这篇文章是对 JavaScript跨域总结与解决办法 的补充。有三个页面:a.com/app.html:应用页面。a.com/proxy.html:代理文件,一般是一个没有任何内容的html文件,需要和应用页面在同一域下。b.com/data.html:应用页面需要获取数据的页面,可称为数据页面。实现起来基本步骤如下:在应用页面(a.com/app.html)中创建一个if

2012-01-11 21:32:55 724

转载 IE中的网页元素 添加删除事件处理函数

在IE中,每个window对象有两个方法,attachEvent()和detachEvent().所以顾名思义,attachEvent()用来给一个事件附加处理函数的,而detachEvent()用来讲事件处理函数分离出来,这两个方法都有两个参数:分别是要分配事件处理函数的名字如(onClick)及触发事件时候的处理函数[Object].attachEvent('EventType',"Fun

2012-01-11 14:43:02 887

转载 js 添加事件 attachEvent(IE) 和 addEventListener(W3C) 的用法

一般我们在JS中添加事件,是这样子的 1obj.onclick=method这种绑定事件的方式,兼容主流浏览器,但如果一个元素上添加多次同一事件呢? 1obj.onclick=method1; 2obj.onclick=method2;

2012-01-11 14:42:22 2107

转载 c# webBrowser加载完毕判断 加载完毕事件

if (webBrowser1.ReadyState == WebBrowserReadyState.Complete && webBrowser1.IsBusy == false)            {                //panelEx1.Text = "页面加载完成";                timer1.Enabled = false;

2012-01-11 12:25:29 5662

原创 使用InternetSetCookie操作cookie

代码中引入 [DllImport("wininet.dll", CharSet = CharSet.Auto, SetLastError = true)] public static extern bool InternetSetCookie(string lpszUrlName, string lbszCookieName, string lpszCookieData)

2012-01-10 20:35:39 14279 3

转载 js dom 方法 js中cloneNode()的使用(复制元素)

js dom 方法 js中cloneNode()的使用(复制元素)  document方法: getElementById(id) Node 返回指定结点的引用 getElementsByTagName(name) NodeList 返回文档中所有匹配的元素的集合 createElement(name) Node Node creat

2012-01-08 22:22:06 7339

原创 判断 iframe 是否加载完成的完美方法

一般来说,我们判断 iframe 是否加载完成其实与 判断 JavaScript 文件是否加载完成 采用的方法很类似:var iframe = document.createElement("iframe");iframe.src = "http://www.planabc.net";if (!/*@cc_on!@*/0) { //if not IE    iframe.o...

2012-01-08 20:49:27 83

转载 判断 iframe 是否加载完成的完美方法

一般来说,我们判断 iframe 是否加载完成其实与 判断 JavaScript 文件是否加载完成 采用的方法很类似:var iframe = document.createElement("iframe");iframe.src = "http://www.planabc.net";if (!/*@cc_on!@*/0) { //if not IE    iframe

2012-01-08 20:40:41 822

原创 Websphere MQ 中文乱码解决

解决方法:发送:MQEnvironment.CCSID = 1381;(在JAVA连接代码时指定一下字符集)String messageData = "发送数据";message.writeUTF(messageData );接收:MQEnvironment.CCSID = 1381;(在JAVA连接代码时指定一下字符集)String messageData = mes

2011-10-30 19:30:42 10572

原创 MQ错误代码对应的错误说明

The following is a list of reason codes, in numeric order, providing detailed information to help you understand them, including:An explanation of the circumstances that have caused the code to be

2011-10-25 20:10:33 68138 3

原创 IBM WebSphere Portal V7安装手册--portal v7从入门到精通系列之一

1、准备工作1.1、软件下载portal7试用版下载地址:https://www14.software.ibm.com/webapp/iwm/web/reg/download.do?source=ESD-PORTALEXPRESS&S_PKG=CRDQ6ML&S_TA

2011-09-16 22:03:37 2891 4

原创 disable just-in-time (JIT) debugging的两个方法

************** JIT Debugging **************To enable just-in-time (JIT) debugging, the .config file for thisapplication or computer (mac

2011-09-07 15:35:10 12605

原创 flex中 AdvancedDataGrid、datagrid导出到excel

实现原理:使用as3xls这个lib,将当前页面上的AdvancedDataGrid或者Datagrid导出到excel中,效果如下  关键代码ExportToExcel.aspackage{ import com.as3xls.xls.Excel

2011-09-03 17:27:28 1931 1

原创 解决ie6下select框无法设置title alt 的问题

在ie6下设置select框的title或alt会抛出异常,在ie8下无此问题。而客户大多数还是使用xp系统,因此很多客户端都是ie6,因此title提示的问题还是要解决,解决办法如下 var innerhtm = '';document.write(inne

2011-09-03 15:55:08 1482

转载 js获取屏幕宽度及操作

网页可见区域宽:document.body.clientWidth 网页可见区域高:document.body.clientHeight 网页可见区域宽:document.body.offsetWidth (包括边线的宽) 网页可见区域高:document.body.

2011-08-10 10:09:36 6685

转载 解决document.form.submit()对象不支持此属性或方法

javaScript方法如下: function Query(){ var obj_form=document.getElementById('s9320Form'); obj_form.action="/s9320.do?command=query"; obj_form.met

2011-07-06 20:42:51 2492

原创 网页启动客户端程序代码

摘自:http://blog.csdn.net/liyun919/archive/2009/11/13/4807958.aspx1、 需求描述:项目由网页部分及客户端大厅程序部分组成,网页上有一个进入大厅按钮,如果客户端安装了,点击按钮直接打开客户端程序,如果未安装则提示消息提醒安装客户端程序。类似于QQ游戏大厅、联众游戏大厅的打开,QQ的强制聊天功能。2、首先要实现如果客户端安装了,...

2011-07-06 09:38:36 414

转载 网页启动客户端程序代码

摘自:http://blog.csdn.net/liyun919/archive/2009/11/13/4807958.aspx1、 需求描述:项目由网页部分及客户端大厅程序部分组成,网页上有一个进入大厅按钮,如果客户端安装了,点击按钮直接打开客户端程序,如果

2011-07-06 09:33:21 939

原创 解决访问不同的站点iframe应用session丢失(cookie丢失的问题)的问题

之前做一个页面时发现如果:A站iframe引用B站的页面时(A,B不在同一台服务器),如果在这个Iframe中B的页面做了跳转,当用IE浏览的时候会导致server 的session丢失,原因是IE的保护机制禁止将iframe中得到的sid传递给下一个页面。解

2011-07-05 21:35:53 2192 1

原创 异步设置textbox的值

 原文:http://www.codeproject.com/KB/cs/AvoidingInvokeRequired.aspx异步设置  UIThreadVS2005_src.zip 

2011-07-02 16:07:12 962

原创 最简单的ajax例子

ajax函数以及html页面:DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> html xmlns="http://www.w3.org/1999/xhtml"> head> title>Sim

2011-07-01 05:16:00 494

原创 Oracle JDBC驱动与时间不见了的问题 -Doracle.jdbc.V8Compatible="true"

  参考 http://www.blogjava.net/midea0978/archive/2008/06/13/207655.html

2011-07-01 00:32:00 2081

原创 利用winrar实现定时备份 实现全备份和增量备份

最近在开发一个利用rar实现文件备份的软件,用到了winrar的命令行方式: 主要用到的其实就两组命令,一组用于实现全备份,一组用于实现增量备份: 全备份:Rar.exe a -r –ep1 “目标压缩文件路径” “源文件或者源文件夹路径”增量备份:Rar.exe a –ta20110619230401 –ep1 -r “目标压缩文件路径” “源文件或者源文件夹

2011-06-30 16:23:00 4583

原创 在style中设置对其方式

曾经有一次设置td里面内容的对其方式,设置为左对齐,使用align=”left” ,但是无论如何都无法对其,最后没办法,尝试了使用style的方式,结果凑效了,在此稍加记录    当你无论如何设置html的东西都无效时,可以尝试使用style进行设置 在里面你可以放一个table或者div,设置为左对齐就可以了

2011-06-23 12:25:00 2372

原创 log4net 使用access记录日志 log4net实例 log4net示例 log4net实战

     最近在做一个小软件,需要用到记录日志的功能,使用java编程的朋友应该对log4j很熟悉,当然它也有.net的版本,而我要做的小软件就是基于.net下的,因此就用到了log4net,下面进入主题。 开发环境:vs2005+log4net1.2+access 1、新建一个mdb文件,建立一个名称为data的数据表 表结构如下 2、首先在vs2005中新建一个工程,在AssemblyI

2011-06-18 13:24:00 1078

原创 swfloader 根据容器与浏览器大小填充缩放

我们有时候需要通过swfLoader缩放来适应加载的内容 xml version="1.0"?>mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> mx:Panel title="SWFLoader填充" height="100%" width="100%" paddingTop="10" pa

2011-06-14 04:31:00 1159

原创 java调用c# webservice错误记录及解决 server.userexception java.lang.NullPointerException 解决axis与weblogic8的冲突

最近在弄一个java调用c#所写的webservice的程序(我使用的是axis1.4),在测试中用c#写了一个很简单的webservice,然后在myeclipse中采用以下代码调用import org.apache.axis.client.Call;import org.apache.axis.client.Service;import javax.xml.namespace.QName;import javax.xml.rpc.ServiceException;import java.

2011-03-17 21:44:00 9030 3

原创 sso

先说几句废话,自我感觉此方案还不错,至少解决了安全性的问题,也实现了统一登出,能跨平台,跨服务期,跨域名,当然需要相应的联盟站点的支持,但从原理上绝对能跨平台。设计和具体实现的描述比较长,今天先介绍一部分 1引言 1.1 编写目的 详细说明单点登录组件(SSO)的设计思想和实现方法,是日后该组件维护和扩展工作的基本依据文档。预期读者是要实现单点登录(SSO)系统的系统设计人员,系统开发...

2011-03-01 14:14:06 119

原创 windows命令 设置classpath等

java_home.bat Java代码 wmic ENVIRONMENT create name="JAVA_HOME",username="<system>",VariableValue="C:\Program Files\Java\jdk1.6.0_16"   wmic ENVIRONMENT create name="JAVA_HOME",user...

2010-12-03 09:03:22 291

原创 Java获取各种常用时间方法

package com.hefeng.test; import java.text.DateFormat; import java.text.ParsePosition; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util....

2010-12-02 18:17:56 70

FCKeditor编辑器 中文乱码问题 彻底解决方案(提供附件)

       大家都知道fck编辑器乱码的地方有这几个:上传乱码,超链接选择文件乱码,添加文件夹乱码等等,以下是我的解决办法,大家有更好的方法可以在此互相交流       1.首先加一个过滤器,将request和response全部编码成中文代码如下      package Filter; import java.io.IOException; import javax.s...

2009-04-03 19:39:09 188

文件夹exe病毒专杀

非常方便快捷,一步到位

2009-04-01 21:59:58 220

原创 iis+Tomcat整合 (详细步骤+整合文件)

最近做在部署一个工程,在网上疯狂搜索资料,所获取的资料都是很乱的,说是要教人如何整合,部署,结果按照他们说的一步一步去做,老是不成功,今天终于被我做好了,现在拿来给大家分享一下。先来介绍一下我的部署环境:JDK1.5、tomcat 5.5、IIS6.0、windows2003上面的安装过程就不详细说了,只介绍一下我的tomcat是安装在 C:\Program Files\Tomcat 5.5 下。...

2009-03-31 17:06:20 851

c#编写的人事管理系统源码.rar

c#编写的人事管理系统源码-winform的

2021-12-05

Neuron-master (1).zip

使用python将html打包为exe运行

2021-12-04

Web2ExeWin-Setup.zip

可以将网页做成独立运行的exe的工具

2021-12-04

Smart2DCutting_usersguide.zip

电子据优化软件Smart2DCutting的用户说明书

2021-12-04

java实现后台打开网页存为截图

java实现后台打开网页存为截图 原理很简单

2016-01-14

jquery选项卡插件多种tab标签切换效果

jquery选项卡插件多种tab标签切换效果 jquery插件

2016-01-14

Query-ContextMenu

Query-ContextMenu 右键菜单,jquery插件

2016-01-14

GooFlow 工作流设计工具

GooFlow 工作流设计工具,js开发

2016-01-14

js画拓扑图

利用js画拓扑图的例子,采用jsplumb开发.rar

2016-01-14

flowchart.js

flowchart 流程显示工具类,基于javascript

2016-01-14

workflow-designer

workflow-designer 工作流设计工具 基于easyui

2016-01-14

springmvc_mybatis

springmvc_mybatis

2015-04-17

100家大公司java笔试题汇总

100家大公司java笔试题汇总

2015-04-17

android 记事本

android 记事本 简单记事本程序

2015-03-29

百度登陆demo

百度登陆demo httpwebrequest来模拟

2015-03-29

CSharp简单数字验证码解析

CSharp简单数字验证码解析

2015-03-29

AdvancedDataGrid或datagrid导出到excel.rar

AdvancedDataGrid或datagrid导出到excel.rar AdvancedDataGrid或datagrid导出到excel.rar AdvancedDataGrid或datagrid导出到excel.rar

2011-09-03

nc二次开发文档 非常详细

一.得到选中的表体行数,列数等内容(总行数和当前选中的行数) 2 二.设置初始化界面时的默认值 3 三.表单默认执行方法以及常用的操作 3 四.在报表中显示合计行 4 五.在UI类中设置小数位数 5 六.将表体数据清空 5 七.设置字段是否可编辑的状态 5 八.在UI类中编写方法打印查询条件 6 九.弹出提示框 6 十.在报表中得到查询面板的值 6 十一.比较时间的开始与结束时间 7 十二.设置编辑公式 7 十三.清空缓冲数数据getBufferData().clear(); 7 十四. 在UI类中设置查询对话框的默认值 7 十五. 管理型界面单据各个类的继承关系 8 十六.是否显示行号,合计行,数组按钮,隐藏列 8 十七. 根据单据的不同状态来控制按钮的可用性。 9 十八. UI工厂开发单据模式下如何自定义按钮? 10 十九.需要设置动作脚本的六个按钮 11 二十. 单据界面设置某些字段的显示与隐藏 11 二十一. 单据开发的一般步骤: 11 二十二. 界面数据访问 12 二十三.导出与导入数据库 12 二十四.list map set的操作 12 二十五. 改变焦点自动显示表头金额的值 13 二十六.设置行选中的状态 13

2011-06-30

httpwatchpro 网页分析工具

推荐给大家一个强大的网页数据分析工具HttpWatch 利用httpwatch ,你可以详细的分析某个网站的cookie 、消息头、response等等信息,对于追踪测试网站问题来说是不可多得的一个好工具 下载在文章后面 不需要注册码,压缩包里面有对应的license

2011-06-30

Oracle ip修复工具 非常好用

Oracle ip修复工具 非常好用 当你的oracle连不上时,运行下这个程序,说不定有意想不到的效果

2011-03-05

restful restful所需要的jar包

restful restful所需要的jar包 ========================================= Restlet, a RESTful Web framework for Java ========================================= http://www.restlet.org ----------------------------------------- Native REST support * Core REST concepts have equivalent Java classes (UniformInterface, Resource, Representation, Connector for example). * Suitable for both client-side and server-side web applications. The innovation is that that it uses the same API, reducing the learning curve and the software footprint. * Restlet-GWT module available, letting you leverage the Restlet API from within any Web browser, without plugins. * Concept of "URIs as UI" supported based on the URI Templates standard. This results in a very flexible yet simple routing with automatic extraction of URI variables into request attributes. * Tunneling service lets browsers issue any HTTP method (PUT, DELETE, MOVE, etc.) through a simple HTTP POST. This service is transparent for Restlet applications. Complete Web Server * Static file serving similar to Apache HTTP Server, with metadata association based on file extensions. * Transparent content negotiation based on client preferences. * Conditional requests automatically supported for resources. * Remote edition of files based on PUT and DELETE methods (aka mini-WebDAV mode). * Decoder service transparently decodes compressed or encoded input representations. This service is transparent for Restlet applications. * Log service writes all accesses to your applications in a standard Web log file. The log format follows the W3C Extended Log File Format and is fully customizable. * Powerful URI based redirection support similar to Apache Rewrite module. Available Connectors * Multiple server HTTP connectors available, based on either Mortbay's Jetty or the Simple framework or Grizzly NIO framework. * AJP server connector available to let you plug behind an Apache HTT

2011-03-05

CAS RESTful API 开发文档

server 地址: http://www.jasig.org/cas/download client 地址: http://www.ja-sig.org/downloads/cas-clients/ 当前最新版本 cas-server-3.4.2 , cas-client-3.1.10 2. 安装 server l 解压 cas-server-3.4.2 ,将 cas-server-3.4.2\modules\cas-server-webapp-3.4.2.war 拷贝到 tomcat 的 webapps 下。 3. 配置 server 3.1. 添加 cas server 依赖的 jar n cas-server-3.4.2\modules\cas-server-support-jdbc-3.4.2.jar 、 cas-server-integration-restlet-3.4.2.jar 拷贝到 D:\server\apache-tomcat-6.0.18\webapps\cas\WEB-INF\lib 目录下。 n 数据库驱动 jar 拷贝到 D:\server\apache-tomcat-6.0.18\webapps\cas\WEB-INF\lib 目录下。 n 到 apache 网站下载下面三个 cas server 依赖 jar 包拷贝到 D:\server\apache-tomcat-6.0.18\webapps\cas\WEB-INF\lib 目录下 Ø http://apache.freelamp.com/commons/collections/binaries/commons-collections-3.2.1-bin.zip Ø http://apache.etoak.com/commons/dbcp/binaries/commons-dbcp-1.4-bin.zip Ø http://apache.etoak.com/commons/pool/binaries/commons-pool-1.5.4-bin.zip n 下载 restlet 相关 http://www.restlet.org/downloads/ , 解压后将下面 jar 拷贝到 D:\server\apache-tomcat-6.0.18\webapps\cas\WEB-INF\lib: ( 它奶奶地这一步骤很折腾 ) com.noelios.restlet.ext.servlet_2.5.jar com.noelios.restlet.ext.spring_2.5.jar com.noelios.restlet.jar org.restlet.ext.spring_2.5.jar org.restlet.jar n 下载 CGlib http://sourceforge.net/projects/cglib/files/ 拷贝到 D:\server\apache-tomcat-6.0.18\webapps\cas\WEB-INF\lib 。 n 下载 ASM/OW2 http://forge.ow2.org/projects/asm/ 拷贝到 D:\server\apache-tomcat-6.0.18\webapps\cas\WEB-INF\lib 。 3.2. 添加数据源

2011-03-05

httpClient所需要的jar包

Apache HttpComponents Client ============================ Welcome to the HttpClient component of the Apache HttpComponents project. Building Instructions --------------------- For building from source instructions please refer to BUILDING.txt. Dependencies ------------ HttpClient main module requires Java 5.0 compatible runtime and depends on the following external libraries: * Apache HttpComponents HttpCore * Apache Commons Logging * Apache Commons Codec (for detailed information on external dependencies please see pom.xml) HttpMime module is optional and requires Java 5.0 compatible runtime and depends on the following external libraries: * Apache HttpComponents HttpCore * Apache mime4j * Apache Commons Logging (for detailed information on external dependencies please see pom.xml) Licensing --------- Apache HttpComponents Client is licensed under the Apache License 2.0. See the files called LICENSE.txt and NOTICE.txt for more information. Cryptographic Software Notice ----------------------------- This distribution may include software that has been designed for use with cryptographic software. The country in which you currently reside may have restrictions on the import, possession, use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check your country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. See <http://www.wassenaar.org/> for more information. The U.S. Government Department of Commerce, Bureau of Industry and Security (BIS), has classified this software as Export Commodity Control Number (ECCN) 5D002.C.1, which includes information security software using or performing cryptographic functions with asymmetric algorithms. The form and manner of this Apache Software Foundation distribution makes it eligible for export under the License Exception ENC Technology Software Unrestricted (TSU) exception (see the BIS Export Administration Regulations, Section 740.13) for both object code and source code. The following provides more details on the included software that may be subject to export controls on cryptographic software: Apache HttpComponents Client interfaces with the Java Secure Socket Extension (JSSE) API to provide - HTTPS support Apache HttpComponents Client does not include any implementation of JSSE. Contact ------- o For general information visit the main project site at http://hc.apache.org/ o For current status information visit the status page at http://hc.apache.org/status.html

2011-03-05

IP地址隐藏者(IP地址切换器)V1.8.0.3 绿色版

IP地址隐藏者(IP地址切换器)V1.8.0.3 绿色版 操作简单的代理服务器设置软件

2010-08-22

右键新建菜单修复工具 1.0

右键新建菜单修改小工具 本软件免费使用,是一款单一绿色软件,它用于在鼠标右键->新建菜单中增加或删除文件类型!

2010-08-22

小批处理大作用,暴力删除带点文件夹

不便截图,请见谅! 现在有很多电脑会遇到带点文件夹,无法删除,有了这个小批处理就解决了。 能强力删除任何文件夹,注意不要删除系统文件夹,否则。。。。 使用方法:把你想删除的文件夹拖到批处理图标上即可执行!

2010-08-22

天堂笔记 V3.00

本软件可当成备忘软件,也可把它当成日记软件!天堂笔记增加了一些新功能,如批量更新提醒日期等!

2010-08-22

U盘防病毒植入加密程序 1.0绿色免费版

U盘防病毒植入加密程序 1.0绿色免费版 软件分类:磁盘工具 运行环境:WinXP/2003/win7/ 软件语言:简体中文 授权方式:免费版 软件大小:1006KB 更新时间:2010-8-22 软件简介: 主要是对U盘进入加密,防止病毒及其他人动你的U盘

2010-08-22

发个好东西 让你XP桌面变成3D正方体桌面

当桌面变成正方体可以四个面都开东西 是为XP和win7做的桌面美化的好东西 当桌面变成正方体可以四个面都开东西 是为XP和win7做的桌面美化的好东西

2010-08-22

悠久文件夹加密工具 V1.8

说明及特性: 1.第一次使用,双击软件,系统会自动在文件夹右键中加入“加密/解密文件夹”菜单,然后就可对着文件夹点击右键进行加密/解密。 2.被加密过的文件夹,无法打开,双击文件夹系统会报错,解密后即恢复正常。 3.被加密过的文件夹,无法删除,点击删除会报错,解密后即恢复正常。 4.没有绝对的安全,也许对于顶级高手而言,白宫服务器可以攻入,五角大楼服务器亦可以攻入。那有什么是安全的呢? 5.顶级高手毕竟是世间少有的。所以,您使用这款绿色的加密软件,是相对很安全的。

2010-08-22

路由器IP自动更换,绿色版

路由器IP自动更换(FuckRouter) V1.26 定时更换路由器拨号ip,自动给路由器换ip。 全自动软件实现,省去登录的痛苦。 自用很方便,拿来分享一下。 无毒无广告。绿色产品

2010-08-22

vbs定时执行 可按时执行指定的软件

vbs定时执行软件 可按时执行指定的软件 可按时执行指定的软件 可按时执行指定的软件

2010-08-02

oracle 连接oracle查询的插件 excel'

在excel下的一个插件 可以非常方便的连接oracle‘进行查询等数据库操作

2010-06-03

vb api 参考

api参考文档 vb的 api参考文档 可以参考下

2010-05-31

abc财务 vb编写

abc财务 采用vb编写的财务软件 值得参考

2010-05-31

CoolGridV2 实用grid控件

CoolGridV2 使用的vb grid控件

2010-05-31

PagingGrid 分页控件

PagingGrid 可实现分页的vb控件

2010-05-31

VB_共享软件防破解设计技术初探(三).

VB_共享软件防破解设计技术初探(三). 各种各样破解技术的讲解

2010-05-31

VB_共享软件防破解设计技术初探(二).

VB_共享软件防破解设计技术初探(二). 各种各样的破解技术的讲解

2010-05-31

VB_共享软件防破解设计技术初探(一).

VB_共享软件防破解设计技术初探(一). 各种各样的破解技术的讲解

2010-05-31

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除