New VC++ AllOther Interview Questions :: ALLInterview.com http://www.allinterview.com New VC++ AllOther Interview Questions en-us what is the difference between the codes written in the document clas http://www.allinterview.com/showanswers/75715.html 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 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. What is an overlapped image? http://www.allinterview.com/showanswers/16255.html This is the Image of Dialogbox without showuing the dialog Items. How do you specify which control is the buddy control? http://www.allinterview.com/showanswers/16254.html If user want to put both edit and up-down(spin) control together then we can say it as buddy control. What property is used to indicate that the up-down control is associ http://www.allinterview.com/showanswers/16253.html U have To Do Two Things.... 1)Set AutoBuddy propertie as TRUE 2)Alignment Propertie as Right Or Left