资源简介
用Qt实现的Windows平台远程控制软件,包含源代码和编译后可以运行的程序,服务器端(被控端)为进程形式,客户端(主控端)为图形界面程序。客户端在连接时要设置服务器端的ip地址以及要显示的长度和宽度(不能超过服务器端屏幕分辨率)。
代码片段和文件信息
#include “algo.h“
void writeAndBlock(QTcpSocket* socket uchar* buf int len)
{
int fill = 0;
int w;
while(true)
{
w = socket->write((char*)(buf + fill) len - fill);
if(w > 0)
{
fill += w;
}
if(fill == len)
break;
}
socket->flush();
}
void readAndBlock(QTcpSocket* socket uchar* buf int len)
{
int fill = 0;
int r;
while(true)
{
r = socket->read((char*)(buf + fill) len - fill);
if(r > 0)
{
fill += r;
}
if(fill == len)
break;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-04-30 23:19 remote_control\
目录 0 2014-04-30 23:01 remote_control\bin\
文件 40448 2014-04-30 22:47 remote_control\bin\client.exe
文件 39936 2014-04-30 21:50 remote_control\bin\cserver.exe
文件 118784 2011-12-02 09:30 remote_control\bin\libgcc_s_dw2-1.dll
文件 979982 2011-12-02 09:30 remote_control\bin\libstdc++-6.dll
文件 47972 2011-08-24 06:59 remote_control\bin\mingwm10.dll
文件 2847232 2013-03-28 21:21 remote_control\bin\QtCore4.dll
文件 10137600 2013-03-28 21:20 remote_control\bin\QtGui4.dll
文件 1290752 2013-03-28 21:21 remote_control\bin\QtNetwork4.dll
目录 0 2014-04-30 23:19 remote_control\src\
目录 0 2014-04-30 23:19 remote_control\src\client\
文件 645 2013-10-17 16:35 remote_control\src\client\algo.cpp
文件 202 2013-10-15 20:35 remote_control\src\client\algo.h
文件 526 2013-10-24 16:28 remote_control\src\client\client.pro
文件 37126 2014-04-30 23:01 remote_control\src\client\client.pro.user
文件 4143 2014-04-30 22:01 remote_control\src\client\cmdthread.cpp
文件 1206 2013-10-24 12:56 remote_control\src\client\cmdthread.h
文件 609 2013-10-24 12:31 remote_control\src\client\consts.h
文件 6917 2014-04-30 22:35 remote_control\src\client\controlpanel.cpp
文件 1316 2013-10-24 16:56 remote_control\src\client\controlpanel.h
文件 518 2013-10-16 22:29 remote_control\src\client\main.cpp
文件 2700 2014-04-30 22:47 remote_control\src\client\mainwindow.cpp
文件 938 2014-04-30 22:42 remote_control\src\client\mainwindow.h
文件 4335 2013-10-24 17:50 remote_control\src\client\mapthread.cpp
文件 1187 2013-10-23 22:00 remote_control\src\client\mapthread.h
文件 142 2014-04-30 22:45 remote_control\src\client\values.cpp
文件 206 2014-04-30 22:45 remote_control\src\client\values.h
目录 0 2014-04-30 23:19 remote_control\src\cserver\
文件 714 2013-10-24 10:11 remote_control\src\cserver\algo.cpp
文件 224 2013-10-24 10:11 remote_control\src\cserver\algo.h
............此处省略14个文件信息
相关资源
- NDK-R12B windows-x86_64百度云盘
- windows3.2简体中文版,虚拟机文件
- Windows 3.0 安装软盘(3.5 720k)
- WINDOWS内核安全编程 寒江独钓 光盘源
- 寒江独钓-Windows内核安全编程(完整版
- 实现Windows与Linux两系统间自由切换
- 如何删除Linux系统后找回Windows的启动
- 飞康NSS、CDP力保Windows Server 2008数据迁
- 意天Windows助手(进程强杀/进程守护
- git for windows 汉化包 工具
- 分享一个远程控制软件源代码
- 含激活码AOMEI Dynamic Disk Manager 12 wind
- windows7 x86符号表part05)
- windows 64位系统下安装Code Warrior6.3方法
- LibXL for Windows 3.8.3 最新版Excel操作库带
- redis for Windows
- Intel® Parallel Studio XE 2016 Update 1 专业
- Intel Parallel Studio XE Cluster Edition for W
- Ubuntu下操作Excel,qt代码
- Labwindows/CVI下Excel打开、读写操作
- 如何实现Linux与windows文件互传
- Qt图片浏览器 --基于Qt的Graphics View f
- Wox最新版本-windows
- qtnribbon2破解
- labview获取子窗口句柄FindwindowsEX(AP
-
Windows em
bedded Standard 7 X86X64纯净版 - Windows Server 2012 R2 上部署与安装AD域
- IBM Tivoli Storage Manager FastBack为Windows提
- windows磁盘io测试工具
- Qt软件开发 完整项目代码
评论
共有 条评论