• 大小: 5.15MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-23
  • 语言: 其他
  • 标签: vc++  串口助手  

资源简介

配套书本学习更快,初学者 可以借鉴本代码学校到串口编程的方法。

资源截图

代码片段和文件信息

// 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  第05章\SCOMMV23\AnimateDlgIcon.cpp

     文件        980  1998-12-23 11:40  第05章\SCOMMV23\AnimateDlgIcon.h

     文件       5824  2015-07-01 16:47  第05章\SCOMMV23\Debug\AnimateDlgIcon.obj

     文件          0  2015-07-01 16:47  第05章\SCOMMV23\Debug\AnimateDlgIcon.sbr

     文件      46900  2015-07-01 16:47  第05章\SCOMMV23\Debug\HYPERlink.obj

     文件          0  2015-07-01 16:47  第05章\SCOMMV23\Debug\HYPERlink.sbr

     文件      21236  2015-07-01 16:47  第05章\SCOMMV23\Debug\PushPin.obj

     文件          0  2015-07-01 16:47  第05章\SCOMMV23\Debug\PushPin.sbr

     文件    3187712  2015-07-01 16:47  第05章\SCOMMV23\Debug\SCOMM.bsc

     文件    2195549  2015-07-01 16:47  第05章\SCOMMV23\Debug\SCOMM.exe

     文件    2598584  2015-07-01 16:47  第05章\SCOMMV23\Debug\SCOMM.ilk

     文件      22347  2015-07-01 16:47  第05章\SCOMMV23\Debug\SCOMM.obj

     文件    6920796  2015-07-01 16:47  第05章\SCOMMV23\Debug\SCOMM.pch

     文件    4252672  2015-07-01 16:47  第05章\SCOMMV23\Debug\SCOMM.pdb

     文件      18416  2015-07-01 16:46  第05章\SCOMMV23\Debug\SCOMM.res

     文件          0  2015-07-01 16:47  第05章\SCOMMV23\Debug\SCOMM.sbr

     文件     109716  2015-07-01 16:47  第05章\SCOMMV23\Debug\SCOMMDlg.obj

     文件          0  2015-07-01 16:47  第05章\SCOMMV23\Debug\SCOMMDlg.sbr

     文件      27569  2015-07-01 16:47  第05章\SCOMMV23\Debug\SerialPort.obj

     文件          0  2015-07-01 16:47  第05章\SCOMMV23\Debug\SerialPort.sbr

     文件     105816  2015-07-01 16:47  第05章\SCOMMV23\Debug\StdAfx.obj

     文件    1364834  2015-07-01 16:47  第05章\SCOMMV23\Debug\StdAfx.sbr

     文件     214016  2015-07-01 16:48  第05章\SCOMMV23\Debug\vc60.idb

     文件     372736  2015-07-01 16:47  第05章\SCOMMV23\Debug\vc60.pdb

     文件      13096  1998-08-12 09:36  第05章\SCOMMV23\HYPERlink.CPP

     文件       3323  1998-08-12 09:36  第05章\SCOMMV23\HYPERlink.H

     文件       4622  1998-05-27 11:24  第05章\SCOMMV23\LABEL.CPP

     文件       2093  1998-05-27 11:22  第05章\SCOMMV23\LABEL.H

     文件       5893  2001-06-23 19:23  第05章\SCOMMV23\PushPin.cpp

     文件       1310  2001-06-23 19:11  第05章\SCOMMV23\PushPin.h

............此处省略44个文件信息

评论

共有 条评论