CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 屏幕 监控

搜索资源列表

  1. lzwScreenSpy

    0下载:
  2. 简单的远程控制编程的例子,实现了远程文件浏览,和屏幕监控,屏幕监控使用lzw压缩算法-simple remote control programming examples and achieve a remote file browsing, and screen monitoring, Screen Monitor compression algorithm used 4,558,302
  3. 所属分类:远程控制编程

    • 发布日期:2008-10-13
    • 文件大小:112771
    • 提供者:东南
  1. screentrans

    0下载:
  2. 传统的屏幕传输采用的是这样的方法: 抓取屏幕--à传输--à显示图像,此为完成传输一幅的过程.不断重复此过程即可实现屏幕监控.但是这种方法因为图像数据容量大,而网络实际信道容量是有限的,所以效果很不理想,具体表现就是每幅图像之间间隔时间长.后来发展到抓取屏幕-à压缩数据-à传输-à解压缩-à显示图像.这样做速度的确有所提高.但是在INTENET上面效果仍然不好
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:96215
    • 提供者:wwwhhhggg
  1. LANcontrl

    1下载:
  2. 局域网屏幕监控系统是主要由客户端和服务器端两部分组成。 客户端模块 该模块主要用于抓取屏幕信息,进行数据压缩,然后划分数据报,向服务器端发送数据,并等待服务器发来的确认信息。 服务器端模块 该模块主要用于接收客户端发送的数据报,然后向客户端发送确认信息,接着组合数据报为JPEG数据流,最后显示JPEG图像。 操作注意事项 (1)可执行文件位置:Server\Debug\Server.exe Client\Debug\Client.exe 操作流程 运行本
  3. 所属分类:Remote Control

    • 发布日期:2017-04-09
    • 文件大小:2161596
    • 提供者:bbc9527
  1. PMJS(CS)

    0下载:
  2. 一个简单的屏幕监控程序,能查看局域网内其他机器的屏幕。-Screen a simple monitoring program that can view the LAN with other machines of the screen.
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-04-03
    • 文件大小:8887
    • 提供者:杨金
  1. Coolvibes0.4Screen

    0下载:
  2. 超强屏幕监控源码,Zlib压缩,速度超快.Delphi版-Super screen monitor source, Zlib compressed, super-fast. Delphi Edition
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:597568
    • 提供者:xiaofeizai
  1. TM

    0下载:
  2. 局域网内PC电脑屏幕实时监控,数据库部分使用ACCE-LAN PC screen real-time monitoring, the database part of the use of ACCE
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-03-29
    • 文件大小:471087
    • 提供者:ccy269
  1. screencontrolofmine

    0下载:
  2. 用VC写的一个屏幕监控程序-Using VC to write a screen monitoring program
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:432859
    • 提供者:ddb
  1. cc

    0下载:
  2. 自启动,后台运行,每分钟截取20幅屏幕图像,并保存在相应目录,不错的屏幕监控程序.-Since the start, running in the background, the interception of 20 per minute, the screen images and save in the appropriate directory, a good monitoring program screen.
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-13
    • 文件大小:3024278
    • 提供者:郑玉龙
  1. local_monitoring

    0下载:
  2. 本系统属于小型的局域网监控系统,可以对某一台计算机进行屏幕监控,本系统主要实现以下功能: 本系统默认操作员用户名为:tsoft,密码为:111。-The system is small-scale local area network monitoring system can be carried out on a computer monitor screen, the system is mainly to achieve the following functions: the op
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-02
    • 文件大小:513433
    • 提供者:
  1. SockSever

    0下载:
  2. 一个早两年的小型网络监控软件,公布所有的源代码,现在给大家做个参考吧。分为客户端和网络端。可以对远程计算机进行锁定、获取屏幕图像等功能。-A couple of years ago on a small network monitoring software, to publish all the source code, now for everyone to be a reference to it. Divided into client and network side. Can loc
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-03-29
    • 文件大小:38512
    • 提供者:155
  1. NetworkVideoMonitoring

    0下载:
  2. 本系统属于小型的局域网监控系统,可以对某一台计算机进行屏幕监控-This system belongs to a small local area network monitoring system that can carry out the screen of a computer monitor
  3. 所属分类:Other systems

    • 发布日期:2017-06-02
    • 文件大小:14577756
    • 提供者:happy
  1. pingmujiequ

    0下载:
  2. 其实原理就是捕获屏幕画面然后再把图像传给客户机。原理很简单: 1、先利用hdc=GetWindowDC(NULL) 得到桌面的hdc 2、memhdc=CreateCompatibleDC(hdc) 根据桌面的hdc创建一个和屏幕相同的内存DC 3、StretchBlt(memhdc,0, 0, nWid,nHei, hdc, 0, 0,nWid,nHei, SRCCOPY) ,把屏幕的图像复制到内存DC这时你已经在内存中得到了屏幕的图像了。这是设备相关的DDB图像,如果希望转换成设
  3. 所属分类:source in ebook

    • 发布日期:2017-04-02
    • 文件大小:1816
    • 提供者:xushuangjay
  1. Program

    1下载:
  2. 这是一个局域网内的屏幕监控程序,里面含有整个工程。可运行成功。-This is a LAN-screen monitor, which contains the entire project. Can be run successfully.
  3. 所属分类:Internet/网络编程

    • 发布日期:2014-03-13
    • 文件大小:6541997
    • 提供者:大王
  1. RemoteControl

    0下载:
  2. 使用visual C++来实现的一个远程监控程序,通过网络通讯,可以监控到客户端电脑屏幕的动作-RemoteControl
  3. 所属分类:Remote Control

    • 发布日期:2017-03-29
    • 文件大小:609901
    • 提供者:lishizhao
  1. LAN-system

    0下载:
  2. 系统介绍 本系统属于小型的局域网监控系统,可以对某一台计算机进行屏幕监控,本系统主要实现以下功能: l 系统采用人机交互的方式,界面美观友好。 l 屏幕信息需要时时显示,网络延时不能大于1秒。 l 服务器端可以随时运行,只要客户端运行,就能够显示屏幕信息。 l 系统运行时占用内存不能大于10MB,以免影响系统性能。 l 客户端运行时需要隐藏显示窗口,起其感觉不到在运行。-System is introduced This system b
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-05-04
    • 文件大小:1439831
    • 提供者:飘零的落叶
  1. jiankong_11

    0下载:
  2. 按键精灵配合大漠插件写的屏幕监控程序,如果屏幕上的数字变慢了或者不变了都会报警-Key wizard screen to write plug-ins with the desert monitor, if the number on the screen slows down or change the alarm will
  3. 所属分类:Video Capture

    • 发布日期:2017-03-30
    • 文件大小:1364
    • 提供者:肖鹏
  1. 屏幕录像

    0下载:
  2. 针对屏幕操作的一种监控,适合于产线监控。(For screen operation of a monitoring, suitable for line monitoring.)
  3. 所属分类:多媒体编程

    • 发布日期:2017-12-19
    • 文件大小:38912
    • 提供者:henrry
  1. ScreenShare-v2.0

    0下载:
  2. windows平台下的屏幕监控算法,使用C#算法,为2.0版本,使用了局域网分包组包技术(Windows platform screen monitoring algorithm, using C# algorithm for version 2, using the LAN packet, packet technology)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-29
    • 文件大小:610304
    • 提供者:CrankZ
  1. 局域网监控系统

    0下载:
  2. 实现局域网监控,客户端和服务器端,利用c语言实现,可以监控客户端屏幕(LAN monitoring, client and server side, using language implementation, can monitor the client screen.)
  3. 所属分类:网络编程

    • 发布日期:2020-04-05
    • 文件大小:1453056
    • 提供者:Lovewpf
  1. 远程控制软件Control

    1下载:
  2. 能进行屏幕监控、文件监控、USB监控。包含服务断和客户端,可用作局域网电脑管理。(It can monitor screen, file and USB. Including service interruption and client, it can be used for LAN computer management.)
  3. 所属分类:远程控制编程

    • 发布日期:2021-03-10
    • 文件大小:3999744
    • 提供者:KANT522
« 1 2 34 5 6 7 8 9 10 ... 15 »
搜珍网 www.dssz.com