您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 使用窗口函数截取OICQ 帐号密码

  2. 在 VB 中使用窗口函数截取 OICQ 帐号密码 武汉 艾军 摘要 本文简单介绍如何采用 Visual Basic 语言,利用窗口函数截取 OICQ 帐号密码,并以此说明 OICQ 存在安全隐串。 关键字 密码,窗口函数,即时监视 一、引言 OICQ 从无到有,现在可以说中国的每一个网吧都装有 OICQ,每一个上过网的人都用过 OICQ,那么 OICQ 的加密功能倒底怎么样呢, OICQ 版本从低到高,其加密功能也越来越强,现在破解 OICQ 密码的方法大致有:穷举法、直接读取密码文件两种。
  3. 所属分类:VB

    • 发布日期:2004-08-09
    • 文件大小:22528
    • 提供者:xintc110
  1. Delphi 函数介绍

  2. Delphi6函数大全(1) <> 首部 function AnsiResemblesText(const AText, AOther: string): Boolean; $[StrUtils.pas功能 返回两个字符串是否相似说明 ANSI(American National Standards Institute)美国国家标准协会;不 区分大小写参考 function StrUtils.SoundexProc; var StrUtils.AnsiResemblesProc例子
  3. 所属分类:Delphi

    • 发布日期:2007-07-30
    • 文件大小:30720
    • 提供者:welcomejzh
  1. 加密解密函数(另附加密解密函数可逆测试程序)

  2. 加密解密函数(另附加密解密函数可逆测试程序) Public Function UserCode(Optional ByVal password As String) As String '用户口令加密-非汉字 Dim il_bit, il_x, il_y, il_z, il_len, i As Long Dim is_out As String If password = "" Then Exit Function '注意此修改 il_len = Len(passwo rd) il_x = 0
  3. 所属分类:其它

    • 发布日期:2009-06-12
    • 文件大小:10240
    • 提供者:uaime
  1. VB编程资源大全(英文源码 函数)

  2. 1,Interpolation.zipA small application for interpolation of (x,y) data such that datapoints are spaced by an interval choosen by the user. Also demonstrates the use of MS Rich TextBox 6.0 control and basic I/O of text (data) files. A detailed Word 6
  3. 所属分类:VB

    • 发布日期:2007-10-24
    • 文件大小:1048576
    • 提供者:zhangxucool
  1. VB函数大全(初学者的好帮手)

  2. 对于可删除的驱动器,不需要将媒体插入其中,它就可以在Drives集合中显示出来。 下面的代码举例说明了如何获得 Drives 集合,以及如何用 For Each...Next 语句来访问该集合中的每个Drive: Sub ShowDriveList Dim fs, d, dc, s, n Set fs = CreateObject("scr ipting.FileSystemObject") Set dc = fs.Drives For Each d in dc s = s & d.Drive
  3. 所属分类:VB

    • 发布日期:2009-12-23
    • 文件大小:502784
    • 提供者:crazydaytime
  1. sqlserver自定义函数

  2. --计算当前月的实际天数 Create FUNCTION dbo.CalcDaysOfMonth (@time varchar(6)) RETURNS int AS BEGIN DECLARE @Days int DECLARE @Month int DECLARE @Year int SET @Year=SUBSTRING(@time,1,4) SET @Month=SUBSTRING(@time,5,6) if( @Month='1' OR @Month='3' OR @Month='5'
  3. 所属分类:其它

    • 发布日期:2010-02-08
    • 文件大小:34816
    • 提供者:koumingjie
  1. 用vb编写的函数作图软件

  2. 用vb编写的函数作图软件的代码: Const Pi = 3.1415926535 '定义圆周率 Dim a, wor '定义用于在Picture1上的一个位置打印字符函数 Private Function PrintWord(X, Y, Word As String) With Picture1 .CurrentX = X .CurrentY = Y .ForeColor = RGB(0, 0, 255) End With Picture1.Print Word End Function '定
  3. 所属分类:C

    • 发布日期:2010-04-13
    • 文件大小:32768
    • 提供者:ningyongming
  1. 显示DLL里的函数名depends22_x86

  2. Both MFC42LOC.DLL and CMCTLENU.DLL are language specific resource DLLs that may not be needed on your system. Many modules on Windows store all their language specific messages in external DLLs (one per language). At run-time, the module loads the l
  3. 所属分类:桌面系统

    • 发布日期:2011-06-08
    • 文件大小:568320
    • 提供者:beyond628393
  1. oracle笔记函数,视图,存储过程,触发器

  2. 1、索引: create index index_name on table(字段); 创建索引后 读取数据较快 但是修改数据时候会变慢 因为它还要增加一个索引到索引表里面 2、视图:(1、简化查询,2.保护私有数据) create view view_name as 查询内容 视图创建的越多越不好维护(表结构改了视图也得跟着改) 3、三范式(设计数据库的时候需要遵守的一些规则) 第一范式:第一范式的目标是确保每列的原子性,如果每列都是不可再分割的最小数据单元,则满足第一范式。 第二范式:在第
  3. 所属分类:Oracle

    • 发布日期:2011-06-20
    • 文件大小:7168
    • 提供者:tianchao2531627
  1. 求因子_过程与函数(通过此例熟悉VB的函数调用)

  2. 通过此例熟悉VB的函数调用 Function fac%(f%(), n) Dim i% For i = 1 To n - 1 If n Mod i = 0 Then k = k + 1 ReDim Preserve f(k) f(k) = i End If Next End Function
  3. 所属分类:VB

    • 发布日期:2011-06-28
    • 文件大小:1024
    • 提供者:yayayuyaya99
  1. asp 读取文件和保存文件函数代码

  2. '************************************* '读取文件 '************************************* Function LoadFromFile(ByVal File) Dim objStream Dim RText RText = Array(0, "") Set objStream = Server.CreateObject("ADODB.Stream") With objStream .Type = 2 .Mode = 3
  3. 所属分类:网页制作

    • 发布日期:2012-09-26
    • 文件大小:1024
    • 提供者:zhangqi88250787
  1. sql常用函数

  2. substring(),charindex(),PATINDEX(),convert(),case when then end,cast(),ISNULL(),Len(),Replace(),Right()
  3. 所属分类:SQLServer

    • 发布日期:2012-11-11
    • 文件大小:46080
    • 提供者:lunar_wong
  1. 两个字符串处理函数

  2. 发布2个字符串处理函数: 1、ParameterValue() 2、ParameterCount() 用法示例: dim TheString as String TheString="欢迎,光临,枕善居,源代码" msgbox ParameterCount(",",TheString) 返回 4 ParameterValue(",",TheString,2) 返回 "欢迎" Public Function ParameterCount(ParseCharacter As String, _ t
  3. 所属分类:Java

    • 发布日期:2006-06-20
    • 文件大小:4096
    • 提供者:chenxh
  1. OPenGL函数查询

  2. Name glAccum — operate on the accumulation buffer C Specification void glAccum(GLenum op, GLfloat value); Parameters op Specifies the accumulation buffer operation. Symbolic constants GL_ACCUM, GL_LOAD, GL_ADD, GL_MULT, and GL_RETURN are accepted. v
  3. 所属分类:C++

  1. sas函数资料

  2. SAS base software has plenty of built-in functions. Proper use of these functions can save a lot of programming time and effort. In this paper, we will illustrate how to use some of new functions in version 6.12 and later. These new functions includ
  3. 所属分类:其它

    • 发布日期:2015-01-27
    • 文件大小:43008
    • 提供者:byromivy
  1. 用InputBox和If then Else,if elseif,SelectCase三种方法判断分支函数的应用程序,.net源代码.

  2. 用InputBox和If then Else,if elseif,SelectCase三种方法判断分支函数的应用程序,.net源代码.
  3. 所属分类:C#

    • 发布日期:2009-04-09
    • 文件大小:2097152
    • 提供者:gouyue
  1. 分享FindFile函数.txt

  2. 这个findFile函数功能强大,完整。 Imports System.Collections.Generic Imports System.IO Friend Class FindFiles Public Shared GRAPHIC_FILES As String() = New String() {"*.bmp", "*.jpg", "*.jpeg", "*.jpe", "*.jfif", "*.tif", _ "*.tiff", "*.png", "*.gif",
  3. 所属分类:VB

    • 发布日期:2020-04-13
    • 文件大小:758
    • 提供者:plumlee
  1. Linux使用技巧:Bash测试和比较函数

  2. 您是否为 Bash shell 中大量的测试和比较选项而困惑呢?这个技巧可以帮助您解密不同类型的文件、算术和字符串测试,这样您就能够知道什么时候使用 test、 [ ]、 [[ ]]、 (( )) 或 if-then-else 了。本文介绍了如何理解和使用 Bash shell的测试和比较操作。
  3. 所属分类:其它

    • 发布日期:2020-03-04
    • 文件大小:53248
    • 提供者:weixin_38610657
  1. SQL集合函数中case when then 使用技巧

  2. 我们都知道SQL中适用case when then来转化数据库中的信息 比如 select (case sex when 0 then '男' else '女' end) AS sex from studentInfo
  3. 所属分类:其它

    • 发布日期:2020-09-11
    • 文件大小:135168
    • 提供者:weixin_38659955
  1. JS中Promise函数then的奥秘探究

  2. then()方法用于指定当前实例状态发生改变时的回调函数。它返回一个新的Promise实例。下面这篇文章主要给大家介绍了关于JS中Promise函数then的相关资料,需要的朋友可以参考借鉴,下面来一起看看吧
  3. 所属分类:其它

    • 发布日期:2020-10-18
    • 文件大小:57344
    • 提供者:weixin_38518376
« 12 3 4 5 6 7 8 9 10 ... 33 »