You and several other developers are working on a large Visual Basic project. The projectteam is using Microsoft Visual SourceSafe(VSS) for source code control. You make major Changes toone component within the project. You want to share these changes with other developers on theteam while minimizing the risk of causing errors for these other developers. How should you do this?*(A) Get the latest version of all components from VSS database. Test your New versionwith these components.(B) Check your
You are debugging a Visual Basic program that uses a module named basStrings. The modulecontains many string functions. You suspect that are logic errors in both the FindNextSeparatorprocedure and the FindNextToken procedure in this Module. Each of these procedures uses a localvariable named intChars. FindNextToken Includes a call to FindNextSeparator. FindNextToken iscalled from a Procedures named ProcessString in a module named basMain that is in the Program Youwant to use the Watch window to
You create a VB application that uses conditional compilation to enable and disableelements of functionality. Which two mechanisms can you use to set conditional compilationconstants?(Choose two)*(A) The #Const directive*(B) The Project Properties dialog box(C) The dim statement(D) The const statement(E) The Project references dialog box
You have a form that will be using several graphic controls such as the PictureBox,Shape and Image controls. You will not be using a graphics method such as Circle, Pset or Line.What is the best way for you to set the AutoRedraw property?*(A) AutoRedraw should be set to False for the Form.(B) AutoRedraw should be set to True for the Form.(C) AutoRedraw should be set to False for each control that you want to retain graphics.
You are using Visual Basic to create an ActiveX control that you want to distribute toother developers. You want to add an about box to your control to show your e-mail address. Howcan you implement this about box so that it is available in the property windows?(A) Add a new UserControl object to your control project. Name this UserControl objectabout. Make this control the default control in the project.(B) Add a new property page to your control project. Name this page about. Select thepage in
You create a VB Application that will communicate with a set of out of process componentsby passing its own object to them. This application will supply the user interface for the entiregroup of components by displaying a form FRMMAIN. You have set FRMMAIN as the startup object foryour Application. Which Project Properties must you set to ensure that frmmain will be shown whenthe app is first started?(A) Set the project type to ActiveX DLL, set the Thread Model to single Thread*(B) Set the project
Which statement best describes the scope of a public object created in a standard modulenamed Global.bas?(A) It can only be accessed from within Global.bas.(B) It can be accessed from within the application containing Global.bas and fromin-process applications.*(C) It can only be accessed from within the application containing Global.bas.
What menu type appears over a form in response to a mouse-click rather than beingattached to a menu bar?*(A) Pop-up menu(B) Menu bar(C) Top-level menu(D) Submenu
You use Visual Basic to create a Recordset object that must return the most recent datain a table named Students. Although you need to detect any changes or new records, you are notconcerned with deletions. You have already created a connection named cnStudents. Which codefragment will return a recordset with the necessary functionality?(A) Set rsStudents = New Recordset ; cnStudents.Open "Select FROM Student", cnStudents ,adopenStat(B) Set rsStudents = New Recordset ; rsStudents.Open
You decide to distribute your Visual Basic application over your Corporate intranet.Using the Package and Deployment Wizard, you compress your application files into .cab files thatare placed on your internal Web server. How should users install this application to their hard drives?*(A) By using Microsoft Internet Explorer to browse to the Web Page containing the cab files.(B) By running the setup program in the cab files directory on the Web Server(C) By using FTP to transfer the cab files from
View page << Previous 5 6 7 8 [9] 10 11 12 13 14 Next >>

Go Top