Click here to Skip to main content
15,914,209 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Unable to start program on VC++ Pin
Tuongnd17-Jun-07 19:17
Tuongnd17-Jun-07 19:17 
QuestionRe: Unable to start program on VC++ Pin
Hamid_RT17-Jun-07 20:44
Hamid_RT17-Jun-07 20:44 
AnswerRe: Unable to start program on VC++ Pin
Tuongnd17-Jun-07 21:06
Tuongnd17-Jun-07 21:06 
GeneralRe: Unable to start program on VC++ Pin
Tuongnd17-Jun-07 21:56
Tuongnd17-Jun-07 21:56 
GeneralRe: Unable to start program on VC++ Pin
Hamid_RT17-Jun-07 22:35
Hamid_RT17-Jun-07 22:35 
AnswerRe: Unable to start program on VC++ Pin
Paresh Chitte17-Jun-07 18:43
Paresh Chitte17-Jun-07 18:43 
QuestionCompiling Win32 detours library using VC++ 2005 Express Pin
tmp017-Jun-07 15:44
tmp017-Jun-07 15:44 
AnswerRe: Compiling Win32 detours library using VC++ 2005 Express Pin
Mark Salsbery17-Jun-07 17:03
Mark Salsbery17-Jun-07 17:03 
The warnings mention ways you can fix it...

You could go through and change all the source code to use the new, "safe" functions.

or

You can define _CRT_SECURE_NO_DEPRECATE to suppress the warnings:
If you're using a makefile, add
/D "_CRT_SECURE_NO_DEPRECATE"
to the compiler command line.

or

If there's a pre-compiled header file (or maybe at the top of every header file) you can add
#pragma warning(disable : 4996)
or
#define _CRT_SECURE_NO_DEPRECATE 1
to suppress the warnings.

Mark




"Posting a VB.NET question in the C++ forum will end in tears." Chris Maunder

GeneralRe: Compiling Win32 detours library using VC++ 2005 Express Pin
tmp018-Jun-07 0:45
tmp018-Jun-07 0:45 
GeneralRe: Compiling Win32 detours library using VC++ 2005 Express Pin
Mark Salsbery18-Jun-07 4:52
Mark Salsbery18-Jun-07 4:52 
QuestionISampleGrabber and ActiveMovie Window Problem Pin
Akin Ocal17-Jun-07 13:05
Akin Ocal17-Jun-07 13:05 
QuestionConnecting to FTP site Pin
frqftgbdafr17-Jun-07 8:59
frqftgbdafr17-Jun-07 8:59 
AnswerRe: Connecting to FTP site Pin
Mark Salsbery17-Jun-07 9:05
Mark Salsbery17-Jun-07 9:05 
QuestionHow to do transparent color in the CBitmapButton? [modified] Pin
Romiks17-Jun-07 7:21
Romiks17-Jun-07 7:21 
AnswerRe: How to do transparent color in the CBitmapButton? Pin
Mark Salsbery17-Jun-07 9:15
Mark Salsbery17-Jun-07 9:15 
QuestionSome video effects on directshow Pin
Akin Ocal17-Jun-07 3:08
Akin Ocal17-Jun-07 3:08 
QuestionEditing/Changing Default Command Handlers Pin
Abhijeet Pathak17-Jun-07 1:57
Abhijeet Pathak17-Jun-07 1:57 
Questiondouble buffering issue... Pin
eli1502197917-Jun-07 1:32
eli1502197917-Jun-07 1:32 
GeneralRe: double buffering issue... Pin
Matthew Faithfull17-Jun-07 2:38
Matthew Faithfull17-Jun-07 2:38 
AnswerRe: double buffering issue... [modified] Pin
Mark Salsbery17-Jun-07 15:43
Mark Salsbery17-Jun-07 15:43 
GeneralRe: double buffering issue... Pin
eli1502197917-Jun-07 23:11
eli1502197917-Jun-07 23:11 
GeneralRe: double buffering issue... Pin
eli1502197918-Jun-07 23:09
eli1502197918-Jun-07 23:09 
GeneralRe: double buffering issue... Pin
Mark Salsbery19-Jun-07 6:21
Mark Salsbery19-Jun-07 6:21 
GeneralRe: double buffering issue... Pin
eli1502197919-Jun-07 19:07
eli1502197919-Jun-07 19:07 
GeneralRe: double buffering issue... Pin
Mark Salsbery19-Jun-07 20:11
Mark Salsbery19-Jun-07 20:11 

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.