Click here to Skip to main content
15,922,407 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionProblem with DateTime picker control. Pin
Sanjay K23-Jul-08 2:45
Sanjay K23-Jul-08 2:45 
AnswerRe: Problem with DateTime picker control. Pin
Cedric Moonen23-Jul-08 3:25
Cedric Moonen23-Jul-08 3:25 
GeneralRe: Problem with DateTime picker control. Pin
Sanjay K23-Jul-08 17:55
Sanjay K23-Jul-08 17:55 
QuestionRe: Problem with DateTime picker control. Pin
David Crow23-Jul-08 3:31
David Crow23-Jul-08 3:31 
Questionfatal error C1093: API call 'ImportFile' failed '0x80070003' : ErrorMessage: The system cannot find the path specified. Pin
Le@rner23-Jul-08 2:14
Le@rner23-Jul-08 2:14 
AnswerRe: fatal error C1093: API call 'ImportFile' failed '0x80070003' : ErrorMessage: The system cannot find the path specified. Pin
David Crow23-Jul-08 3:34
David Crow23-Jul-08 3:34 
GeneralRe: fatal error C1093: API call 'ImportFile' failed '0x80070003' : ErrorMessage: The system cannot find the path specified. Pin
WEEDFIN18-Feb-10 7:47
WEEDFIN18-Feb-10 7:47 
QuestionMPI Program Error Pin
Member 393641122-Jul-08 23:46
Member 393641122-Jul-08 23:46 
Hi I have done a Client Server Program using MPI. While calling one of the API MPI_Open_port() in server side iam getting an error "Fatal error in MPI_Open_port: Other MPI error".. Can any body tell why this happens and solution for that.. Iam attaching the code snippet for that

#include <mpi.h>
#include <string.h>
#include <stdio.h>
#include <windows.h>
#include <iostream.h>

#pragma comment( lib, "msmpi.lib" )

int main( int argc, char* argv[] )
{
MPI_Status Status;
char Buffer;
char Message;
int NumProcess, Rank;
int SendRecStatus;
char myport[MPI_MAX_PORT_NAME]={0};
MPI_Request Request;
MPI_Comm intercomm;

// Initialize the MPI execution environment
MPI_Init( &argc, &argv );
// Determines the size of the group associated with a communicator
MPI_Comm_size( MPI_COMM_WORLD, &NumProcess );
// Determines the rank of the calling process in the communicator
MPI_Open_port(MPI_INFO_NULL, myport);
printf("port name is: %s\n", myport);
MPI_Comm_accept( "10.1.27.64:3210", MPI_INFO_NULL, 0, MPI_COMM_WORLD, &intercomm);
printf("client connected\n");
MPI_Recv( &Message, 5, MPI_CHAR, MPI_ANY_SOURCE, MPI_ANY_TAG, intercomm, &Status);
cout<<Message;
MPI_Comm_free(&intercomm);
MPI_Close_port("10.1.27.64");
// Terminates MPI execution environment
SendRecStatus = MPI_Finalize();

return 0;
}


Thanks
QuestionMDI file association problem (about ddeexec) [Solved] [modified] Pin
followait22-Jul-08 22:38
followait22-Jul-08 22:38 
QuestionSystem(pause) Pin
T.RATHA KRISHNAN22-Jul-08 22:21
T.RATHA KRISHNAN22-Jul-08 22:21 
AnswerRe: System(pause) Pin
Cedric Moonen22-Jul-08 22:27
Cedric Moonen22-Jul-08 22:27 
QuestionRe: System(pause) Pin
T.RATHA KRISHNAN22-Jul-08 22:42
T.RATHA KRISHNAN22-Jul-08 22:42 
QuestionRe: System(pause) Pin
CPallini22-Jul-08 22:58
mveCPallini22-Jul-08 22:58 
AnswerRe: System(pause) Pin
Rajesh R Subramanian1-Aug-08 20:41
professionalRajesh R Subramanian1-Aug-08 20:41 
QuestionRe: System(pause) Pin
David Crow23-Jul-08 3:35
David Crow23-Jul-08 3:35 
AnswerRe: System(pause) Pin
Cedric Moonen23-Jul-08 4:24
Cedric Moonen23-Jul-08 4:24 
GeneralRe: System(pause) Pin
David Crow23-Jul-08 4:57
David Crow23-Jul-08 4:57 
QuestionRe: System(pause) Pin
Rajesh R Subramanian22-Jul-08 23:23
professionalRajesh R Subramanian22-Jul-08 23:23 
QuestionRe: System(pause) Pin
T.RATHA KRISHNAN22-Jul-08 23:37
T.RATHA KRISHNAN22-Jul-08 23:37 
QuestionRe: System(pause) Pin
Rajesh R Subramanian22-Jul-08 23:39
professionalRajesh R Subramanian22-Jul-08 23:39 
QuestionRe: System(pause) Pin
T.RATHA KRISHNAN22-Jul-08 23:45
T.RATHA KRISHNAN22-Jul-08 23:45 
QuestionRe: System(pause) Pin
Rajesh R Subramanian22-Jul-08 23:47
professionalRajesh R Subramanian22-Jul-08 23:47 
QuestionRe: System(pause) Pin
T.RATHA KRISHNAN22-Jul-08 23:53
T.RATHA KRISHNAN22-Jul-08 23:53 
AnswerRe: System(pause) Pin
Cedric Moonen23-Jul-08 0:09
Cedric Moonen23-Jul-08 0:09 
AnswerRe: System(pause) Pin
Rajesh R Subramanian23-Jul-08 0:36
professionalRajesh R Subramanian23-Jul-08 0:36 

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.