New VC++ AllOther Interview Questions :: ALLInterview.com http://www.allinterview.com New VC++ AllOther Interview Questions en-us what is DLL? http://www.allinterview.com/showanswers/101305.html Differences between vc 6.0 and vc 7.0 http://www.allinterview.com/showanswers/97723.html A file a.cpp & B.cpp are complied & linked together in VC++ f http://www.allinterview.com/showanswers/95527.html Compiler error what is the difference between the codes written in the document clas http://www.allinterview.com/showanswers/75715.html The Document class supports objects used to store or control your program's data and provides the basic functionality for programmer-defined document classes. A document represents the unit of data that the user typically opens with the what are the advantages of VC++ design environment http://www.allinterview.com/showanswers/75714.html By design environment if you mean by the IDE that MS provides then answer is quite simple. Visual Studio is one of the most sophisticated, powerful yet simple to use IDE for Windows programming. Vikas http://www.cppquestions.com/ hi i have 1180 in gre and 109 in toefl i have one more backlog to cl http://www.allinterview.com/showanswers/75184.html YOur question is not at all related vc++,So plz dont post these types of question here..There are many forums are there to help u. I have to DLL one is COM dll and another is normal DLL. How I can ide http://www.allinterview.com/showanswers/74578.html make command on both dll regsvr("noramal dll") it will show message of some entry point error regsvr("comdll") it will register succesfully to window How can i communicate with two systems one is located some place ano http://www.allinterview.com/showanswers/69459.html Hai You can use TCP/IP or UDP protocol and socket programming for the same. Arun What is command routing in VC++ http://www.allinterview.com/showanswers/69458.html in SDI: View -> Doc -> FrameWnd -> App. In MDI: CView->CDocument->CMDIChildWnd ->CMDIFrameWnd -> CWinApp. What are some differences between a form view and a dialog box? http://www.allinterview.com/showanswers/16266.html form view is deriving from CFormView and dialog box is deriving from CDialog. FormView uses CFrameWnd and it can be SDI or MDI application Dialog box only uses CDialog and CWinApp. What is the difference between serialization and deserialization? http://www.allinterview.com/showanswers/16265.html Serialization is the processing of saving object data to secondary or a permanant storage area. Deserialization is retrieving the stored data. In MFC, CArchive object provide this functionality. "IsStoring" specifies whether the data What is persistence? http://www.allinterview.com/showanswers/16264.html Persistence is a mechanism through which the life of an object is beyond programs execution lifetime. CArchive object in MFC provide this mechanism through "Serialize" member function of a CDocument class. What is the return value when the InsertItem function fails? http://www.allinterview.com/showanswers/16258.html LB_ERR (-1) Which steps are required to add a column to a list view? http://www.allinterview.com/showanswers/16257.html To add a column in List view, steps are as follows- 1. Create an object of LVCOLUMN structure. Initilize the structure meeber variable. 2. LVCOLUMN lvcolm lvcolm.mask=LVCF_TEXT|LVCF_FMT|LVCF_WIDTH|LVCF_SUBITEM;//Var iable specifying wh What is a transparent image? http://www.allinterview.com/showanswers/16256.html The image which is visible on the background is called Transparent.