Click here to Skip to main content
15,895,256 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Button problem Pin
Hamid_RT5-Jul-06 0:00
Hamid_RT5-Jul-06 0:00 
GeneralRe: Button problem [modified] Pin
ashish dogra5-Jul-06 0:38
ashish dogra5-Jul-06 0:38 
GeneralRe: Button problem Pin
Hamid_RT5-Jul-06 1:55
Hamid_RT5-Jul-06 1:55 
GeneralRe: Button problem Pin
ashish dogra5-Jul-06 2:17
ashish dogra5-Jul-06 2:17 
GeneralRe: Button problem Pin
Hamid_RT5-Jul-06 2:59
Hamid_RT5-Jul-06 2:59 
AnswerRe: Button problem Pin
_AnsHUMAN_ 4-Jul-06 23:06
_AnsHUMAN_ 4-Jul-06 23:06 
Questionwhat it mean in C++-> TCHAR Pin
Nirmal Khatri4-Jul-06 22:39
Nirmal Khatri4-Jul-06 22:39 
AnswerRe: what it mean in C++-> TCHAR Pin
Sarath C4-Jul-06 22:48
Sarath C4-Jul-06 22:48 
See TCHAR is defined as follows

#ifdef UNICODE
typedef WCHAR TCHAR;
#else
typedef char TCHAR;


max path is the sum of
_MAX_DIR + _MAX_DRIVE + _MAX_EXT + _MAX_FNAME + _MAX_PATH 


it means that there's is char(if ASCII) or wchar_t (if Unicode) array of size MAX_PATH

you can see these definitions, if you press F12 after selecting the requried definition (e.g TCHAR)

SaRath.

"It is your attitude, not your aptitude, that determines your altitude - Zig Ziglar."

My Blog | Understanding State Pattern in C++

AnswerRe: what it mean in C++-> TCHAR Pin
Hamid_RT4-Jul-06 22:51
Hamid_RT4-Jul-06 22:51 
AnswerRe: what it mean in C++-> TCHAR Pin
RChin4-Jul-06 22:54
RChin4-Jul-06 22:54 
Question.lib file is a static library file or DLL implicit linking file? Pin
George_George4-Jul-06 22:35
George_George4-Jul-06 22:35 
QuestionC++ [modified] Pin
Nirmal Khatri4-Jul-06 22:28
Nirmal Khatri4-Jul-06 22:28 
QuestionHow we can add keep colors to dialog and static control Pin
happy_ram4-Jul-06 21:33
happy_ram4-Jul-06 21:33 
AnswerRe: How we can add keep colors to dialog and static control Pin
NiceNaidu4-Jul-06 21:40
NiceNaidu4-Jul-06 21:40 
AnswerRe: How we can add keep colors to dialog and static control Pin
_AnsHUMAN_ 4-Jul-06 22:07
_AnsHUMAN_ 4-Jul-06 22:07 
GeneralRe: How we can add keep colors to dialog and static control Pin
happy_ram4-Jul-06 22:16
happy_ram4-Jul-06 22:16 
GeneralRe: How we can add keep colors to dialog and static control Pin
_AnsHUMAN_ 4-Jul-06 22:21
_AnsHUMAN_ 4-Jul-06 22:21 
GeneralRe: How we can add keep colors to dialog and static control [modified] Pin
happy_ram4-Jul-06 22:23
happy_ram4-Jul-06 22:23 
GeneralRe: How we can add keep colors to dialog and static control Pin
Hamid_RT4-Jul-06 22:29
Hamid_RT4-Jul-06 22:29 
GeneralRe: How we can add keep colors to dialog and static control Pin
happy_ram4-Jul-06 22:44
happy_ram4-Jul-06 22:44 
GeneralRe: How we can add keep colors to dialog and static control Pin
Hamid_RT4-Jul-06 22:57
Hamid_RT4-Jul-06 22:57 
GeneralRe: How we can add keep colors to dialog and static control Pin
happy_ram4-Jul-06 23:00
happy_ram4-Jul-06 23:00 
GeneralRe: How we can add keep colors to dialog and static control Pin
Hamid_RT4-Jul-06 23:14
Hamid_RT4-Jul-06 23:14 
GeneralRe: How we can add keep colors to dialog and static control Pin
happy_ram4-Jul-06 23:18
happy_ram4-Jul-06 23:18 
GeneralRe: How we can add keep colors to dialog and static control Pin
Hamid_RT4-Jul-06 23:36
Hamid_RT4-Jul-06 23:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.