资源简介
一个牛人写的串口通信mfc源代码,也是目前使用最广串口调试软件的源代码,本人也是费劲千辛万苦从其他地方下载到的。
代码片段和文件信息
// AnimateIcon.cpp : implementation of the CAnimateDlgIcon class
// written by Rajesh Parikh
// email : rparikh@usa.net
// Not protected by any copyright use it freely
//
/////////////////////////////////////////////////////////////////////////////
#include “stdafx.h“
#include “AnimateDlgIcon.h“
// default constructor
CAnimateDlgIcon::CAnimateDlgIcon()
{
m_iImageCounter = -1;
m_iMaxNoOfImages = -99;
m_imgList.m_hImageList = NULL;
}
// default do nothing destructor
CAnimateDlgIcon::~CAnimateDlgIcon()
{
DestroyIcon(hPrevIcon);
}
// This is the first function which needs to be called in order
// to fill the image list
// Parameters :
// ------------
// int IDOfImgListResource - pass the Resource ID of a toolbar resource
// containing the image list
// int numberOfImages - Number of images (16x16) in the toolbar resource
// transparentColor - RGB value of color you want to be transparent
BOOL CAnimateDlgIcon::SetImageList(int IDOfImgListResourceint numberOfImagesCOLORREF transparentColor)
{
if(numberOfImages <= 0)
return FALSE;
m_iMaxNoOfImages = numberOfImages;
VERIFY(m_imgList.Create(IDOfImgListResource161transparentColor));
return TRUE;
}
// This function needs to be called repetatively to show next image
// Parameters :
// ------------
// NONE
BOOL CAnimateDlgIcon::ShowNextImage()
{
if(m_imgList.m_hImageList == NULL)
return FALSE;
m_iImageCounter++;
if(m_iImageCounter >= m_iMaxNoOfImages)
m_iImageCounter =0;
// extract the icon from imagelist
hIcon = m_imgList.ExtractIcon(m_iImageCounter);
// send the message to frame to update icon
HICON hPrevIcon = (HICON) AfxGetMainWnd()->SetIcon(hIconFALSE);
// Free the previous icon resource
DestroyIcon(hPrevIcon);
return TRUE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1833 1998-12-23 12:48 SCOMMV23\AnimateDlgIcon.cpp
文件 980 1998-12-23 11:40 SCOMMV23\AnimateDlgIcon.h
文件 5458 2009-03-14 14:00 SCOMMV23\Debug\AnimateDlgIcon.obj
文件 46506 2009-03-23 17:25 SCOMMV23\Debug\HYPERli
文件 20842 2009-03-14 14:00 SCOMMV23\Debug\PushPin.obj
文件 2195518 2009-03-23 17:25 SCOMMV23\Debug\SCOMM.exe
文件 2562120 2009-03-23 17:25 SCOMMV23\Debug\SCOMM.ilk
文件 21971 2009-03-14 14:00 SCOMMV23\Debug\SCOMM.obj
文件 5478488 2009-03-14 14:00 SCOMMV23\Debug\SCOMM.pch
文件 3621888 2009-03-14 14:00 SCOMMV23\Debug\SCOMM.pdb
文件 18416 2009-03-14 14:00 SCOMMV23\Debug\SCOMM.res
文件 109321 2009-03-14 14:00 SCOMMV23\Debug\SCOMMDlg.obj
文件 27203 2009-03-14 14:00 SCOMMV23\Debug\SerialPort.obj
文件 105471 2009-03-14 14:00 SCOMMV23\Debug\StdAfx.obj
文件 214016 2009-03-23 17:25 SCOMMV23\Debug\vc60.idb
文件 372736 2009-03-14 14:00 SCOMMV23\Debug\vc60.pdb
文件 13096 1998-08-12 09:36 SCOMMV23\HYPERli
文件 3323 1998-08-12 09:36 SCOMMV23\HYPERli
文件 4622 1998-05-27 11:24 SCOMMV23\LABEL.CPP
文件 2093 1998-05-27 11:22 SCOMMV23\LABEL.H
文件 5893 2001-06-23 19:23 SCOMMV23\PushPin.cpp
文件 1310 2001-06-23 19:11 SCOMMV23\PushPin.h
文件 3561 2001-05-16 22:18 SCOMMV23\ReadMe.txt
文件 694 2001-06-24 21:46 SCOMMV23\RES\ANIM.BMP
文件 3262 2001-06-03 23:08 SCOMMV23\RES\choosepath.ico
文件 1078 2001-05-16 23:08 SCOMMV23\RES\COMM.ICO
文件 326 2001-05-17 07:44 SCOMMV23\RES\CURSOR1.CUR
文件 3262 2002-08-26 00:06 SCOMMV23\RES\GJWTECH1.ICO
文件 766 2000-12-09 21:35 SCOMMV23\RES\GREEN.ICO
文件 3262 2001-06-09 23:18 SCOMMV23\RES\ICON_GRE.ICO
............此处省略35个文件信息
- 上一篇:BMP180气压计STM32例程+51例程+数据手册
- 下一篇:C++任意进制转换
评论
共有 条评论