⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.txt

📁 用VB编写的一个用于实时显示卫星云图的应用程序
💻 TXT
字号:
'*********************************************************************
'		       Micaps云图显示控件V1.0
'
'	           陕西汉中 郭江峰  hz_gjf@163.com
'**********************************************************************
'
' 控件名称: CloudX Active Control Module
'
' 控件有以下关键属性:
'
'   CloudX.CloudFileName    云图文件名(Micaps第13类文件)
'   CloudX.MapFileName      地图文件名(BMP位图)
'   CloudX.PalFileName      云图调色板名(Micaps第15类文件)
'   CloudX.CloudTitle       云图文件头内容
'
' 还有以下关键方法:
'
' ·打开云图(同CloudFileName属性)
'   CloudX.LoadCloud(FileName as string) as Boolean
'      FileName: 云图文件名(Micaps第13类文件)
'      返回: 成功 true 失败:false
'
' ·打开地图(同MapFileName属性)
'   CloudX.LoadMap(FileName as string) as Boolean
'      FileName: 地图文件名(BMP位图)
'      返回: 成功 true 失败:false
'
' ·打开调色板(同PalFileName属性)
'   CloudX.LoadPal(FileName as string) as Boolean
'      FileName: 云图调色板名(Micaps第15类文件)
'      返回: 成功 true 失败:false
'
' ·设置云图一种颜色索引的颜色RGB值
'   CloudX.SetColor(i,r,g,b as integer)
'       i: 颜色索引
'       r,g,b: 颜色的红绿蓝三色分量
'   *调用完该方法后需要调用CloudX.Refresh刷新云图才能看到效果
'
'**********************************************************************
'
'注意:
'    地图文件为一张BMP位图,用户可自行修改,注意黑色为透明色,即位图上的黑色
'在显示时将不能看见。
'
'  详细使用方法见VB例程
'**********************************************************************
'
'声明:
'    本控件仅供气象软件开发技术交流使用!!!如果你要用在气象业务程序和科研课
'题中,需要注册!!!!注册版程序请和软件作者联系
'
'  用户可到http://www.hzqx.com.cn/gjf下载最新版本!!!!
'
'**********************************************************************
========================================================================
		ActiveX Control DLL : CLOUDX
========================================================================

ControlWizard has created this project for your CLOUDX ActiveX Control
DLL, which contains 1 control.

This skeleton project not only demonstrates the basics of writing an
ActiveX Control, but is also a starting point for writing the specific
features of your control.

This file contains a summary of what you will find in each of the files
that make up your CLOUDX ActiveX Control DLL.

CloudX.dsp
    This file (the project file) contains information at the project level and
    is used to build a single project or subproject. Other users can share the
    project (.dsp) file, but they should export the makefiles locally.

CloudX.h
	This is the main include file for the ActiveX Control DLL.  It
	includes other project-specific includes such as resource.h.

CloudX.cpp
	This is the main source file that contains code for DLL initialization,
	termination and other bookkeeping.

CloudX.rc
	This is a listing of the Microsoft Windows resources that the project
	uses.  This file can be directly edited with the Visual C++ resource
	editor.

CloudX.def
	This file contains information about the ActiveX Control DLL that
	must be provided to run with Microsoft Windows.

CloudX.clw
	This file contains information used by ClassWizard to edit existing
	classes or add new classes.  ClassWizard also uses this file to store
	information needed to generate and edit message maps and dialog data
	maps and to generate prototype member functions.

CloudX.odl
	This file contains the Object Description Language source code for the
	type library of your control.

/////////////////////////////////////////////////////////////////////////////
CloudX control:

CloudXCtl.h
	This file contains the declaration of the CCloudXCtrl C++ class.

CloudXCtl.cpp
	This file contains the implementation of the CCloudXCtrl C++ class.

CloudXPpg.h
	This file contains the declaration of the CCloudXPropPage C++ class.

CloudXPpg.cpp
	This file contains the implementation of the CCloudXPropPage C++ class.

CloudXCtl.bmp
	This file contains a bitmap that a container will use to represent the
	CCloudXCtrl control when it appears on a tool palette.  This bitmap
	is included by the main resource file CloudX.rc.

/////////////////////////////////////////////////////////////////////////////

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -