定时显示远程计算机的桌面
2010-09-04 20:48:07 来源:WEB开发网三、客户端程序实现
其次是客户端 BossSeeClient.exe,只要是用来接收对方的发过来的字节,并且造型为bitmap显示在客户区。首先在编辑中写入要监视的对方的ip地址,这样主机就会出现在右边的视图中了,双击对应的图标就可以连接了,在这里双击的时候我加入了记时器settimer双击之后,如果连接顺利就可以在右边的客户端显示对方的桌面的情况了。并且由于有定时,所以显示会及时的更新,你可以根据自己的需要改变监视的时间,只要右键对方的ip地址就可以有对话框弹出更改自己的要求了。
void CBossSeeClientView::OnGetScreen()
{ //通过网络获得bitmap的信息填写lpdata
// TODO: Add your command handler code here
if(m_pRecBMPSocket==NULL) return;
if(lpData!=NULL)
{delete lpData;lpData=NULL;}
char MSGTYPE1[30]="B";
int BTMInfoSize=24;
char BTMInfoBuf[24];
m_pRecBMPSocket->Send(MSGTYPE1,30);
int ret=m_pRecBMPSocket->Receive(BTMInfoBuf,sizeof(BITMAP));
if (ret!=24)
{ MessageBox("failed recive 24"); return;}
BITMAP *BTMBUF=(BITMAP *)BTMInfoBuf;
btm.bmBits=BTMBUF->bmBits;
btm.bmBitsPixel=BTMBUF->bmBitsPixel;
btm.bmHeight=BTMBUF->bmHeight;
btm.bmPlanes=BTMBUF->bmPlanes;
btm.bmType=BTMBUF->bmType;
btm.bmWidth=BTMBUF->bmWidth;
btm.bmWidthBytes=BTMBUF->bmWidthBytes;
char MSGTYPE2[30]="D";
m_pRecBMPSocket->Send(MSGTYPE2,30);
int size=btm.bmWidthBytes*btm.bmHeight;
lpData=new char[size];
if(lpData==NULL)
MessageBox("faile memery");
char *pch=lpData ;
int nBytesRec=0;
int nBytesThisTime;
do{ //发送的内容较大采用循环发送完成为止
nBytesThisTime=m_pRecBMPSocket->Receive(pch,size-nBytesRec);
nBytesRec+=nBytesThisTime;
pch+=nBytesThisTime;
}while(nBytesRecUpdateAllViews(NULL,NULL,NULL);//更新视图
/////////////////////////////////////
}
void CClientView::OnDraw(CDC* pDC)
{//显示接收到的位图信息
CDocument* pDoc = GetDocument();
// TODO: add draw code here
if(lpData==NULL) return;
BITMAP myBITMAP;
myBITMAP.bmBits=btm.bmBits;
myBITMAP.bmBitsPixel=btm.bmBitsPixel;
myBITMAP.bmHeight=btm.bmHeight;
myBITMAP.bmPlanes=btm.bmPlanes;
myBITMAP.bmType=btm.bmType;
myBITMAP.bmWidth=btm.bmWidth;
myBITMAP.bmWidthBytes=btm.bmWidthBytes;
BITMAPINFOHEADER bih;
bih.biBitCount=myBITMAP.bmBitsPixel;
bih.biClrImportant=0;
bih.biClrUsed=0;
bih.biCompression=0;
bih.biHeight=myBITMAP.bmHeight;
bih.biPlanes=1;
bih.biSize=sizeof(BITMAPINFOHEADER);
bih.biSizeImage=myBITMAP.bmWidthBytes*myBITMAP.bmHeight;
bih.biWidth=myBITMAP.bmWidth;
bih.biXPelsPerMeter=0;
bih.biYPelsPerMeter=0;
/////////////////////////
CBitmap tbitmap;
if(tbitmap.CreateBitmapIndirect(&myBITMAP)==NULL)
MessageBox("b mull");
if(tbitmap.m_hObject==NULL)MessageBox("NULL");
// CPaintDC tdc(this);
CDC tmemdc;
tmemdc.CreateCompatibleDC(pDC);
SetDIBits(tmemdc.m_hDC,tbitmap,0,btm.bmHeight,lpData,(BITMAPINFO*)&bih,DIB_RGB_COLORS);
CRect trect;
GetClientRect(&trect);
CBitmap* lpOldbit=tmemdc.SelectObject(&tbitmap);
pDC->StretchBlt(0,0,trect.Width(),trect.Height(),
&tmemdc,0,0,myBITMAP.bmWidth,
myBITMAP.bmHeight,SRCCOPY);
}
更多精彩
赞助商链接