Click here to Skip to main content
15,904,822 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerMessage Closed Pin
7-Jan-14 0:28
Suk@nta7-Jan-14 0:28 
GeneralRe: Increment and Decrement Operators Pin
OriginalGriff8-Jan-14 1:59
mveOriginalGriff8-Jan-14 1:59 
GeneralRe: Increment and Decrement Operators Pin
Suk@nta9-Jan-14 18:17
Suk@nta9-Jan-14 18:17 
GeneralRe: Increment and Decrement Operators Pin
OriginalGriff9-Jan-14 22:10
mveOriginalGriff9-Jan-14 22:10 
GeneralRe: Increment and Decrement Operators Pin
Suk@nta10-Jan-14 3:52
Suk@nta10-Jan-14 3:52 
AnswerRe: Increment and Decrement Operators Pin
Marco Bertschi7-Jan-14 1:31
protectorMarco Bertschi7-Jan-14 1:31 
AnswerRe: Increment and Decrement Operators Pin
tgsb7-Jan-14 20:38
tgsb7-Jan-14 20:38 
GeneralRe: Increment and Decrement Operators Pin
OriginalGriff8-Jan-14 1:56
mveOriginalGriff8-Jan-14 1:56 
GeneralRe: Increment and Decrement Operators Pin
tgsb8-Jan-14 19:43
tgsb8-Jan-14 19:43 
GeneralRe: Increment and Decrement Operators Pin
OriginalGriff8-Jan-14 19:44
mveOriginalGriff8-Jan-14 19:44 
QuestionCTreeCtrl::GetNextSiblingItem never null Pin
dliviu6-Jan-14 1:15
dliviu6-Jan-14 1:15 
AnswerRe: CTreeCtrl::GetNextSiblingItem never null Pin
_Flaviu7-Jan-14 20:24
_Flaviu7-Jan-14 20:24 
GeneralRe: CTreeCtrl::GetNextSiblingItem never null Pin
dliviu8-Jan-14 0:55
dliviu8-Jan-14 0:55 
GeneralRe: CTreeCtrl::GetNextSiblingItem never null Pin
_Flaviu8-Jan-14 1:27
_Flaviu8-Jan-14 1:27 
GeneralRe: CTreeCtrl::GetNextSiblingItem never null Pin
dliviu8-Jan-14 1:36
dliviu8-Jan-14 1:36 
QuestionShort time format Pin
_Flaviu6-Jan-14 0:42
_Flaviu6-Jan-14 0:42 
SuggestionRe: Short time format Pin
Richard MacCutchan6-Jan-14 0:56
mveRichard MacCutchan6-Jan-14 0:56 
GeneralRe: Short time format Pin
_Flaviu6-Jan-14 1:06
_Flaviu6-Jan-14 1:06 
QuestionRe: Short time format Pin
_Flaviu6-Jan-14 1:40
_Flaviu6-Jan-14 1:40 
GeneralRe: Short time format Pin
Richard MacCutchan6-Jan-14 2:20
mveRichard MacCutchan6-Jan-14 2:20 
GeneralRe: Short time format Pin
_Flaviu6-Jan-14 2:24
_Flaviu6-Jan-14 2:24 
AnswerRe: Short time format Pin
David Crow6-Jan-14 5:03
David Crow6-Jan-14 5:03 
GeneralRe: Short time format Pin
_Flaviu6-Jan-14 20:44
_Flaviu6-Jan-14 20:44 
AnswerRe: Short time format Pin
Peter Leow6-Jan-14 1:06
professionalPeter Leow6-Jan-14 1:06 
Question[build c++ by command line on windows OS][visual studio 2008] Pin
Thong LeTrung5-Jan-14 21:32
Thong LeTrung5-Jan-14 21:32 
i have main.cpp ,makefile , build.bat
//----------main.cpp----------------------------
#include <iostream>

int main()
{
std::cout << "hello world." << std::endl;
return 0;
}

//--------------makefile-------------------------
foo: main.cpp
CL main.cpp

//-------------build.bat--------------------------

@echoOFF
echo buid by commnand line
nmake
echo =============================
echo run main.exe
echo =============================
main.exe

i use "Visual Studio command prompt " to run build.bat file .

+ with visual studio 2010 : ok
+ with visual studio 2008 : error


please help me how to fix on visual 2008 .


Thanks
Thong LT

============================visual studio 2010================
C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC>cd c:\Users\ttle\Desktop\
demo

c:\Users\ttle\Desktop\demo>build.bat
buid by commnand line

Microsoft (R) Program Maintenance Utility Version 10.00.30319.01
Copyright (C) Microsoft Corporation. All rights reserved.

CL main.cpp
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.40219.01 for 80x86
Copyright (C) Microsoft Corporation. All rights reserved.

main.cpp
c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\xlocale(323) : wa
rning C4530: C++ exception handler used, but unwind semantics are not enabled. S
pecify /EHsc
Microsoft (R) Incremental Linker Version 10.00.40219.01
Copyright (C) Microsoft Corporation. All rights reserved.

/out:main.exe
main.obj
=============================
run main.exe
=============================
hello world.

//====================Visual studio 2008 ----------------
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
Copyright (C) Microsoft Corporation. All rights reserved.

main.cpp
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\xlocale(342) : war
ning C4530: C++ exception handler used, but unwind semantics are not enabled. Sp
ecify /EHsc
Microsoft (R) Incremental Linker Version 9.00.30729.01
Copyright (C) Microsoft Corporation. All rights reserved.

/out:main.exe
main.obj
LINK : fatal error LNK1104: cannot open file 'kernel32.lib'
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 9.0\
VC\BIN\CL.EXE"' : return code '0x2'
Stop.
=============================
run main.exe
=============================
'main.exe' is not recognized as an internal or external command,
operable program or batch file.

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.