-
ListView报表打印模块
模块特点:1、可对页面、表格和字体进行设置,可设置标题和页眉、页脚;2、可在一个程序内为每个表设置独立的打印页面;3、支持页面预览及页面缩放;4、支持选页打印(暂时没有实现打印当前页)。view.cfg 为页面和打印机配置文件,由于打印机的不同,需要在运行时重新设置纸张和纸夹,以保证正确输出。
- 2023-07-07 17:10:03下载
- 积分:1
-
函数 long StrToData(CString strData,int jz) 功能:字符串转为正整数值 [字符串可为2...
函数 long StrToData(CString strData,int jz) 功能:字符串转为正整数值 [字符串可为2-16]任意进制数值字符串 返回:长整型数值 参数:strData 为将要转换的字符串 参数:jz 为字符串的进制 如: CString s s="FFA6" long data=StrToData(s,16) 则:data的值为:65446 用法:将StrToData.h和StrToData.cpp复制加入到您的工程里,在需要调用的函数中 加入#include "StrToData.h"即可调用-function of long StrToData(CString strData,int jz) :changed character string to positive integer,changed character may be any decimal system,return:long Integer value,parameter:strData is the character string to be changed,jz is type of decimal system.
- 2022-01-21 02:18:21下载
- 积分:1
-
用于关闭Windows信使服务弹出窗口的小程序,使用Delphi6编写,调用相关的API函数。最经典之处在于发现了WindowsNT5系列的OS(XP&2K)的...
用于关闭Windows信使服务弹出窗口的小程序,使用Delphi6编写,调用相关的API函数。最经典之处在于发现了WindowsNT5系列的OS(XP&2K)的信史服务弹出窗体中,信使服务四个字后面有一个空格。-closed for the Windows Messenger Service pop-up window to the small, the use of Delphi6 preparation, call the API function. The most classic is that WindowsNT5 found a series of OS (XP2K) messenger service pop-up window, the courier services are the words behind a box.
- 2022-01-28 03:19:37下载
- 积分:1
-
GSM基站的选择
用C++编写的GSM基站选择的规划方法.
GSM基站的选择
用C++编写的GSM基站选择的规划方法.-GSM base stations choose to C++ Prepared GSM base station planning method of choice.
- 2022-08-26 00:44:15下载
- 积分:1
-
孙鑫老师的VC++教程的光盘源代码,数写的很好,代码也很好,值得研究!第19章源程序!...
孙鑫老师的VC++教程的光盘源代码,数写的很好,代码也很好,值得研究!第19章源程序!-SUN Xin teachers VC++ Tutorial CD-ROM source code, written in a few very good, code is also good, worthy of study! Chapter 19 source code!
- 2022-03-06 13:43:14下载
- 积分:1
-
饼状图,可以制作超级专业的饼状图,超级漂亮,不下你一定后悔,下了你一定不后悔,真的,不信试试。...
饼状图,可以制作超级专业的饼状图,超级漂亮,不下你一定后悔,下了你一定不后悔,真的,不信试试。 -Pie charts can create super-professional pie chart, super beautiful, at least you will regret it, you must under no regrets, really, do not believe it try.
- 2022-01-31 09:05:17下载
- 积分:1
-
Insert,Delete and Query operations for queue in Data Structure. Good things.
实现数据结构中的队列的删除插入和查询!很好用的-Insert,Delete and Query operations for queue in Data Structure. Good things.
- 2022-03-02 06:49:06下载
- 积分:1
-
how Undo and Redo operations, which use category requiring operation of the data...
如何进行Undo和Redo的操作,里面用类把需要操作的数据保存起来,然后在恢复-how Undo and Redo operations, which use category requiring operation of the data saved, then resume
- 2022-07-11 13:41:31下载
- 积分:1
-
模拟汽车速度表
一个仪表盘的例子,超漂亮,可以看看,用vc开发的-Example of a dashboard, super beautiful, you can see, using vc development
- 2023-07-25 01:10:04下载
- 积分:1
-
kakabossskdr
/*
base64.cpp 和 base64.h
版权所有 (C) 2004年-2008 René Nyffenegger
提供此源代码 " 作为-是 ",没有任何明示或暗示
保修。在没有事件将作者举行任何损害承担责任
因使用本软件。
授予任何人出于任何目的,使用此软件的权限
包括商业应用程序进行修改和重新发布它
自由,受到以下限制:
1.此源代码的起源必须不得歪曲 ;你必须不
声称是你写的原始源代码。如果您使用此源代码
在一种产品,确认产品文档中将
表示赞赏,但不是必需的。
2.改变源版本为此,必须有明确标记和一定不能
谎称为原始的源代码。
3.本公告不可能会被删除,或从任何源分布改动。
勒内 · Nyffenegger rene.nyffenegger@adp-gmbh.ch
*/
#include"stdafx.h"
//#include"base64.h"
#include"msvc_common.h"
#include < iostream >
静态 const std::string base64_chars =
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
""abcdefghijklmnopqrstuvwxyz
"0123456789 +";
静态内联 bool is_base64 (无符号的 char c) {
返回 (isalnum(c) | |(c == "+") ||(c == "/"));
}
std::string base64_encode (无符号的 char const * bytes_to_encode、 无符号的 in
- 2022-12-20 14:15:03下载
- 积分:1