Click here to Skip to main content
15,891,431 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: I need to access the features of tortoise SVN from my VC++ project Pin
prathibap30-Sep-08 20:42
prathibap30-Sep-08 20:42 
GeneralRe: I need to access the features of tortoise SVN from my VC++ project Pin
Mark Salsbery1-Oct-08 4:59
Mark Salsbery1-Oct-08 4:59 
QuestionHow to return a stringstream from a method. Pin
CodingLover29-Sep-08 0:12
CodingLover29-Sep-08 0:12 
AnswerRe: How to return a stringstream from a method. Pin
CPallini29-Sep-08 0:18
mveCPallini29-Sep-08 0:18 
AnswerRe: How to return a stringstream from a method. Pin
toxcct29-Sep-08 0:22
toxcct29-Sep-08 0:22 
QuestionHow to get rid of deprecated functions ? Pin
kapardhi28-Sep-08 23:55
kapardhi28-Sep-08 23:55 
AnswerRe: How to get rid of deprecated functions ? Pin
Cedric Moonen29-Sep-08 0:05
Cedric Moonen29-Sep-08 0:05 
GeneralRe: How to get rid of deprecated functions ? Pin
kapardhi29-Sep-08 0:23
kapardhi29-Sep-08 0:23 
i use the following code

int a = 10;
char ch [2];
CString str;
itoa (a, ch, 10);
str += ch;

i get the warning of deprecated, hence i use

int a = 10;
char ch [2];
CString str;
_itoa(a, ch, 10);
str += ch;

i again get deprecated warning, now i use

int a = 10;
char ch [2];
CString str;
_itoa_s (a, ch, 2, 10);
str += ch;


this time when the above line, i.e _itoa_s (a, ch, 10); is executed i get Assertion error !!
GeneralRe: How to get rid of deprecated functions ? Pin
Cedric Moonen29-Sep-08 1:01
Cedric Moonen29-Sep-08 1:01 
QuestionRe: How to get rid of deprecated functions ? Pin
David Crow29-Sep-08 15:12
David Crow29-Sep-08 15:12 
QuestionCFile assertion failure Pin
bhanu_850928-Sep-08 23:42
bhanu_850928-Sep-08 23:42 
AnswerRe: CFile assertion failure Pin
Cedric Moonen28-Sep-08 23:46
Cedric Moonen28-Sep-08 23:46 
AnswerRe: CFile assertion failure Pin
KarstenK29-Sep-08 0:10
mveKarstenK29-Sep-08 0:10 
AnswerRe: CFile assertion failure Pin
Hamid_RT29-Sep-08 7:40
Hamid_RT29-Sep-08 7:40 
QuestionHow to find a key which is present in one of the subkeys of a registry? [modified] Pin
kapardhi28-Sep-08 23:38
kapardhi28-Sep-08 23:38 
AnswerRe: How to find a key which is present in one of the subkeys of a registry? Pin
sashoalm29-Sep-08 0:07
sashoalm29-Sep-08 0:07 
QuestionHelp Needed Pin
an8928-Sep-08 23:04
an8928-Sep-08 23:04 
AnswerRe: Help Needed Pin
KarstenK29-Sep-08 0:12
mveKarstenK29-Sep-08 0:12 
AnswerRe: Help Needed Pin
an891-Oct-08 0:33
an891-Oct-08 0:33 
QuestionProblem with /clr and static lib Pin
n1pabs28-Sep-08 22:42
n1pabs28-Sep-08 22:42 
AnswerRe: Problem with /clr and static lib Pin
Saurabh.Garg28-Sep-08 23:18
Saurabh.Garg28-Sep-08 23:18 
GeneralRe: Problem with /clr and static lib Pin
n1pabs28-Sep-08 23:30
n1pabs28-Sep-08 23:30 
GeneralRe: Problem with /clr and static lib Pin
n1pabs28-Sep-08 23:56
n1pabs28-Sep-08 23:56 
AnswerRe: Problem with /clr and static lib Pin
_AnsHUMAN_ 28-Sep-08 23:18
_AnsHUMAN_ 28-Sep-08 23:18 
Questionmemory leak Pin
SRKSHOME28-Sep-08 20:42
SRKSHOME28-Sep-08 20:42 

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.