Index: trunk/src/tmcsim/client/CADClockDisplay.java
===================================================================
--- trunk/src/tmcsim/client/CADClockDisplay.java	(revision 54)
+++ trunk/src/tmcsim/client/CADClockDisplay.java	(revision 57)
@@ -156,6 +156,10 @@
         // relationship.
         theClientScreenView = new CADClockView(theClientScreenModel);
-        theClientScreenView.setVisible(false);
-
+        theClientScreenModel.addObserver(theClientScreenView);
+        theClientScreenView.setVisible(true);
+        // Create the CAD Client thread to run the CADClientModel Object.
+        Thread clientThread = new Thread(theClientScreenModel);
+        clientThread.start();
+        
         // TODO: set up model-view relationship similar to ClientView and
         // ScreenView
