exercise
===============
*size changed to 600, 536

patientInfo
===============

*commented out picture loading (programatically) 
*delted old comments
* modified some  data  to use fakedata
String *n = S"Steve Wass";
				 String *w= S"120 lbs";
				 String *b= S"A";
				 String *a= "21";
				 String *bd = "10/21/1983";
				 String *d= "Dr. Zaius";
				 String *ad = "666 Fake Street,\n Wheaton MD 90210";
				 String *c =" None";
				String *dn = "301-867-5309";

take readings
===============
*size changed to 600, 536
*constructor: 
    -deleted picture loading
*initialize links
  - deleted picture loadings

Results 
===============

*constructor:
  - added better random seed 
  {
//Stv
			System::DateTime localDateTime = System::DateTime::Now;
			System::DateTime univDateTime = localDateTime.ToUniversalTime();
			//start generating random numbers with time as  agood seed
			rand = new Random( univDateTime.Millisecond);
			//end stv
  }
  -deleted picture loading
* data methods: modified all slightly
{
   //stv
 //randomly get a reading within teh range of generally acceptable data values
 //then convert it to a string to be printed out
 //between the gettign of the val and converting it is some sort of comparision to highlight text or what have you
			 //if a bad reading is taken (i..e high blood presssure)
	private: String *  getBlood()
	{
		//get random number 60-240, and 40-160)
	    int i1 = getRandom(60, 240);
		int i2 =getRandom(40,160);
		String * result =String::Concat(i1.ToString(), "/", i2.ToString()) ;
		return result;
	}


	private: String *  getHeartRate()
	{
		int i = getRandom(40, 100);
		String * result = i.ToString() ;
		return result;

	}
	private: String *  getTemp()
	{
		int dec = getRandom(0, 9);
		int i  = getRandom( 97, 103);
		double d = i + dec*.1;
		//get a temperature with 1 decimal place.
		String * result = String::Concat( d.ToString(), " F") ; 
		return result;
	}

	private: String *  getWeight()
	{
		int i =  getRandom( 100, 250 );
		String * result =String::Concat(i.ToString()," lbs") ;
		return result;
	}
}
history
===============



changed vario
===============
===============
+to add
==============================
* more comments