Welcome![Sign In][Sign Up]
Location:
Search - QQ T

Search list

[Windows Develop用Macromed提供ocx控件开发的 FLASH 播放器

Description: 每次想看FLASH的时候到都找不到播放器,还是拖进IE里看,于是乎利用Macromedia提供的Flash.ocx以及相关接口进行编写,功能比较完善,不过由于Flash.ocx本身接口的缺陷有些问题不能解决,只有等到研究Swf格式才行,本代码也解决了很多网友不能解决的问题,对这方面感兴趣或对本程序提出BUG的网友可以和我联系 QQ:8207531-I can t find a player everytime when I want play FLASH movie. I have to drag it into IE. So I develp this player by using OCX which provide by Macromedia. Some problem can not be resolved because of the own problem of the OCX. Bug reports cantact me though QQ:8207531
Platform: | Size: 21624 | Author: 杨杰 | Hits:

[Other resource超级人机五子棋

Description: 五子棋简介 通过一番不懈的努力,我的第一个比较大一点的游戏终于做成了,虽然里面还有许许多多的不足,但已经可以正常运行了。 它可以分两大块:1. 人机对战 2.两人对战(都可以用光标进行控制的) 我来介绍一下它的使用方法: 1.刚开始是进行选择:y: 代表人机对战 n:代表两人对战 2.若选择y,接下来输入选手的名字,为英文字母和数字的组合,最好不要超过10个字符,再下来选择谁先下,若选1代表自己先走,若选2代表计算机先走。 3.若选择n,请输入两个选手的名字,再选谁先下,1代表选手1先下,2代表选手2先下。 4.进入对战界面后,用光标来控制下子。用上下左右键控制光标。把它移到一个合适的位置,按下回车就可经落子了。 5.在对战过程中,有一些功能的操作,按t进入操作,在DO:后按下h表示侮棋,按下r重新开始,按e直接退出。在玩的过程中也可以按e直接退出。 6.下完后可以按下y表示回放以前的下棋过程。 7.当每次出现ERROR或者AGAIN时要先按下一个回车,然后再放子。 8.先说这么多吧,有什么问题多指教,请联系我,QQ:94665967-331 briefings by some tireless efforts, my first one more point of the game was finally made, although there is also many deficiencies, but can be a normal operation. It can be divided into two units : 1. Two man-machine players. Two players (you can use the cursor control) for me to comment on its use : 1. First there is a choice : y : proxy fans n : two representatives of the two players. If they choose y, then down the importation of the names of the players for the English alphabet and figures on the composition, preferably not more than 10 characters, then the choice of who should, if an election ahead of their representatives, if elected two representatives ahead of the computer. 3. If they choose to n, enter the name of two players, whoever is selected, a representative of a player
Platform: | Size: 32927 | Author: xc | Hits:

[Internet-NetworkWeb QQ系统

Description: 开发环境:win2000professionSP4 + vc6MFC 1、运行注册登录服务器和聊天服务器,由注册登录服务器控制聊天通信服务器的运行和停止,聊天服务器可以单独运行,但单独运行后窗口隐藏,不好关闭,最好由注册登录服务器来控制其运行和关闭。 2、运行客户端。 3、若客户端点注册向导则显示注册向导,分三步:基本信息、详细资料和网络设置,然后发送注册消息(用户名、年龄、性别、密码、真名、城市、电邮、头像ID、电话),保存网络设置到data目录下的netset.cfg文件,注册登录服务器检查数据库,若用户名存在则返回exist!;若不存在则将注册数据写入数据库,写数据库成功,注册成功,返回success!写数据库失败,注册失败,返回error! 4、若客户端点登录则发送登录消息,则检查网络设置文件netset.cfg,找到该文件则按设置连接服务器,没找到文件则弹出消息框,点“否”进行网络设置,点“是”进行用户注册;注册登录服务器检查数据库,验证成功返回success!失败返回error!若成功则用该用户名联接聊天服务器,发送用户名消息,否则退出。 5、聊天通信服务器收到连接请求,创建套接字,创建与该套接字关联的发送线程和接收线程,发送线程被挂起,并将发送线程、套接字、地址和用户名组成结构,加入链表,如此循环。 7、客户端发送消息,程序加上附加信息后消息结构为:“接收者用户名” + “:” + “发送者头像ID” + “~” + “(星期、月、日、年、时、分、秒)” +"\t" +"发送者用户名" +“->” + “接收者用户名” +"\n\r" + “发送的消息”。若客户端点传送文件,则发送的信息结构为:接收者用户名 + ":" + "SendFile!" + 发送者用户名 + "~" + 发送方IPAddr。同时启动发送文件线程,显示传送文件对话框,再启动一个线程创建套接字,绑定,侦听,等待连接。 8、聊天服务器收到消息后依照“接收者用户名”查找链表,若找到则唤醒相应线程,转发信息,未找到则给发送者回复消息:“接收者用户名” + “现在不在线,请以后再发消息!”。 9、客房端接收消息,检查消息头,一般消息则发送消息者头像图标在接收者托盘处闪动,同时托盘提示消息变为“某某某的消息”,接收者双击托盘图标接收消息,回到第7步。消息头部为"SendFile!"则弹出消息框,询问是否接收文件,点是则启动接收文件线程,显示传送文件对话框,再启动一个线程创建套接字,连接发送方,进行文件传送;点否则发送的信息结构为:接收者用户名 + ":" + "Refuse!"。消息头部为"Refuse!"则关闭原来启动的发送文件线程。 10、客户端关闭,发送"Close",聊天服务器接收,从链表中删除对应项。
Platform: | Size: 221438 | Author: laixiao | Hits:

[ICQ-IM-Chat控制台QQ 【VC6.0可编译版本 源码下载】myQQ

Description: 一个控制台面板下的QQ 简介:该程序由XiaoXia创作,www.xiaoxia.org ,前段时间不巧被我看到,不过没有VC版本,正好闲着,经过小小改动,可以在VC下运行了,服务我们这些对QQ有点兴趣的VC小菜~。 申明:本代码只供学习交流。 支持命令: help: 显示以下帮助信息. add/a: 添加好友. add+QQ号码. cls/clear: 清屏. view/v: 所有好(群)友列表.(指向前操作) who/w: 在线好(群)友列表.(指向前操作) qun/q: 显示群列表.(指向前操作) to/t: 指向某个QQ号或者前面的编号. enter/e: 指向某个群号或者前面的编号. leave/l: 离开群.(指向后操作) say/s: 发送信息.(指向后操作) info/i: 查看相应信息.(指向后操作) update/u: 更新所有列表. status: 改变状态(online|away|busy|killme|hidden) verify/r: 输入验证码(验证码在verify目录下). change/c: 更换用户登陆. exit/x: 退出.
Platform: | Size: 3635051 | Author: Simonz | Hits:

[Game Hook Cracklink.tar

Description: qq连连看游戏的外挂源码,喜欢qq连连看游戏的看一下 -qq Lianliankan source plug-in games, like qq games look Lianliankan
Platform: | Size: 79872 | Author: bonnie | Hits:

[Crack HackQQtea

Description: QQ的TEA加密算法,有要的可以下下来玩玩!-QQ of the TEA encryption algorithm, it can be to play down under!
Platform: | Size: 3072 | Author: しょさん | Hits:

[ICQ-IM-ChatQQ

Description: 类似QQ的网络聊天程序源码,支持TCP和UDP连接,可以传输屏幕截图-Similar network QQ chat program source code, support for TCP and UDP connections, you can transfer screen shots
Platform: | Size: 1626112 | Author: wu | Hits:

[Linux-Unixlinuxqq_1.0-Preview2008_i386.tar

Description: linux 下qq,解压后直接可用,非常不错。希望多支持!-linux under qq, decompression can be used directly, very good. I hope more support!
Platform: | Size: 4918272 | Author: yanwei | Hits:

[Crack HackQQEncrypt

Description: 一个QQ-TEA加密解密算法的应用程序, 可以直接对数据进行加密和解密, 对于分析QQ登录协议很有帮助-A QQ-TEA encryption and decryption algorithm applications, can be directly on the data encryption and decryption, for analysis of the registry agreement QQ helpful
Platform: | Size: 69632 | Author: 宋福强 | Hits:

[Mathimatics-Numerical algorithmsTea-c++

Description: tea 加密算法 qq使用的就是这个加密算法来 解决登陆问题-tea encryption algorithm used in qq is the encryption algorithm to solve the land problem
Platform: | Size: 2223104 | Author: smst | Hits:

[TCP/IP stackmhqq

Description: vfp梦幻QQ:服务器和客户端,tcp协议在vfp的应用-vfp QQ
Platform: | Size: 1541120 | Author: liu3zy | Hits:

[CSharpqq

Description: 小学生算术练习程序设计(采用结构的方法来表示题目信息) 2.学生成绩管理系统 (1)主菜单: 1. 输入学生基本信息(I) 2. 输入学生成绩(C) 3. 数据查询(S) 4. 统计数据(T):5. 退出系统(X) (2)输入学生基本信息 包括学生的学号、姓名、性别、年龄、家庭地址,保存到student.txt文件中,以方便以后录入成绩。 -Primary and secondary school students practice arithmetic program design (the structure of the method used to indicate the subject of the information) 2. Student achievement management system (1) Main Menu: 1. Enter basic information about students (I) 2. The importation of student achievement (C) 3. Data query (S) 4. Statistical data (T): 5. From the system (X) ( 2) Enter the basic information students including students of the school number, name, sex, age, home address, saved to file student.txt to facilitate the achievement after the entry.
Platform: | Size: 34816 | Author: | Hits:

[Linux-Unixqq.tar

Description: 这是一个linux基于MiniGUI的简单模仿QQ界面的程序。-This is a simple linux-based imitation MiniGUI interface QQ procedures.
Platform: | Size: 13312 | Author: 杨勇泉 | Hits:

[ICQ-IM-Chatqqshanziba

Description: qq闪字吧程序源码 文件大小:1.84MB 文件类型:WinRAR 压缩文件-qq flash source word process it
Platform: | Size: 1932288 | Author: | Hits:

[Linux-Unixqq.tar

Description: linux 下简单即时通讯软件,tcl/tk语言界面设计-the simple linux instant messaging software, tcl/tk language interface design
Platform: | Size: 30720 | Author: xiaoying | Hits:

[GUI Developdhcdl

Description: cSharp编写的导航工具,类是qq的导航栏,对初学者有很好的学习价值-cSharp navigation tool for the preparation of the class is qq the navigation bar, good for beginners to learn the value of
Platform: | Size: 646144 | Author: 王嘉序 | Hits:

[matlabDigitalFilter

Description: 1.题目:数字滤波器的设计与应用 2.设计要求:利用 Matlab 软件,以复合信号分离为例,对 “数字信号处理” 课程中 的谱分析 、数字滤波器设计和信号滤波这三个过程进行了仿真实现,给出了仿真结果。 3.具体步骤: (1)构造原始信号s(t) (2)画出s(t)的频谱 (3)设计ellipse数字滤波器(IIR),包括低通,带通,带通,并显示幅频特性 (4)用得到的滤波器进行滤波,分离出三路信号,观察时域波形和幅频特性 (5)用三路信号s1,s2,s3尝试重新合成原始信号 4.问题:为什么重新合成的信号和原信号不相等呢?谁能解释一下?谢谢,QQ:664519036- 1. Title: Digital Filter Design and Application 2. Design requirements: use of Matlab software to composite signal separation, for example, on "Digital Signal Processing" course Of the spectral analysis, digital filter design and signal filtering process carried out three Simulation, the simulation results. 3. Concrete steps: (1) construct the original signal s (t) (2) Draw s (t) of the spectrum (3) design ellipse digital filter (IIR), including low pass, band pass, band pass, and shows amplitude-frequency characteristics (4) filtering with a filter obtained by the isolation of three signals, observed time-domain waveform and frequency characteristics (5) with a three-way signal s1, s2, s3 try to re-synthesis of the original signal 4. Question: Why is re-synthesized signal and the original signal is not equal to it? Who can explain? Thank you, QQ: 664519036
Platform: | Size: 1024 | Author: 张智刚 | Hits:

[Other Web Codeqq-t-java-sdk-master

Description: 对SDK中封装的方法进行了测试,并且对未封装的方法也进行了重新的补充,在新浪的开发平台的“工具”中,对接口进行了相应的测试。-SDK package testing, and the unencapsulated re supplement, " tools" in the of Sina development platform, the interface to the test.
Platform: | Size: 209920 | Author: 华瑾 | Hits:

[e-languageQQ资料查看器

Description: QQ资料查看器真的不知道为什么一定要20个字有点难(QQ data viewer really doesn't know why it's hard to have 20 words)
Platform: | Size: 1024 | Author: 残青 | Hits:

[Other强聊器A-1

Description: 电脑QQ聊天针对无法直接发信息的陌生好友使用 输入QQ号点击强聊即可(Computer QQ chat for unfamiliar friends who can't send information directly Enter QQ and click on a strong chat)
Platform: | Size: 432128 | Author: 6868468哈哈哈 | Hits:
« 12 3 4 »

CodeBus www.codebus.net