


Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
This document from the itec 4770 client/server systems course explores application architecture, focusing on the importance of analysis and design, component/deployment model, database model, and user centric object model. Topics include preventing duplicate code, promoting understanding, making weaknesses visible, using interfaces and soap for object communication, and creating data and user centric objects. The document also covers naming conventions, creating stored procedures, and adding functionality to the presentation tier.
Typology: Study notes
1 / 4
This page cannot be seen from the preview
Don't miss anything!



Chapter 3 – Application Architecture
Chapter 3 – Application Architecture
Chapter 3 – Application Architecture a. Inherits System.Collections.DictionaryBase : an object that allows to store pairs (key, value) and to retrive a value when the key is given. Sub Add (key As Object, value As Object) Private Property Item (key As Object) As Object (Load function pg 81)
7. Creating frmListBase (pg87) and a derived class frmRegionList : An UI object that displays all regions in RegionMgr
1. Add all columns in lvwList ListView object into the cboColumn ComboBox object.(pg 96): frmListBase_Load 2. Add Find Functionality to frmListBase (pg 97): btnFind_Click 3. Add Sorting Functionality to frmListBase a. Create an ListViewColumnSorter object that implements IComparer interface (pg 98) which has one method: Function Compare (x As Object, y As Object) As Integer: Utilities.vb b. Pass that object to the lvwList ListView object. (pg 99). The ListView object knows how to sort itself as long as you tell it how any two rows are ordered. c. Implement lvwList_ColumnClick (pg 100) 4. Implementing the Print Functionality (pg 101)