Elenco in ordine alfabetico delle domande di 70-016: Desktop applications with Microsoft Visual C++ 6.0
Seleziona l'iniziale:
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
> Clicca qui per scaricare l'elenco completo delle domande di questo argomento in formato Word!
- A certificate that Microsoft and most vendors recognize is in what format? X.509
- A DDX_ function is used to move data between which of the following? [Check all of the correct answers] A dialog box and a control
- An ActiveX control sends its container by which of the following techniques? Call a container implemented method
- Assume that you work for Acme Travel and are enhancing a COM application that includes the following code:
COSERVERINFO csi = { 0, NULL, NULL, 0 };
MULTI_QI mqi[] =
{
{&IID_IAirlines, NULL, S_OK},
{&IID_ILodging, NULL, S_OK},
{&IID_IRentalCars, NULL, S_OK},
{&IID_ICruises, NULL, S_OK},
{&IID_IResorts, NULL, S_OK}
};
HRESULT hr = CoCreateInstanceEx(
CLSID_TravelAgencyServer,
NULL, CLSCTX_SERVER, &csi,
sizeof(mqi)/sizeof(mqi[0]),
mqi);
Which of the following statements are true? [Check all of the correct answers]
If everything works correctly, the MULTI_QI structure will contain five interface pointers.- Assume you work for Acme Software. You develop an MFC MDI application that includes the following code:
SetRegistryKey(_T("Acme Software"));
LoadStdProfileSettings();
Which of the following statements are true? [Check all of the correct answers]
The list of most recently used files are kept in the Registry under HKEY_CURRENT_USER\Software\Acme Software\.- Assume you work for Acme Software. You develop an MFC MDI application that includes the following code:
SetRegistryKey(_T("Acme Software"));
LoadStdProfileSettings();
Which of the following statements are true? [Check all of the correct answers]
The code is located in the InitInstance() member function of your CWinApp-derived class.