Click here to Skip to main content
15,908,175 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Problem with the pow( ) function Pin
toxcct19-Jul-06 7:35
toxcct19-Jul-06 7:35 
QuestionRe: Problem with the pow( ) function Pin
pgav19-Jul-06 7:37
pgav19-Jul-06 7:37 
AnswerRe: Problem with the pow( ) function Pin
cppcook19-Jul-06 7:42
cppcook19-Jul-06 7:42 
GeneralRe: Problem with the pow( ) function Pin
Zac Howland19-Jul-06 8:41
Zac Howland19-Jul-06 8:41 
AnswerAmbiguous call Pin
Ennis Ray Lynch, Jr.19-Jul-06 8:47
Ennis Ray Lynch, Jr.19-Jul-06 8:47 
AnswerRe: Problem with the pow( ) function Pin
NrmMyth19-Jul-06 12:20
NrmMyth19-Jul-06 12:20 
GeneralRe: Problem with the pow( ) function Pin
KaKa'26-Jul-06 22:21
KaKa'26-Jul-06 22:21 
QuestionEdit Box alignment problem Pin
cppcook19-Jul-06 7:24
cppcook19-Jul-06 7:24 
QuestionRe: Edit Box alignment problem Pin
David Crow19-Jul-06 7:32
David Crow19-Jul-06 7:32 
AnswerRe: Edit Box alignment problem Pin
cppcook19-Jul-06 7:36
cppcook19-Jul-06 7:36 
QuestionRe: Edit Box alignment problem Pin
David Crow19-Jul-06 7:49
David Crow19-Jul-06 7:49 
AnswerRe: Edit Box alignment problem Pin
cppcook19-Jul-06 8:00
cppcook19-Jul-06 8:00 
AnswerRe: Edit Box alignment problem Pin
earl19-Jul-06 8:34
earl19-Jul-06 8:34 
QuestionSyntax Question Pin
pgav19-Jul-06 7:14
pgav19-Jul-06 7:14 
AnswerRe: Syntax Question Pin
Justin Tay19-Jul-06 7:17
Justin Tay19-Jul-06 7:17 
AnswerRe: Syntax Question Pin
toxcct19-Jul-06 7:19
toxcct19-Jul-06 7:19 
GeneralRe: Syntax Question Pin
pgav19-Jul-06 7:25
pgav19-Jul-06 7:25 
AnswerRe: Syntax Question Pin
Zac Howland19-Jul-06 8:54
Zac Howland19-Jul-06 8:54 
Questionbrekpointing every function Pin
TClarke19-Jul-06 6:11
TClarke19-Jul-06 6:11 
QuestionWinsocket2 Pin
Jay0319-Jul-06 5:56
Jay0319-Jul-06 5:56 
AnswerRe: Winsocket2 Pin
Zac Howland19-Jul-06 6:06
Zac Howland19-Jul-06 6:06 
AnswerRe: Winsocket2 Pin
David Crow19-Jul-06 6:11
David Crow19-Jul-06 6:11 
AnswerRe: Winsocket2 Pin
earl19-Jul-06 6:39
earl19-Jul-06 6:39 
GeneralRe: Winsocket2 Pin
Jay0319-Jul-06 7:29
Jay0319-Jul-06 7:29 
QuestionHelp moving from VC6 to VC8, command line Pin
jasper7719-Jul-06 5:54
jasper7719-Jul-06 5:54 
Hi,

I'm an embedded C programmer trying to migrate a set of makefiles from using VC6 tools (with msdev.exe) to VC++ Express + Platform SDK (with vjproj.exe).
I find vcproj is rather underdocumented. Could someone please help me translate a few lines in the makefiles?

Old: msdev pname.dsw /make ALL /clean
New: vcbuild pname.vcproj /clean
... Could you please tell me if these lines accomplish the same thing? I think using "ALL" told msdev to make all the available configurations, but I can't find an equivalent with vcbuild.

Old: msdev.exe pname.dsw -ex macroName /nologo
New: vcbuild pname.vcproj ???????????????????????
... The -ex flag tells msdev to invoke a macro. I think if I were using VC7 and devenv.exe that I would use /command. I can't find anything similar for vcproj.

Old: msdev pname.dsw /make "FileName - Win32 $(MSDEV_CONFIG)"
New: vcbuild pname.dsw /rebuild /OUT:FileName "$(MSDEV_CONFIG)|Win32"
... I am using /rebuild because I read a post/answer that indicated vcbuild has problems with pre build events, generated cpp files, or projects which have more than one level of depencency, and that /rebuild should alleviate "most" issues. Do you know if this is still the case? Also, am I translating the use of FileName correctly?

Thanks!

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.