E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
TCHAR
WIN32错误处理
CreateDirectory(_T("c:\\"),0)) 5 { 6
TCHAR
szBuf[128];
·
2015-11-11 07:44
Win32
c++执行外部程序
gt; #include <shellapi.h>//ShellExecute 要引用的库 int main(int argc, _
TCHAR
·
2015-11-11 06:11
C++
控制其他应用软件
#include <Windows.h> int _tmain(int argc, _
TCHAR
* argv[]) { char haha[200]; HWND hwnd
·
2015-11-11 06:53
软件
写windows事件的C++类
---------------------------------------------------------------- #pragma hdrstop #include <
tchar
.h
·
2015-11-11 06:56
windows
C++ MD5类的调用方法
发表时间:2007-8-7 13:23:00 extern "C" __declspec(dllexport) const char* Encrypt(
TCHAR
* paras
·
2015-11-11 06:33
C++
c++ 向main传递参赛
TCHAR
:为了满足Unicode编码,对char的扩展,即_T(“str”)表示T
·
2015-11-11 06:42
main
MFC下的各种字符串类型和相互转换
; MFC下的常用字符串数据类型表示的含义: L:Long 长 P:Point 指针 C:Const 常量 W:Wchar_t 宽字符 T:
TCHAR
·
2015-11-11 05:31
mfc
Bubble_Sort
lt;iostream> 2 #include <vector> 3 using namespace std; 4 5 int _tmain(int argc, _
TCHAR
·
2015-11-11 05:47
Bubble
light on and off
lt;iostream> 3 #include <vector> 4 using namespace std; 5 6 int _tmain(int argc, _
TCHAR
·
2015-11-11 05:46
on
Insertion_Sort(插入排序)
include "stdafx.h" #include <iostream> using namespace std; void _tmain(int argc, _
TCHAR
·
2015-11-11 05:45
insert
控制台程序如何使用_tprintf打印中文
Code: Select all #include <locale.h >int _tmain(int argc, _
TCHAR
* argv[]){ 
·
2015-11-11 05:29
printf
strsafe.h的include次序问题
strsafe.h不能在windows.h,
tchar
.h, 包括很多C++的头文件,比如<map>,之前被include。
·
2015-11-11 05:27
include
有关STL中map的key是指针的情况分析和其他map使用注意点
比如有这么一个map: map<
TCHAR
*,
TCHAR
*> map1; 这样当往map1中插入数据的时候,key是一个指针。
·
2015-11-11 05:26
map
winmain和main入口函数比较
经常带有参数argc, argv, 如下: int main(int argc, char** argv) int main(int argc, char* argv[]) //也可以是wchar_t 或
tchar
·
2015-11-11 04:34
main
链表list容器中通过splice合并链表与merge的不同,及需要注意的问题
gt; #include <list> #include <algorithm> using namespace std; int_tmain(int argc, _
TCHAR
·
2015-11-11 04:11
splice
DLL远程注入与卸载
#include <windows.h>#include <
tchar
.h>#include <tlhelp32.h> /*******
·
2015-11-11 04:47
dll
左值的理解(给渴望学习的新手)
今天运行了一段程序: 1 #include "stdafx.h" 2 3 4 int _tmain(int argc, _
TCHAR
* argv[]) 5 6
·
2015-11-11 03:06
学习
一件被误导很久的事:关于new和delete
foo(); } int foo() { return 0; } ~a() { bar(); } int bar() { return 1; }};int _tmain(int argc, _
TCHAR
·
2015-11-11 02:57
delete
直接选择排序
include "stdafx.h" #include<iostream> using namespace std; int _tmain(int argc, _
TCHAR
·
2015-11-11 02:56
选择排序
拆分字符串
////////////////////////////////////////////////////////////////////////// typedef basic_string<
TCHAR
·
2015-11-11 02:32
字符串
判断程序是否运行在管理员权限下
另一个是当前运行环境是管理员环境 2.判断程序是否运行在管理员权限,直接使用函数IsUserAnAdmin就可以判断 #include <ShlObj.h> #include <
tchar
.h
·
2015-11-11 02:38
管理
identifier not found error on function call
include <stdio.h> #include <stdlib.h> #include <string.h> int _tmain(int argc, _
TCHAR
·
2015-11-11 02:09
function
文本分割工具(c\c++)
gt; #include <fstream> #include <string> using namespace std; int _tmain(int argc, _
TCHAR
·
2015-11-11 01:24
C++
VC++, 重启程序
TCHAR
pBuf[MAX_PATH]; GetModuleFileName(NULL,pBuf,MAX_PATH); STARTUPINFO startupinfo; PROCESS_INFORMATION
·
2015-11-11 00:24
vc++
重启程序
TCHAR
pBuf[MAX_PATH]; GetModuleFileName(NULL,pBuf,MAX_PATH); STARTUPINFO startupinfo
·
2015-11-11 00:08
程序
多线程中CString内存泄漏的解决方法。
WINAPI ConnectionWorkerProc(LPVOID pObject){CString strPath;CString strFileName;CString currentStr;
TCHAR
·
2015-11-11 00:54
String
MFC中,Unicode和多字节字符集下 CString和char的转化
Unicode下 CString转
TCHAR
TCHAR
* szMsg = new
TCHAR
[wcslen
·
2015-11-11 00:38
unicode
获取输入法输入内容及后选项的钩子
#include "windows.h" #include "imm.h" #include "stdio.h" #include <
tchar
.h
·
2015-11-11 00:16
输入法
C++ 引用(&)
} if (a<b) { int temp = a; a = b; b = temp; }} int main(int argc, _
TCHAR
·
2015-11-10 23:45
C++
获取句柄和文件操作
GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,(PCTSTR)GetModule,&hmodule); TRACE("%8x",hmodule); }
TCHAR
·
2015-11-10 23:02
文件操作
boost::xml——基本操作以及中文乱码解决方案
1.实现boost库xml基本操作2.解决boost对xml中中文乱码问题3.实现普通字符串和宽字符串的傻瓜切换(模仿
tchar
.h)4.代码运行环境为VS2010,需要导入boost库才能正常运行5.
·
2015-11-10 23:14
boost
【笨嘴拙舌WINDOWS】字符类型与字符串
WINDOWS的字符类型在WINNT.H和CTYPE.H中有定义: 变量类型\位宽 8位(ASCII) 16位(UNICODE) 模板 变量 char,CHAR wchar_t,WCHAR
TCHAR
·
2015-11-10 22:44
windows
MFC 各类型相互转换
MFC下的常用字符串数据类型表示的含义: L:Long 长 P:Point 指针 C:Const 常量 W:Wchar_t 宽字符 T:
TCHAR
·
2015-11-10 22:43
mfc
boost 循环缓冲区
<boost/circular_buffer.hpp> int _tmain(int argc, _
TCHAR
·
2015-11-10 21:15
boost
STL的string和wstring
STL有字符串处理类——stirng和wstring,但是用的时候会觉得不是很方便,因为它不能像
TCHAR
一样根据定义的宏在char类型字符串和wchar_t进行转换,总不能因为程序要Unicode就把所有类型转换一遍吧
·
2015-11-10 21:29
String
获得汉字首字母(unicode编码)
1 CString GetFirstLetter(LPCTSTR strName) 2 { 3 static
TCHAR
* wcsFiestLetterTable =
·
2015-11-09 13:26
unicode
windows开发杂记
PathFileExists(csFilePath)){::CreateDirectory(csFilePath, NULL);} 二、打开windows类型对话框 static
TCHAR
·
2015-11-09 13:57
windows
C++字符串完全指引之一 —— Win32 字符编码
Michael Dunn翻译:Chengjie Sun 原文出处:CodeProject:The Complete Guide to C++ Strings, Part I 引言 毫无疑问,我们都看到过像
TCHAR
·
2015-11-09 12:13
Win32
CString、
TCHAR
*、char*转换
CString转化为char*viewplaincopytoclipboardprint?CString strData = _T("ni hao"); int len = WideCharToMultiByte(CP_ACP, 0, strData, -1, NULL, 0, NULL, NULL); char* szTarget = new char[len + 1]; memset(s
xdx2ct1314
·
2015-11-09 12:00
cannot convert from '_
TCHAR
*' to 'char *'
Reference: Why can't convert
TCHAR
* to char* Need to Use Multi-Byte Character Set
·
2015-11-09 12:45
convert
Convert CString to
TCHAR
Quote from: http://vctipsplusplus.wordpress.com/2008/05/21/cstring-to-
tchar
/ CString
·
2015-11-09 12:59
convert
c++指针相等的问题
include <iostream> #include <string> using namespace std; int _tmain(int argc, _
TCHAR
·
2015-11-09 12:52
C++
函数指针
a:b; } int (*pFun)(int a,int b); int _tmain(int argc, _
TCHAR
* argv[]){ &nbs
·
2015-11-09 11:14
函数指针
指针与数组
先来体会下数组与指针的区别,看如下代码: int GetSize(int data[]){ return sizeof(data);} int _tmain(int argc, _
TCHAR
* argv
·
2015-11-09 11:05
数组
《windows程序设计》学习_4:文本输出,加滚动条
define NUMLINES ((int) (sizeof sysmetrics / sizeof sysmetrics [0])) struct { int Index ;
TCHAR
·
2015-11-08 17:14
windows
使用wininet向FTP服务器发送文件
.h #pragma once #include <windows.h> #include <
tchar
.h> #include <string> #include
·
2015-11-08 16:23
ftp
获取文件详细信息的方法
#include <windows.h> #import <Shell32.dll> using namespace std; int _tmain(int argc, _
TCHAR
·
2015-11-08 14:18
文件
zlib 用法
#include "zlib.h" int _tmain(int argc, _
TCHAR
* argv[]) { //原始数据 const unsigned
·
2015-11-08 13:42
lib
顺序表查找
1、当我们新建一个C++控制台应用程序之后,默认的给出的初始代码如下: 1 #include "stdafx.h" 2 3 int _tmain(int argc, _
TCHAR
·
2015-11-08 11:05
顺序
HLOCAL 初探
#include "stdafx.h" #include <windows.h> int _tmain(int argc, _
TCHAR
* argv[]) {
·
2015-11-08 11:21
local
上一页
16
17
18
19
20
21
22
23
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他