QuestionQ53

Apply developer tools

You create a Visual Studio project named CustomerDetailUpdate.

You need to update data in a table named CustTable and be able to run the code from Visual Studio.

In what order should you perform the actions?

Drag & Drop
Create a runnable class and add the class to the CustomerDetailUpdate project
Set the class as the startup project and run the class
Build the project
Write code in the class to update the customer table
Explanation

A runnable class must exist before its update logic can be implemented. Building compiles the completed project, after which the class can be selected as the startup project and executed from Visual Studio.

Community Discussion

No comments yet. Be the first to start the discussion!