As the project is on MFC there should be class diagrams for each class. You need give some time to draw the ER diagrams for the project. A class diagram includes class name followed by instance members and then the member functions. You can find the class diagrams in progamming in C++ by Balaguruswamy. For OO design patterns go through this page. http://www.eventhelix.com/RealtimeMantra/Object_Oriented/object_design_tips.htm[^] Regards
sunil4400
Posts
-
project writing/documentation fr MFC [modified] -
How to Debug a Windows ServiceHello all, I've created a Windows Service project. But I'm not able to debug the code written in the Start() method. As mentioned in the Microsoft web site, http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbtskdebuggingserviceapplications.asp I created a dummy Windows Service, even then I'm not able to proceed furthur. Please help me in resolving this issue. Thanks in Advance. Regards Sunil
-
This is interesting stuff....Let me tell you one thing. This is how one's ability to think dies. One more example. One man was passing the elephants, he suddenly stopped, confused by the fact that these huge creatures were being held by only a small rope tied to their front leg. No chains, no cages. It was obvious that the elephants could, at anytime, break away from their bonds but for some reason, they did not. I saw a trainer near by and asked why these beautiful, magnificent animals just stood there and made no attempt to get away. "Well," he said, "when they are very young and much smaller we use the same size rope to tie them and, at that age, it's enough to hold them. As they grow up, they are conditioned to believe they cannot break away. They believe the rope can still hold them, so they never try to break free." He was amazed. These animals could at any time break free from their bonds but because they believed they couldn't, they were stuck right where they were. Like the elephants, how many of us go through life hanging onto a belief that we cannot do something, simply because we failed at it once before?
-
Roles in Heaven(According to Ramayana ,MahaBharatha)Nice work Bindu, Probably you may include the following. Indra General Manager, Heaven Parvati HR Manager
-
Problem in converting Unmanaged C++ Code to Managed C++ CodeHello all, I have a strucure as given below. public ref struct PASSTHRU_MSG { unsigned long ulProtocolID; unsigned long ulRxStatus; unsigned long ulTxFlags; unsigned long ulTimeStamp; unsigned long ulDataSize; unsigned long ulExtraDataIndex; array ^ucData;//[4128]; }; PASSTHRU_MSG ^passThruMsg = gcnew PASSTHRU_MSG; In Unmanaged Code we used to access the passThruMsg object of this type as (unsigned char*). There we did not encounter any problem. But now in Managed Code I'm supposed to convert passThruMsg object to array^) or (String^). But I'm unable to convert it to either of the above mentioned forms. I'm getting Compilation warning, and a runtime crash. So, now I'm thinking of filling the data contained in the passThruMsg object to a (String^) or an (array^). The issue with (String^) is String::Copy() doesn't work if it encounters a null character. Please give me an advice which one to use. Thanks in advance. Regards Sunil
-
ResetContent() in VC.NET