Modifying MyParks for use with RAD Server
I've copied the MyParks project, including the main form and the data module, from Chapter 10, Cameras, the GPS, and More, and will make the modifications starting with that finished, working version. (The modifications we made to this app in Chapter 12, Console-Based Server Apps and Services, and Chapter 13, Web Modules for IIS and Apache, were for specific server purposes, and we'd have to remove several parts to rework it for use with RAD Server, so we might as well start without them.)
Setting up RAD Server connection components
Before we connect to RAD Server, let's set up a new list view to hold the results.
Open the main form of the MyParks app and add the following:
- Add a
TTabControl
behindTListView
that holds the main list of parks on thetabParkList
tab. - Add two tabs on this new tab control—
tabLocalParks
andtabRemoteParks
. - Move the current list view of the locally stored parks onto...