What methods can be used to keep network traffic to a minimum while passing object data from a component that resides on a client computer to a component that resides on a server?
You are developing a composite ActiveX control. The control consists of a calendar control named Cal1 and a TextBox control named txtDate. You want to map the Text property of the text box to the text property of the composite control. Which code fragment should you use?A. Public Property Let Text (Byval strValue As String) TxtDate.text=strValue End Property Public Property Get Text() As String Text=txtdate.Text End Property B. Private Property Let Text (Byval strValue As String) TxtDate.text=strValue
Answer: A
What is the option used for retrieving a reference to the instance of Internet Explorer that is hosting the User Document which is designed to run inside Microsoft Internet Explorer in an ActiveX Document DLL project?
What is the User Document event during which you should save the data so that the active document persist its context when the User Document is closed?
Answer: D
What is the procedure for registering an ActiveX EXE project developed which acts as a DCOM server application on the server computer?
How can one allow users to navigate between multiple User Documents present in an ActiveX Document DLL project?
What must be done to use data environment designer to place controls and labels which will be bound to the result set of a stored procedure that already exists in the database on a form?
You are developing a client/server application. You want to minimize the development time necessary to connect data-bound controls to a SQLSERVER database. Which data-access method should you use?A. ADO connected directly to SQL SERVER B. RDO connected directly to SQL SERVER C. DAO connected to SQL SERVER via the jet engine D. ADO connected to SQL SERVER via data-aware classes
Answer: A