资源简介
驾校管理系统包括:学员管理包括:学员信息建立,维护,查询等。
教练管理:包括:教练信息建立,维护,查询等。
约车管理
收费管理
系统用户管理。
代码片段和文件信息
//*************************************************************************
// BCMenu.cpp : implementation file
// Version : 3.02
// Date : March 2002
// Author : Brent Corkum
// Email : corkum@rocscience.com
// Latest Version : http://www.rocscience.com/~corkum/BCMenu.html
//
// Bug Fixes and portions of code supplied by:
//
// Ben AshleyGirish BharadwajJean-Edouard Lachand-Robert
// Robert Edward CaldecottKenny GoersLeonardo Zide
// Stefan KuhrReiner JungMartin VladicKim Yoo Chul
// Oz SolomonovichTongzhe CuiStephane ClogWarren Stevens
// Damir ValiulinDavid KinderMarc Loiry
//
// You are free to use/modify this code but leave this header intact.
// This class is public domain so you are free to use it any of
// your applications (FreewareSharewareCommercial). All I ask is
// that you let me know so that if you have a real winner I can
// brag to my buddies that some of my code is in your app. I also
// wouldn‘t mind if you sent me a copy of your application since I
// like to play with new stuff.
//*************************************************************************
#include “stdafx.h“ // Standard windows header file
#include “BCMenu.h“ // BCMenu class declaration
#include //SK: makes A2W and other spiffy AFX macros work
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#define BCMENU_GAP 1
#ifndef OBM_CHECK
#define OBM_CHECK 32760 // from winuser.h
#endif
#if _MFC_VER <0x400
#error This code does not work on Versions of MFC prior to 4.0
#endif
static CPINFO CPInfo;
// how the menu‘s are drawn in win9x/NT/2000
UINT BCMenu::original_drawmode=BCMENU_DRAWMODE_ORIGINAL;
BOOL BCMenu::original_select_disabled=TRUE;
// how the menu‘s are drawn in winXP
UINT BCMenu::xp_drawmode=BCMENU_DRAWMODE_XP;
BOOL BCMenu::xp_select_disabled=FALSE;
BOOL BCMenu::xp_draw_3D_bitmaps=TRUE;
CImageList BCMenu::m_AllImages;
CArray BCMenu::m_AllImagesID;
enum Win32Type{
Win32s
WinNT3
Win95
Win98
WinME
WinNT4
Win2000
WinXP
};
Win32Type IsShellType()
{
Win32Type ShellType;
DWORD winVer;
OSVERSIONINFO *osvi;
winVer=GetVersion();
if(winVer<0x80000000){/*NT */
ShellType=WinNT3;
osvi= (OSVERSIONINFO *)malloc(sizeof(OSVERSIONINFO));
if (osvi!=NULL){
memset(osvi0sizeof(OSVERSIONINFO));
osvi->dwOSVersionInfoSize=sizeof(OSVERSIONINFO);
GetVersionEx(osvi);
if(osvi->dwMajorVersion==4L)ShellType=WinNT4;
else if(osvi->dwMajorVersion==5L&&osvi->dwMinorVersion==0L)ShellType=Win2000;
else if(osvi->dwMajorVersion==5L&&osvi->dwMinorVersion==1L)ShellType=WinXP;
free(osvi);
}
}
else if (LOBYTE(LOWORD(winVer))<4)
ShellType=Win32s;
else{
ShellType=Win95;
osvi= (OSVERSIONINFO *)malloc(sizeof(OSVERSIONINFO));
if (osvi!=NULL){
memset(osvi0sizeof(OSVERSIONINFO));
osvi->dwOSVersionInfoSize=sizeof(OSVERSIONINFO);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 88816 2007-04-17 13:27 jxims\BCMenu.cpp
文件 16478 2007-04-17 13:27 jxims\BCMenu.h
文件 6296 2007-04-17 13:27 jxims\BookDlg.cpp
文件 1696 2007-04-17 13:27 jxims\BookDlg.h
文件 52061 2007-04-17 13:27 jxims\BtnST.cpp
文件 8392 2008-11-20 22:03 jxims\BtnST.h
文件 1008 2007-04-17 13:27 jxims\ChildDlg.cpp
文件 1244 2007-04-17 13:27 jxims\ChildDlg.h
文件 6108 2007-04-17 13:27 jxims\column.cpp
文件 2221 2007-04-17 13:27 jxims\column.h
文件 1337 2007-04-17 13:27 jxims\columns.cpp
文件 1293 2007-04-17 13:27 jxims\columns.h
文件 515 2007-04-17 13:27 jxims\dataformatdisp.cpp
文件 1158 2007-04-17 13:27 jxims\dataformatdisp.h
文件 18921 2007-04-17 13:27 jxims\datagrid.cpp
文件 5302 2007-04-17 13:27 jxims\datagrid.h
文件 2098 2007-04-17 13:27 jxims\font.cpp
文件 1461 2007-04-17 13:27 jxims\font.h
文件 2569048 2008-12-10 22:29 jxims\JXIMS.APS
文件 13850 2008-12-11 12:25 jxims\JXIMS.clw
文件 4048 2008-12-11 12:22 jxims\JXIMS.cpp
文件 10480 2007-04-17 13:27 jxims\JXIMS.dsp
文件 579 2007-04-17 13:27 jxims\JXIMS.dsw
文件 1406 2007-04-17 13:27 jxims\JXIMS.h
文件 270336 2008-12-11 12:25 jxims\JXIMS.mdb
文件 1737728 2008-12-11 12:25 jxims\JXIMS.ncb
文件 283136 2008-12-11 12:25 jxims\JXIMS.opt
文件 244 2008-12-11 12:25 jxims\JXIMS.plg
文件 34231 2007-04-17 13:27 jxims\JXIMS.rc
文件 10332 2007-04-17 13:27 jxims\JXIMSDlg.cpp
............此处省略70个文件信息
- 上一篇:maximo7.5用户手册
- 下一篇:编码隐匿在计算机软硬件背后的语言 PDF中文版
相关资源
- 编译FFmpeg3.2.2生成的库文件及头文件
- springmvcDemo
- 华为认证HCNA-WLAN无线H12-311题库.vce
- 新闻管理系统MVC的模式
- vc 操作word插入图片做签名
- 《网络监控系统原理与应用》源码
- 很不错的图像融合VC程序!
- 用vc实现资源管理器功能
- 基于web的仓库管理系统
- GB0 371 381 391 华三se认证考试题库加
- dlib 32位库 19.10.0_release_32bit_msvc1913.l
- sift算法VC实现需要OPENCV
- VCDS 5053 1.96固件可升级5053线支持最新
- VC使用vfw控制摄像头拍照的程序
- Spring+SpringMVC+Mybatis SSM三大框架的运行
- 电梯调度操作系统模拟线程管理
- 用VC和opengl开发的模仿cs的小游戏
- ISOdata算法 vc实现
- VC%2B%2B书店管理系统
- vc实现向指定ip端口发送数据或文件,
- 703N Openwrt固件 UVC免驱摄像头WIFI智能小
- 整车控制器VCU程序代码
- opengl实现的太阳系
- vcChinesecheckers.zip
- SpringMVC_Spring_mybatis.zip
- 运用定时器函数制作计时器
- 使用winring监控cpu温度
- UVCUSB Video Class规范
- libsndfile的vs2010工程
- VC编写的超级记事本程序
评论
共有 条评论