| Back to Questions Page |
| |
| Question |
what are the advantages of VC++ design environment |
Rank |
Answer Posted By |
|
Question Submitted By :: Jyothi N Swamy |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | 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/  |
| V |
| |
| |
| Question |
I have to DLL one is COM dll and another is normal DLL.
How I can identify which dll is normal DLL and which DLL is
from COM DLL.
please give me some clear picture on these
|
Rank |
Answer Posted By |
|
Question Submitted By :: Mohammed Shafi |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | 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  |
| Chetan |
| |
| |
| Question |
How can i communicate with two systems one is located some
place another is located 100km how from the current systems
which protocala i have to use |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ Invensys |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Hai
You can use TCP/IP or UDP protocol and socket programming
for the same.
Arun  |
| R Arun Kumar |
| |
| |
|
|
| |
| Question |
What is command routing in VC++ |
Rank |
Answer Posted By |
|
Question Submitted By :: K. Ramaswamy |
| This Interview Question Asked @ Siemens |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | in SDI:
View -> Doc -> FrameWnd -> App.
In MDI:
CView->CDocument->CMDIChildWnd ->CMDIFrameWnd -> CWinApp.  |
| Khan |
| |
| |
| Question |
What are some differences between a form view and a dialog
box? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ Manipal-Ecommerce , Ds |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | 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.  |
| Prakash |
| |
| |
| Question |
What is the difference between serialization and
deserialization?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ MBT |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | 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 is being serialized
or de-serialized.  |
| Naviyr |
| |
| |
| Question |
What is persistence?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | 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.  |
| Naviyr |
| |
| |
| Answer | Persistence is a way of storing state of an object
permanently to a file / storage place , etc.  |
| Muddy |
| |
| |
| Question |
What is the return value when the InsertItem function
fails? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | LB_ERR (-1)  |
| Naviyr |
| |
| |
| Question |
Which steps are required to add a column to a list view?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | 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 which members contain valid information
lvcolm.fmt=LVCFMT_LEFT;//Alignment of the column header
lvcolm.cx=100;//Width of the column, in pixels
lvcolm.pszText="First"; //column header text
3. ListObj.InsertColumn(0,&lvcolm);
 |
| Shadab Ali |
| |
| |
| Question |
What is a transparent image? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | The image which is visible on the background is called
Transparent.  |
| Satyagmk |
| |
| |
| Question |
What is an overlapped image? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | This is the Image of Dialogbox without showuing the dialog
Items.  |
| Satyagmk |
| |
| |
| Question |
How do you specify which control is the buddy control? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | If user want to put both edit and up-down(spin) control
together then we can say it as buddy control.  |
| Ravi K |
| |
| |
| Answer | Specify the buddy control using the CSpinControl::SetBuddy
(CWnd *) function.Pass the CWnd pointer to the Control as
the parameter.  |
| Jobin Jacob |
| |
| |
| Question |
What property is used to indicate that the up-down control
is associated with a buddy control?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | U have To Do Two Things....
1)Set AutoBuddy propertie as TRUE
2)Alignment Propertie as Right Or Left  |
| Arundeva |
| |
| |
|
| |
|
Back to Questions Page |