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
LPCTSTR
VC++6.0 通过HTTP方式获取网页 OpenURL
方式获取网页OpenURL 1 //头部包含afxinet.h 2 #include 3 CInternetSession::OpenURL函数原型为: 4 CStdioFile* OpenURL(
LPCTSTR
Dark Angle
·
2013-04-05 17:00
CreateProcess函数
函数原型BOOLCreateProcess(
LPCTSTR
lpApplicationName,LPTSTR lpCommandLine,LPSECURITY_ATTRIBUTES lpProcessAttributes
xkjcf
·
2013-04-03 10:00
TCHAR,WCHAR,LPSTR,LPWSTR,LPCSTR的区别
在C++的窗口应用程序开发过程中,我们经常对TCHAR,
LPCTSTR
这样的关键字迷惑。接下来将详细解释他们之间的区别。
xiaoding133
·
2013-03-30 13:00
CString、
LPCTSTR
、LPTSTR、TCHAR、WCHAR、string、wchar_t、char解析
2.
LPCTSTR
:常量的TCHAR指针,其定义为?
guoduhua
·
2013-03-27 16:00
C++
c
数据类型
VC++中几种数据类型(CString, char*, char, ******等)之间的相互转换
{ CString strCString="ABC"; char strchar[256],*pstr; pstr=(LPSTR)(
LPCTSTR
guoduhua
·
2013-03-27 14:00
C++
c
类型转换
unsigned char*转换成const char*
unsignedchar*Writebuf;对Writebuf进行操作之后;CStringstr1;str1.Format("%s",Writebuf);constchar*str2=(
LPCTSTR
)
haizimin
·
2013-03-19 11:00
引用 LPSTR、LPCSTR、LPTSTR、
LPCTSTR
、LPWSTR及LPCWSTR的意义及区别
1、ANSI(即MBCS):为多字节字符集,它是不定长表示世界文字的编码方式。ANSI表示英文字母时就和ASCII一样,但表示其他文字时就需要用多字节。2、Unicode:用两个字节表示一个字符的编码方式。比如字符'A'在ASCII下面用一个字节表示,而在Unicode下面用两个字节表示,其中高字节用“0”填充;函数'程'在ASCII下面用两个字节表示,而在Unicode下面也是用两个字节表示。U
dxy408460910
·
2013-03-19 10:00
const char to
LPCTSTR
不能转化问题
constchartoLPCTSTR不能转化问题 VisualC++2008里cannotconvertparameter1from'constchar[13]'to'
LPCTSTR
'造成不能运行的原因主要是
nocodelife
·
2013-03-19 10:00
windows下32位汇编语言学习笔记 第四章 第一个窗口程序 1 (消息的使用和入口代码)
开始练习按键消息前,必须要先了解2个函数:HWND FindWindow(
LPCTSTR
lpClassName,
LPCTSTR
lpWindowName);通过lpClassName窗口注册类名(就是
mysouling
·
2013-03-15 10:00
windows下32位汇编语言学习笔记 第二章 准备编程环境
开始练习按键消息前,必须要先了解2个函数:HWND FindWindow(
LPCTSTR
lpClassName,
LPCTSTR
lpWindowName);通过lpClassName窗口注册类名(就是
mysouling
·
2013-03-15 09:00
CString到const char *的转换
IplImage指针//载入图像if(pImg=cvLoadImage(CT2CA(pathname),1))起因是因为要实现一个UdpAddress实例,照示例程序的写法:UdpAddressaddress((
LPCTSTR
末叶
·
2013-03-14 14:39
C++
CString到const char *的转换
指针 //载入图像 if(pImg=cvLoadImage(CT2CA(pathname),1))起因是因为要实现一个UdpAddress实例,照示例程序的写法:UdpAddressaddress((
LPCTSTR
cc7829290
·
2013-03-14 14:00
C++
类型转换
MFC中Cstring与char *的转换
1.传给未分配内存的constchar*(
LPCTSTR
)指针. CStringcstr(asdd); constchar*ch=(
LPCTSTR
)cstr; ch指向的地址和cstr相同。
sszgg2006
·
2013-03-13 13:00
MFC获得文件大小
方法三ULONGLONG GetFileSize(
LPCTSTR
szFileName) { CFileFind finder; //文件查找类 if(!
danelumax2
·
2013-03-08 08:00
GetPrivateProfileInt
/////////////////////////////////////////////////////////////////////////UINT GetPrivateProfileInt(
LPCTSTR
gaofeidongdong
·
2013-03-07 13:00
获取磁盘空间大小
ULARGE_INTEGERpDiskTotalSpace; ULARGE_INTEGERpDiskRemainSpace; CStringcsErrorOfDiskSpace=csDisk; GetDiskFreeSpaceEx((
LPCTSTR
dengziliang001
·
2013-02-26 19:00
不能将参数 2 从“const char [11]”转换为“
LPCTSTR
m_flash.LoadMovie(0,"d://mx.swf"); 不能将参数2从“constchar[11]”转换为“
LPCTSTR
m_flash.LoadMovie(0,_T("d://mx.swf
s3c44b0x
·
2013-02-24 10:00
LPCTSTR
LPCWSTR LPCSTR含义
LPCTSTRLPCWSTRLPCSTR含义 2010-06-2913:48:08| 分类: C++|字号 订阅#ifdefUNICODE #defineLPCTSTRLPCWSTR #else #defineLPCTSTRLPCSTR #endif LPCTSTRA32-bitpointertoaconstantcharacterstringthatisportableforUni
laogaoAV
·
2013-02-12 16:00
VS2005中MessageBox小结
弹出一个对话筐,但有错:“CWnd::MessageBoxW”: 不能将参数 1 从“const char [14]”转换为“
LPCTSTR
”这是为什么呢!在6.0里没有错,我试了的!
liulina603
·
2013-02-04 13:00
OpenEvent
函数功能打开一个已经存在的命名事件对象函数原型HANDLE OpenEvent(DWORD dwDesiredAccess,BOOL bInheritHandle,
LPCTSTR
lpName);参数说明
danelumax2
·
2013-01-30 18:00
vc下cstring转换为float
,但是出现这样的错误errorC2664:'atof':cannotconvertparameter1from'CString'to'constchar*'原因:工程是UNICODE,unicode下
LPCTSTR
CodingSir
·
2013-01-21 10:09
CString 转化成 char*的路程
1、CStrings;char*p=(LPSTR)(
LPCTSTR
)s;这种转化没有问题。我在调试的时候却发现s不对。原来这样只是得到了s的第一个字符。
cogbee
·
2013-01-19 22:00
char
CString
常见数据库操作问题
一、access数据库1、类型不匹配错误解决办法:如果数据库中是数据格式,则应把字符变成数字,如m_pRecordset->PutCollect("UnitState",atol((LPSTR)(
LPCTSTR
lebao82
·
2013-01-15 14:00
CString转char * ,string
CT2Axx(str); stringss=xxCString头文件#includestring头文件#includeCString转char*CStringcstr;char*p=(LPSTR)(
LPCTSTR
xiaojiegege123456
·
2013-01-14 15:00
LPCTSTR
类型
LPCTSTR
类型 L表示long指针 这是为了兼容Windows 3.1等16位操作系统遗留下来的,在win32中以及其他的32为操作系统中, long指针和near指针及far修饰符都是为了兼容的作用
恶灵挽歌
·
2013-01-09 09:00
类型
error:cannot convert parameter 1 from 'const char[12]' to '
LPCTSTR
'
Question I'mtryingtocompileapieceofcodesuchas:MessageBox("Helloworld!");...whenIcompiletheproject,thecompileryields:errorC2664:'CWnd::MessageBoxW':cannotconvertparameter1from'constchar[12]'to'LP
junnes
·
2013-01-07 13:00
VC常用数据类型使用转换详解
VC常用数据类型使用转换详解 std::stringstr;LPCTSTRlpstr=(
LPCTSTR
)str.c_str();//c_str函数的返回值是constchar*的,不能直接赋值给char
L_Andy
·
2013-01-07 10:00
遍历文件夹windows
目录下的所有文件3、C:\bbb\不正确搜索格式遍历方式:_finddata_tfileInfo; longhandle; CStringlocalDir=""; handle=_findfirst((
LPCTSTR
liu563582815
·
2013-01-05 14:00
DX11渲染管道 :着色器的编译和创建
D3DX11CompileFromFile : HRESULT D3DX11CompileFromFile( _In_
LPCTSTR
pSr
lengbingteng
·
2012-12-30 22:00
创建
C++ 程序编码方式 Unicode Ansi
今天写程序的时候碰到
LPCTSTR
,其实就是constchar*,不详细说这个,反正就是遇到一个函数,其中一个参数是
LPCTSTR
,比如voidFoo(
LPCTSTR
)我第一次调用它,用Foo("AA"
hngchiming
·
2012-12-07 21:00
C++
C++
WritePrivateProfileString等读写.ini配置文件
BOOL WritePrivateProfileString(
LPCTSTR
lpAppName, // INI文件中的一个字段名[节名]可以有很多个节名
LPCTSTR
lpKeyName
debugconsole
·
2012-11-30 14:00
常用的宽字符函数
所以在MFC编程中,一般需要使用双字节的字符类型wchar_t和对应的字符串及其指针类型LPCWSTR和
LPCTSTR
,并在常数字符串前添加了L转换符,串长计算函数不能用strlen而改用wcslen,
xlf13872135090
·
2012-11-29 10:00
VC操作注册表函数(一)
打开注册表键 LONG RegOpenKeyEx( HKEY hKey, // handle to open key主键
LPCTSTR
lpSubKey
L_Andy
·
2012-11-28 16:00
Unicode模式下char*与
LPCTSTR
类型的转化
使用MultiByteToWideChar转换:步骤:1.DWORDdwNum=MultiByteToWideChar(CP_ACP,0,sText,-1,NULL,0);2.wchar_t*pwText=newwchar_t[dwNum];if(!pwText){delete[]pwText;}3.成ASCII码MultiByteToWideChar(CP_ACP,0,psText,-1,sTe
菜小鸟
·
2012-11-22 20:08
MFC
字符转换
Unicode模式下char*与
LPCTSTR
类型的转化
使用MultiByteToWideChar转换:步骤:1.DWORD dwNum = MultiByteToWideChar (CP_ACP, 0, sText, -1, NULL, 0); 2. wchar_t*pwText =newwchar_t[dwNum]; if(!pwText) { delete[]pwText; } 3.成ASCII码 MultiByteToWideChar(CP
菜小鸟
·
2012-11-22 20:08
mfc
字符转换
CString and wxString
CStringtowxStringCStringcstr="Helloworld";wxStringmystring((
LPCTSTR
)cstr,,wxConvUTF8 );wxStringtoCStringwxStringwxstr
多一分钟学习,早一秒钟提高
·
2012-11-22 10:00
VC++6.0&&VS2008&MFC&API学习问题总结(三)(多线程更新控件)
它和被重载的操作符
LPCTSTR
还是有点本质区别的,
LPCTSTR
是直接返回一个只读内存的指针,而GetBuffer则是返回一个可以供调用者写入的内存,并且,你可以给定大小。
xuyuefei1988
·
2012-11-20 19:00
2012-04-22 16:48 VS2005 中error C2440: 如无法从“const char [N]”转换为“LPCWSTR” 的一点总结
LPCTSTR
在Multi-byte Character方式下与const char*等价,在Unicode方式下与const tchar*等价。
漫步邃思
·
2012-11-13 23:00
C2440
LPCTSTR
error c3861._T
2012-04-22 16:48 VS2005 中error C2440: 如无法从“const char [N]”转换为“LPCWSTR” 的一点总结
LPCTSTR
在Multi-byteCharacter方式下与constchar*等价,在Unicode方式下与consttchar*等价。
漫步邃思
·
2012-11-13 23:00
C2440
LPCTSTR
error
c3861._T
C++ 字符串UTF8与GBK转化
6447874//UTF8转化为GBK格式voidConvertUtf8ToGBK(CString&strUtf8){ intlen=MultiByteToWideChar(CP_UTF8,0,(
LPCTSTR
happyrabbit456
·
2012-11-13 17:00
Cstring转char、string、int等数据类型的方法
CString转char*CStringcstr;char*p=(LPSTR)(
LPCTSTR
)cstr;string转CStringCString.format(”%s”,string.c_str()
woshinia
·
2012-11-13 15:00
CreateProcess函数 详细使用说明
函数原型 BOOL CreateProcess (
LPCTSTR
lpApplicationName, LPTSTR lpCommandLine, LPSECURITY_ATTRIBUTES
M_ittrue
·
2012-11-12 19:00
process
CString 进行Format 转换结尾乱码问题
char*ch="hello"; CStringmsg; msg.format(_T("%s"),
LPCTSTR
(ch)); AfxMessageBox(msg);通常我们这样,使用在vs2010这里会出现
open520yin
·
2012-11-10 23:00
乱码
【整理】Dword、LPSTR、LPWSTR、LPCSTR、LPCWSTR、LPTSTR、
LPCTSTR
L表示long指针,这是为了兼容Windows3.1等16位操作系统遗留下来的,在win32中以及其他的32为操作系统中,long指针和near指针及far修饰符都是为了兼容的作用,没有实际意义。即win32中,long,near,far指针与普通指针没有区别,LP与P是等效的。P表示这是一个指针。T表示_T宏,这个宏用来表示你的字符是否使用UNICODE,如果你的程序定义了UNICODE或者其他
tjunxin
·
2012-11-08 15:00
String
String
CString
LPCSTR
LPSTR
LPWSTR
【整理】Dword、LPSTR、LPWSTR、LPCSTR、LPCWSTR、LPTSTR、
LPCTSTR
L表示long指针,这是为了兼容Windows 3.1等16位操作系统遗留下来的,在win32中以及其他的32为操作系统中, long指针和near指针及far修饰符都是为了兼容的作用,没有实际意义。即win32中,long,near,far指针与普通指针没有区别,LP 与P是等效的。 P表示这是一个指针。 T表示_T宏,这个宏用来表示你的字符是否使用UNICODE, 如果你的程序定义了UNI
v5browser
·
2012-11-08 15:00
word
CString转换成int
原文地址:http://blog.csdn.net/dotnet90/article/details/2843946初次结识C++使用的最多的就是数据类型转换的问题:inti=atoi((
LPCTSTR
WUYUAN2011WOAINI
·
2012-10-30 15:00
怎样把 _variant_t 类型转换成CString类型
1、_variant_tlimiturl; limiturl=m_pURLRecordset->GetCollect("limurl"); CStringurl=(
LPCTSTR
)(_bstr
WUYUAN2011WOAINI
·
2012-10-30 15:00
关于字符串的相互转化问题(全)
《第一部分》CString,BSTR,
LPCTSTR
之间关系和区别CString是一个动态TCHAR数组,BSTR是一种专有格式的字符串(需要用系统提供的函数来操纵,
LPCTSTR
只是一个常量的TCHAR
ghevinn
·
2012-10-26 15:00
C++,CString,string,char*,int等转换
);int转CStringinti=15;CStringstr;str.Format(_T("%d"),i);其他环境:CString转char*CStringcstr;char*p=(LPSTR)(
LPCTSTR
lyq19870515
·
2012-10-24 14:00
CString常用函数
CString::Empty Void Empty( ); 没有返回值 清空操作; CString::Format void Format(
LPCTSTR
lpszFormat, ..
lewutian
·
2012-10-23 14:00
String
上一页
9
10
11
12
13
14
15
16
下一页
按字母分类:
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
其他