Click here to Skip to main content
15,894,907 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Why won't VS2015 let me compile? Pin
Victor Nijegorodov26-Apr-22 1:54
Victor Nijegorodov26-Apr-22 1:54 
GeneralRe: Why won't VS2015 let me compile? Pin
Richard Deeming26-Apr-22 2:41
mveRichard Deeming26-Apr-22 2:41 
GeneralRe: Why won't VS2015 let me compile? Pin
Richard MacCutchan26-Apr-22 2:41
mveRichard MacCutchan26-Apr-22 2:41 
AnswerRe: Why won't VS2015 let me compile? Pin
Greg Utas21-Apr-22 12:13
professionalGreg Utas21-Apr-22 12:13 
GeneralRe: Why won't VS2015 let me compile? Pin
charlieg25-Apr-22 0:56
charlieg25-Apr-22 0:56 
JokeRe: Why won't VS2015 let me compile? Pin
Randor 21-Apr-22 14:04
professional Randor 21-Apr-22 14:04 
GeneralRe: Why won't VS2015 let me compile? Pin
charlieg22-Apr-22 0:19
charlieg22-Apr-22 0:19 
AnswerRe: Why won't VS2015 let me compile? Pin
charlieg22-Apr-22 0:29
charlieg22-Apr-22 0:29 
AnswerRe: Why won't VS2015 let me compile? Pin
Richard Andrew x6423-Apr-22 3:47
professionalRichard Andrew x6423-Apr-22 3:47 
GeneralRe: Why won't VS2015 let me compile? Pin
charlieg25-Apr-22 2:31
charlieg25-Apr-22 2:31 
QuestionMoving a STL container around Pin
Calin Negru15-Apr-22 22:16
Calin Negru15-Apr-22 22:16 
AnswerRe: Moving a STL container around Pin
Richard MacCutchan15-Apr-22 23:15
mveRichard MacCutchan15-Apr-22 23:15 
GeneralRe: Moving a STL container around Pin
Calin Negru16-Apr-22 0:18
Calin Negru16-Apr-22 0:18 
GeneralRe: Moving a STL container around Pin
Greg Utas16-Apr-22 1:00
professionalGreg Utas16-Apr-22 1:00 
GeneralRe: Moving a STL container around Pin
Calin Negru16-Apr-22 3:01
Calin Negru16-Apr-22 3:01 
GeneralRe: Moving a STL container around Pin
Richard MacCutchan16-Apr-22 5:59
mveRichard MacCutchan16-Apr-22 5:59 
GeneralRe: Moving a STL container around Pin
Calin Negru16-Apr-22 9:34
Calin Negru16-Apr-22 9:34 
QuestionMessage Closed Pin
5-Apr-22 16:02
Member 149687715-Apr-22 16:02 
AnswerRe: macro usage error Pin
Victor Nijegorodov5-Apr-22 20:35
Victor Nijegorodov5-Apr-22 20:35 
AnswerRe: macro usage error Pin
Richard MacCutchan5-Apr-22 21:24
mveRichard MacCutchan5-Apr-22 21:24 
Questionmain.c:37:37: error: expected expression at end of input 37 | if (bind(server_fd, (struct sockaddr *)&address, | ^~~~~~~~ Pin
Nagavarapu Pavan4-Apr-22 20:23
Nagavarapu Pavan4-Apr-22 20:23 
AnswerRe: main.c:37:37: error: expected expression at end of input 37 | if (bind(server_fd, (struct sockaddr *)&address, | ^~~~~~~~ Pin
CPallini4-Apr-22 21:47
mveCPallini4-Apr-22 21:47 
GeneralRe: main.c:37:37: error: expected expression at end of input 37 | if (bind(server_fd, (struct sockaddr *)&address, | ^~~~~~~~ Pin
Nagavarapu Pavan4-Apr-22 21:56
Nagavarapu Pavan4-Apr-22 21:56 
GeneralRe: main.c:37:37: error: expected expression at end of input 37 | if (bind(server_fd, (struct sockaddr *)&address, | ^~~~~~~~ Pin
CPallini4-Apr-22 22:46
mveCPallini4-Apr-22 22:46 
QuestionCan not create object of DirectorySearcher class with Visual C++ with project reference of System.DirectoryServices.dll Pin
Alex Banar1-Apr-22 10:17
Alex Banar1-Apr-22 10:17 
System.DirectoryServices.dll file has been added successfully to Visual C++ MFC project through References in Solution Explorer.

Microsoft Development Environment 2003 Version 7.1.3088.
Microsoft .Net Framework 1.1 Version 1.1.4322

using namespace System::DirectoryServices;//line 1268
void CClassName::MethodName(){
...
    DirectorySearcher* directorySearcher = new DirectorySearcher();//line 1701
    directorySearcher->ClientTimeout = 60000;//line 1702
...
}

file.cpp(1701): error C2061: syntax error : identifier 'DirectorySearcher'
file.cpp(1701): error C2065: 'directorySearcher' : undeclared identifier
file.cpp(1701): error C2065: 'DirectorySearcher' : undeclared identifier
file.cpp(1702): error C2227: left of '->ClientTimeout' must point to class/struct/union
        type is ''unknown-type''
file.cpp(1268): error C2653: 'System' : is not a class or namespace name
file.cpp(1268): error C2871: 'DirectoryServices' : a namespace with this name does not exist
file.cpp(1702): error C3861: 'directorySearcher': identifier not found, even with argument-dependent lookup

By this way I need to set Request Timeout for SOAP WebService

modified 2-Apr-22 8:04am.

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.