.net assignment
lab5/Misc/.DS_Store
__MACOSX/lab5/Misc/._.DS_Store
__MACOSX/lab5/._Misc
lab5/Labs/.DS_Store
__MACOSX/lab5/Labs/._.DS_Store
lab5/Labs/Lab/tardis.png
__MACOSX/lab5/Labs/Lab/._tardis.png
lab5/Labs/Lab/.DS_Store
__MACOSX/lab5/Labs/Lab/._.DS_Store
lab5/Labs/Lab/Sample.zip
Sample/Sample.sln
Microsoft Visual Studio Solution File, Format Version 11.00 # Visual C# Express 2013 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sample", "Sample\Sample.csproj", "{421F2DEC-FC53-49E1-9494-3336B1322736}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {421F2DEC-FC53-49E1-9494-3336B1322736}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {421F2DEC-FC53-49E1-9494-3336B1322736}.Debug|Any CPU.Build.0 = Debug|Any CPU {421F2DEC-FC53-49E1-9494-3336B1322736}.Release|Any CPU.ActiveCfg = Release|Any CPU {421F2DEC-FC53-49E1-9494-3336B1322736}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal
Sample/Sample.suo
Sample/Sample.v12.suo
Sample/Sample/bin/Debug/Sample.vshost.exe
Sample/Sample/bin/Debug/Sample.vshost.exe.manifest
Sample/Sample/bin/Release/Sample.exe
Sample/Sample/bin/Release/Sample.pdb
Sample/Sample/bin/Release/Sample.vshost.exe
Sample/Sample/bin/Release/Sample.vshost.exe.manifest
Sample/Sample/frmMain.cs
/* Program: Sample.cs Author: Nicholas J. Corkigian Date: April 6, 2010 Purpose: This program demonstrates some of the common capabilities of the Graphics object as well as how to properly use them. */ using System; using System.Drawing; using System.Windows.Forms; namespace Sample { public partial class frmMain : Form { private Graphics g; //Encapsulates a GDI+ drawing surface private Pen p; //Pens are used to draw objects private Font f; //Defines a particular format for text, including font face, size, and style attributes private SolidBrush b; //Brushes are used to fill graphics shapes private Color c = Color.Black; //Represents a color, initially set to black /* The constructor for the form registers the event handler that automatically repaints the screen */ public frmMain() { InitializeComponent(); this.Paint += new PaintEventHandler(frmMain_Paint); //Registers the Paint event handler } /* Clicking the Close button exits the application */ private void btnClose_Click(object sender, EventArgs e) { Application.Exit(); } /* Clicking the Set Colour button opens the Color Dialog box so the user can select a new colour to draw with */ private void btnColour_Click(object sender, EventArgs e) { cdlColorChooser.Color = c; //Display with the previous colour already chosen cdlColorChooser.ShowDialog(); //Display the actual dialog box c = cdlColorChooser.Color; //Save the colour choice the user made } private void frmMain_Paint(object sender, PaintEventArgs e) { g = e.Graphics; //Get the Graphics object from the PaintEventArgs p = new Pen(c); //Create a new Pen using the current colour f = new Font("Arial", 20); //Create a new Font b = new SolidBrush(c); //Create a new brush using the current colour /* Write a title to the form */ g.DrawString("Graphics Sampler", f, b, 100, 50); } /* Draw some lines on the form */ private void btnLines_Click(object sender, EventArgs e) { g = this.CreateGraphics(); //Create a graphics object g.DrawLine(p, 10, 200, 300, 400); //Draw two intersecting lines using the current Pen g.DrawLine(p, 300, 200, 10, 400); } /* Draw a solid ellipse to the form */ private void btnEllipse_Click(object sender, EventArgs e) { g = this.CreateGraphics(); //Create a graphics object g.FillEllipse(b, 10, 200, 200, 150); //Fill an ellipse using the current brush } /* Draw an open rectangle to the form */ private void btnRectangle_Click(object sender, EventArgs e) { g = this.CreateGraphics(); //Create a graphics object g.DrawRectangle(p, 10, 200, 200, 150); //Draw a rectangle using the current pen } } }
Sample/Sample/frmMain.Designer.cs
namespace Sample { partial class frmMain { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.btnClose = new System.Windows.Forms.Button(); this.cdlColorChooser = new System.Windows.Forms.ColorDialog(); this.btnColour = new System.Windows.Forms.Button(); this.btnRectangle = new System.Windows.Forms.Button(); this.btnEllipse = new System.Windows.Forms.Button(); this.btnLines = new System.Windows.Forms.Button(); this.SuspendLayout(); // // btnClose // this.btnClose.Location = new System.Drawing.Point(12, 128); this.btnClose.Name = "btnClose"; this.btnClose.Size = new System.Drawing.Size(75, 23); this.btnClose.TabIndex = 0; this.btnClose.Text = "Close"; this.btnClose.UseVisualStyleBackColor = true; this.btnClose.Click += new System.EventHandler(this.btnClose_Click); // // cdlColorChooser // this.cdlColorChooser.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255))))); // // btnColour // this.btnColour.Location = new System.Drawing.Point(12, 12); this.btnColour.Name = "btnColour"; this.btnColour.Size = new System.Drawing.Size(75, 23); this.btnColour.TabIndex = 1; this.btnColour.Text = "Set Colour"; this.btnColour.UseVisualStyleBackColor = true; this.btnColour.Click += new System.EventHandler(this.btnColour_Click); // // btnRectangle // this.btnRectangle.Location = new System.Drawing.Point(12, 99); this.btnRectangle.Name = "btnRectangle"; this.btnRectangle.Size = new System.Drawing.Size(75, 23); this.btnRectangle.TabIndex = 2; this.btnRectangle.Text = "Rectangle"; this.btnRectangle.UseVisualStyleBackColor = true; this.btnRectangle.Click += new System.EventHandler(this.btnRectangle_Click); // // btnEllipse // this.btnEllipse.Location = new System.Drawing.Point(12, 70); this.btnEllipse.Name = "btnEllipse"; this.btnEllipse.Size = new System.Drawing.Size(75, 23); this.btnEllipse.TabIndex = 3; this.btnEllipse.Text = "Ellipse"; this.btnEllipse.UseVisualStyleBackColor = true; this.btnEllipse.Click += new System.EventHandler(this.btnEllipse_Click); // // btnLines // this.btnLines.Location = new System.Drawing.Point(12, 41); this.btnLines.Name = "btnLines"; this.btnLines.Size = new System.Drawing.Size(75, 23); this.btnLines.TabIndex = 4; this.btnLines.Text = "Lines"; this.btnLines.UseVisualStyleBackColor = true; this.btnLines.Click += new System.EventHandler(this.btnLines_Click); // // frmMain // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.ClientSize = new System.Drawing.Size(325, 433); this.Controls.Add(this.btnLines); this.Controls.Add(this.btnEllipse); this.Controls.Add(this.btnRectangle); this.Controls.Add(this.btnColour); this.Controls.Add(this.btnClose); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Name = "frmMain"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Sample Graphics"; this.Paint += new System.Windows.Forms.PaintEventHandler(this.frmMain_Paint); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button btnClose; private System.Windows.Forms.ColorDialog cdlColorChooser; private System.Windows.Forms.Button btnColour; private System.Windows.Forms.Button btnRectangle; private System.Windows.Forms.Button btnEllipse; private System.Windows.Forms.Button btnLines; } }
Sample/Sample/frmMain.resx
text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 17, 17Sample/Sample/obj/Debug/Sample.csproj.FileListAbsolute.txt
C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\Sample\obj\Debug\test.pdb
Sample/Sample/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll
Sample/Sample/obj/Release/DesignTimeResolveAssemblyReferences.cache
Sample/Sample/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
Sample/Sample/obj/Release/GenerateResource.read.1.tlog
^\\ADFE-FS01\FET\USERS\CORKIGN\COMP10068\LABS\LAB5\SAMPLE\SAMPLE\FRMMAIN.RESX ^\\ADFE-FS01\FET\USERS\CORKIGN\COMP10068\LABS\LAB5\SAMPLE\SAMPLE\PROPERTIES\RESOURCES.RESX
Sample/Sample/obj/Release/GenerateResource.write.1.tlog
^\\ADFE-FS01\FET\USERS\CORKIGN\COMP10068\LABS\LAB5\SAMPLE\SAMPLE\FRMMAIN.RESX|\\ADFE-FS01\FET\USERS\CORKIGN\COMP10068\LABS\LAB5\SAMPLE\SAMPLE\PROPERTIES\RESOURCES.RESX
Sample/Sample/obj/Release/Sample.csproj.FileListAbsolute.txt
C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\test\bin\Release\test.exe C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\test\bin\Release\test.pdb C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\test\obj\Release\ResolveAssemblyReference.cache C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\test\obj\Release\Sample.Properties.Resources.resources C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\test\obj\Release\Sample.csproj.GenerateResource.Cache C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\test\obj\Release\test.exe C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\test\obj\Release\test.pdb C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\test\obj\Release\Sample.frmMain.resources C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\Sample\obj\Release\ResolveAssemblyReference.cache C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\Sample\obj\Release\Sample.frmMain.resources C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\Sample\obj\Release\Sample.Properties.Resources.resources C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\Sample\obj\Release\Sample.csproj.GenerateResource.Cache C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\Sample\bin\Release\Sample.exe C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\Sample\bin\Release\Sample.pdb C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\Sample\obj\Release\Sample.exe C:\Documents and Settings\corkign\Desktop\COMP10068\Solutions\Sample\Sample\obj\Release\Sample.pdb \\Adfe-fs01\FET\users\CORKIGN\COMP10068\Labs\Lab5\Sample\Sample\obj\Release\Sample.exe \\Adfe-fs01\FET\users\CORKIGN\COMP10068\Labs\Lab5\Sample\Sample\obj\Release\Sample.pdb \\Adfe-fs01\FET\users\CORKIGN\COMP10068\Labs\Lab5\Sample\Sample\bin\Release\Sample.exe \\Adfe-fs01\FET\users\CORKIGN\COMP10068\Labs\Lab5\Sample\Sample\bin\Release\Sample.pdb \\Adfe-fs01\FET\users\CORKIGN\COMP10068\Labs\Lab5\Sample\Sample\obj\Release\ResolveAssemblyReference.cache \\Adfe-fs01\FET\users\CORKIGN\COMP10068\Labs\Lab5\Sample\Sample\obj\Release\Sample.frmMain.resources \\Adfe-fs01\FET\users\CORKIGN\COMP10068\Labs\Lab5\Sample\Sample\obj\Release\Sample.Properties.Resources.resources \\Adfe-fs01\FET\users\CORKIGN\COMP10068\Labs\Lab5\Sample\Sample\obj\Release\GenerateResource.read.1.tlog \\Adfe-fs01\FET\users\CORKIGN\COMP10068\Labs\Lab5\Sample\Sample\obj\Release\GenerateResource.write.1.tlog C:\Users\nicholas.corkigian\Desktop\Sample\Sample\bin\Release\Sample.exe C:\Users\nicholas.corkigian\Desktop\Sample\Sample\bin\Release\Sample.pdb C:\Users\nicholas.corkigian\Desktop\Sample\Sample\obj\Release\Sample.csprojResolveAssemblyReference.cache C:\Users\nicholas.corkigian\Desktop\Sample\Sample\obj\Release\Sample.frmMain.resources C:\Users\nicholas.corkigian\Desktop\Sample\Sample\obj\Release\Sample.Properties.Resources.resources C:\Users\nicholas.corkigian\Desktop\Sample\Sample\obj\Release\Sample.csproj.GenerateResource.Cache C:\Users\nicholas.corkigian\Desktop\Sample\Sample\obj\Release\Sample.exe C:\Users\nicholas.corkigian\Desktop\Sample\Sample\obj\Release\Sample.pdb
Sample/Sample/obj/Release/Sample.csproj.GenerateResource.Cache
Sample/Sample/obj/Release/Sample.csprojResolveAssemblyReference.cache
Sample/Sample/obj/Release/Sample.exe
Sample/Sample/obj/Release/Sample.frmMain.resources
Sample/Sample/obj/Release/Sample.pdb
Sample/Sample/obj/Release/Sample.Properties.Resources.resources
Sample/Sample/obj/Release/TempPE/Properties.Resources.Designer.cs.dll
Sample/Sample/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace Sample { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new frmMain()); } } }
Sample/Sample/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Sample")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Mohawk College")] [assembly: AssemblyProduct("Sample")] [assembly: AssemblyCopyright("Copyright © Mohawk College 2010")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("0bbaf342-c78e-4630-92d1-f8dd25b2ca0d")] // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")]
Sample/Sample/Properties/Resources.Designer.cs
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.1 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ namespace Sample.Properties { using System; /// <summary> /// A strongly-typed resource class, for looking up localized strings, etc. /// </summary> // This class was auto-generated by the StronglyTypedResourceBuilder // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { private static global::System.Resources.ResourceManager resourceMan; private static global::System.Globalization.CultureInfo resourceCulture; [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal Resources() { } /// <summary> /// Returns the cached ResourceManager instance used by this class. /// </summary> [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Sample.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; } } /// <summary> /// Overrides the current thread's CurrentUICulture property for all /// resource lookups using this strongly typed resource class. /// </summary> [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } set { resourceCulture = value; } } } }
Sample/Sample/Properties/Resources.resx
text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089Sample/Sample/Properties/Settings.Designer.cs
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.1 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ namespace Sample.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); public static Settings Default { get { return defaultInstance; } } } }
Sample/Sample/Properties/Settings.settings
Sample/Sample/Sample.csproj
Debug AnyCPU 9.0.30729 2.0 {421F2DEC-FC53-49E1-9494-3336B1322736} WinExe Properties Sample Sample v4.0 512 3.5 true full false bin\Debug\ DEBUG;TRACE prompt 4 pdbonly true bin\Release\ TRACE prompt 4 3.5 3.5 3.5 Form frmMain.cs frmMain.cs ResXFileCodeGenerator Resources.Designer.cs Designer True Resources.resx True SettingsSingleFileGenerator Settings.Designer.cs True Settings.settings TrueSample/Sample/Sample.csproj.user
__MACOSX/lab5/Labs/Lab/._Sample.zip
lab5/Labs/Lab/Lab5a.exe
__MACOSX/lab5/Labs/Lab/._Lab5a.exe
lab5/Labs/Lab/Lab5b.exe
__MACOSX/lab5/Labs/Lab/._Lab5b.exe
lab5/Labs/Lab/DoctorWho.txt
DOCTOR|ORDINAL|ACTOR |SERIES|AGE|DEBUT| EPISODE|STORY|SEASON|YEAR|TITLE COMPANION|NAME |ACTOR |DOCTOR|DEBUT| E |137 |22 |1985|Attack of the Cybermen C |Tegan Jovanka |Janet Fielding |4 |115 | E |069 |10 |1973|The Green Death E |259 |9 |2015|Sleep No More C |Adelaide Brooke |Lindsay Duncan |10 |201 | E |122 |19 |1982|Time-Flight C |River Song |Alex Kingston |11 |214a | C |Ace |Sophie Aldred |7 |147 | D | 9|Christopher Eccleston| 1| 41|157| E |143a |23 |1986|The Mysterious Planet E |086 |14 |1976|The Masque of Mandragora E |150 |25 |1988|Silver Nemesis E |070 |11 |1973|The Time Warrior E |143d |23 |1986|The Ultimate Foe C |Jackson Lake |David Morrissey |10 |199 | E |037 |5 |1967|The Tomb of the Cybermen E |035 |4 |1967|The Faceless Ones E |274 |10 |2017|The Eaters of Light E |030 |4 |1966|The Power of the Daleks C |Grace Holloway |Daphne Ashbrook |8 |156 | E |270 |10 |2017|Extremis E |055 |8 |1971|Terror of the Autons E |101 |16 |1978|The Androids of Tara E |113 |18 |1981|Warriors' Gate C |Ian Chesterton |William Russell |1 |001 | E |041 |5 |1968|The Web of Fear C |Adric |Matthew Waterhouse|4 |111 | E |170 |2 |2006|School Reunion E |084 |13 |1976|The Brain of Morbius E |010 |2 |1964|The Dalek Invasion of Earth E |072 |11 |1974|Death to the Daleks E |079 |12 |1975|Revenge of the Cybermen E |016 |2 |1965|The Chase E |026 |3 |1966|The Savages E |028 |4 |1966|The Smugglers E |046 |6 |1968|The Invasion E |040 |5 |1967|The Enemy of the World E |033 |4 |1967|The Moonbase E |014 |2 |1965|The Crusade E |098 |16 |1978|The Ribos Operation C |Sara Kingdom |Jean March |1 |021 | E |208 |5 |2010|Amy's Choice E |256 |9 |2015|The Girl Who Died C |Nyssa |Sarah Sutton |4 |114 | E |039 |5 |1967|The Ice Warriors E |212b |5 |2010|The Big Bang E |164a |1 |2005|The Empty Child E |081 |13 |1975|Planet of Evil E |158 |1 |2005|The End of the World E |123 |20 |1983|Arc of Infinity E |233 |7 |2013|The Rings of Akhaten E |112 |18 |1980|State of Decay E |194 |4 |2008|The Unicorn and the Wasp E |151 |25 |1988|The Greatest Show in the Galaxy C |Astrid Peth |Kylie Minogue |10 |188 | E |145 |24 |1987|Paradise Towers E |007 |1 |1964|The Sensorites E |077 |12 |1975|The Sontaran Experiment C |Rose Tyler |Billie Piper |10 |167 | E |240 |7 |2013|The Day of the Doctor E |227 |7 |2012|Dinosaurs on a Spaceship E |275a |10 |2017|World Enough and Time C |Lady Christina de Souza |Michelle Ryan |10 |200 | C |Tegan Jovanka |Janet Fielding |5 |116 | E |021 |3 |1965|The Daleks' Master Plan C |Kamelion |Gerald Flood |5 |128 | E |164b |1 |2005|The Doctor Dances E |067 |10 |1973|Frontier in Space E |169 |2 |2006|Tooth and Claw E |104 |17 |1979|Destiny of the Daleks E |216 |6 |2011|The Doctor's Wife E |142 |22 |1985|Revelation of the Daleks E |149 |25 |1988|The Happiness Patrol E |135 |21 |1984|The Caves of Androzani E |059 |8 |1971|The D�mons C |Katarina |Adrienne Hill |1 |020 | E |214b |6 |2011|Day of the Moon E |015 |2 |1965|The Space Museum E |018 |3 |1965|Galaxy 4 E |011 |2 |1965|The Rescue E |017 |2 |1965|The Time Meddler E |143b |23 |1986|Mindwarp E |047 |6 |1968|The Krotons E |226 |7 |2012|Asylum of the Daleks E |269 |10 |2017|Oxygen E |120 |19 |1982|Black Orchid E |052 |7 |1970|Doctor Who and the Silurians E |156 |27 |1996|Doctor Who (The Movie) E |180 |3 |2007|The Shakespeare Code E |201 |4 |2009|The Waters of Mars E |178 |3 |2006|The Runaway Bride E |004 |1 |1964|Marco Polo E |209a |5 |2010|The Hungry Earth E |049 |6 |1969|The Space Pirates E |188 |4 |2007|Voyage of the Damned E |048 |6 |1969|The Seeds of Death D | 12|Peter Capaldi | 3| 55|242| E |199 |4 |2008|The Next Doctor E |245 |8 |2014|Listen D | 11|Matt Smith | 3| 27|203| E |065 |10 |1972|The Three Doctors E |106 |17 |1979|The Creature from the Pit E |132 |21 |1984|Frontios E |095 |15 |1977|The Sun Makers E |138 |22 |1985|Vengeance on Varos E |108 |17 |1979|The Horns of Nimon E |140 |22 |1985|The Two Doctors D | 4|Tom Baker | 7| 40|075| E |159 |1 |2005|The Unquiet Dead E |111 |18 |1980|Full Circle E |230 |7 |2012|The Angels Take Manhattan E |126 |20 |1983|Terminus E |162 |1 |2005|The Long Game E |044 |6 |1968|The Dominators E |068 |10 |1973|Planet of the Daleks E |231 |7 |2012|The Snowmen E |193 |4 |2008|The Doctor's Daughter E |102 |16 |1978|The Power of Kroll E |241 |7 |2013|The Time of the Doctor E |141 |22 |1985|Timelash E |144 |24 |1987|Time and the Rani E |073 |11 |1974|The Monster of Peladon E |235 |7 |2013|Hide C |Vislor Turlough |Mark Strickson |5 |125 | E |192b |4 |2008|The Poison Sky E |182b |3 |2007|Evolution of the Daleks C |Rory Williams |Arthur Darvill |11 |207 | C |Liz Shaw |Caroline John |3 |051 | E |036 |4 |1967|The Evil of the Daleks E |191 |4 |2008|Planet of the Ood E |023 |3 |1966|The Ark E |183 |3 |2007|The Lazarus Experiment E |088 |14 |1976|The Deadly Assassin E |228 |7 |2012|A Town Called Mercy C |Rose Tyler |Billie Piper |9 |157 | E |173 |2 |2006|The Idiot's Lantern E |254b |9 |2015|The Witch's Familiar E |171 |2 |2006|The Girl in the Fireplace C |Romana I |Mary Tamm |4 |098 | E |172b |2 |2006|The Age of Steel E |187c |3 |2007|Last of the Time Lords E |200 |4 |2009|Planet of the Dead E |020 |3 |1965|The Myth Makers E |243 |8 |2014|Into the Dalek E |250 |8 |2014|Flatline E |071 |11 |1974|Invasion of the Dinosaurs E |136 |21 |1984|The Twin Dilemma E |124 |20 |1983|Snakedance E |103 |16 |1979|The Armageddon Factor E |008 |1 |1964|The Reign of Terror E |172a |2 |2006|Rise of the Cybermen E |147 |24 |1987|Dragonfire E |080 |13 |1975|Terror of the Zygons E |125 |20 |1983|Mawdryn Undead E |207 |5 |2010|The Vampires of Venice C |Ben Jackson |Michael Craze |1 |027 | E |202 |4 |2009|The End of Time C |Peri Brown |Nicola Bryant |5 |135 | E |051 |7 |1970|Spearhead from Space E |093 |15 |1977|The Invisible Enemy E |117 |19 |1982|Four to Doomsday C |Adric |Matthew Waterhouse|5 |116 | E |019 |3 |1965|Mission to the Unknown C |Sergeant John Benton |John Levene |3 |053 | E |176 |2 |2006|Fear Her E |166b |1 |2005|The Parting of the Ways E |001 |1 |1963|An Unearthly Child E |206a |5 |2010|The Time of Angels E |272 |10 |2017|The Lie of the Land E |129 |20 |1983|The Five Doctors D | 6|Colin Baker | 3| 40|136| E |115 |18 |1981|Logopolis E |273 |10 |2017|Empress of Mars E |085 |13 |1976|The Seeds of Doom E |155 |26 |1989|Survival E |083 |13 |1975|The Android Invasion E |265 |10 |2017|The Pilot E |133 |21 |1984|Resurrection of the Daleks C |K-9 Mark II |John Leeson |4 |098 | E |195a |4 |2008|Silence in the Library C |Victoria Waterfield |Deborah Watling |2 |036 | E |225 |7 |2011|The Doctor, the Widow and the Wardrobe E |229 |7 |2012|The Power of Three E |100 |16 |1978|The Stones of Blood C |Ben Jackson |Michael Craze |2 |030 | C |Bill Potts |Pearl Mackie |12 |265 | D | 10|David Tennant | 3| 34|167| D | 8|Paul McGann | 0| 36|156| C |Wilfred Mott |Bernard Cribbins |10 |202 | E |078 |12 |1975|Genesis of the Daleks E |219 |6 |2011|Let's Kill Hitler E |212a |5 |2010|The Pandorica Opens E |266 |10 |2017|Smile D | 2|Patrick Troughton | 3| 46|030| E |276 |10 |2017|Twice Upon a Time D | 3|Jon Pertwee | 5| 50|051| E |139 |22 |1985|The Mark of the Rani C |Amy Pond |Karen Gillan |11 |203 | E |181 |3 |2007|Gridlock E |087 |14 |1976|The Hand of Fear E |013 |2 |1965|The Web Planet E |174a |2 |2006|The Impossible Planet E |160b |1 |2005|World War Three E |143c |23 |1986|Terror of the Vervoids C |Martha Jones |Freema Agyeman |10 |179 | E |092 |15 |1977|Horror of Fang Rock E |127 |20 |1983|Enlightenment E |154 |26 |1989|The Curse of Fenric E |031 |4 |1966|The Highlanders E |253 |9 |2014|Last Christmas C |Clara Oswald |Jenna Coleman |12 |242 | E |114 |18 |1981|The Keeper of Traken E |204 |5 |2010|The Beast Below E |062 |9 |1972|The Sea Devils E |190 |4 |2008|The Fires of Pompeii E |121 |19 |1982|Earthshock E |089 |14 |1977|The Face of Evil E |148 |25 |1988|Remembrance of the Daleks E |161 |1 |2005|Dalek E |060 |9 |1972|Day of the Daleks E |054 |7 |1970|Inferno E |166a |1 |2005|Bad Wolf E |066 |10 |1973|Carnival of Monsters E |109 |18 |1980|The Leisure Hive E |022 |3 |1966|The Massacre of St Bartholomew's Eve E |167 |2 |2005|The Christmas Invasion E |252b |8 |2014|Death in Heaven E |174b |2 |2006|The Satan Pit E |268 |10 |2017|Knock Knock E |237 |7 |2013|The Crimson Horror E |261 |9 |2015|Heaven Sent E |027 |3 |1966|The War Machines E |157 |1 |2005|Rose C |Craig Owens |James Corden |11 |223 | D | 1|William Hartnell | 4| 55|001| E |160a |1 |2005|Aliens of London E |107 |17 |1979|Nightmare of Eden E |206b |5 |2010|Flesh and Stone E |203 |5 |2010|The Eleventh Hour E |058 |8 |1971|Colony in Space E |195b |4 |2008|Forest of the Dead E |189 |4 |2008|Partners in Crime C |Leela |Louise Jameson |4 |089 | E |012 |2 |1965|The Romans E |094 |15 |1977|Image of the Fendahl E |187b |3 |2007|The Sound of Drums E |002 |1 |1963|The Daleks C |K-9 Mark I |John Leeson |4 |093 | E |209b |5 |2010|Cold Blood E |025 |3 |1966|The Gunfighters E |267 |10 |2017|Thin Ice C |Captain Jack Harkness |John Barrowman |10 |187a | E |238 |7 |2013|Nightmare in Silver C |Sarah Jane Smith |Elisabeth Sladen |4 |075 | E |057 |8 |1971|The Claws of Axos E |254a |9 |2015|The Magician's Apprentice C |Melanie Bush |Bonnie Langford |7 |144 | E |042 |5 |1968|Fury from the Deep E |271 |10 |2017|The Pyramid at the End of the World E |097 |15 |1978|The Invasion of Time E |177b |2 |2006|Doomsday E |234 |7 |2013|Cold War E |005 |1 |1964|The Keys of Marinus E |215 |6 |2011|The Curse of the Black Spot E |091 |14 |1977|The Talons of Weng-Chiang E |165 |1 |2005|Boom Town C |Captain Mike Yates |Richard Franklin |3 |055 | E |257 |9 |2015|The Woman Who Lived C |Zoe Heriot |Wendy Padbury |2 |043 | E |213 |6 |2010|A Christmas Carol C |Nardole |Matt Lucas |12 |264 | E |252a |8 |2014|Dark Water E |063 |9 |1972|The Mutants E |075 |12 |1974|Robot E |244 |8 |2014|Robot of Sherwood E |217b |6 |2011|The Almost People C |Vicki |Maureen O'Brien |1 |011 | E |043 |5 |1968|The Wheel in Space E |003 |1 |1964|The Edge of Destruction E |246 |8 |2014|Time Heist E |119 |19 |1982|The Visitation E |247 |8 |2014|The Caretaker C |Adam Mitchell |Bruno Langley |9 |161 | E |134 |21 |1984|Planet of Fire E |275b |10 |2017|The Doctor Falls E |168 |2 |2006|New Earth D | 5|Peter Davison | 3| 29|116| E |130 |21 |1984|Warriors of the Deep E |110 |18 |1980|Meglos E |131 |21 |1984|The Awakening E |223 |6 |2011|Closing Time E |197 |4 |2008|Turn Left D | 7|Sylvester McCoy | 3| 44|144| C |River Song |Alex Kingston |12 |263 | E |175 |2 |2006|Love & Monsters E |218 |6 |2011|A Good Man Goes to War E |050 |6 |1969|The War Games E |214a |6 |2011|The Impossible Astronaut E |076 |12 |1975|The Ark in Space C |Captain Jack Harkness |John Barrowman |9 |164a | C |Jo Grant |Katy Manning |3 |055 | C |Donna Noble |Catherine Tate |10 |178 | C |Susan Foreman |Carole Ann Ford |1 |001 | E |239 |7 |2013|The Name of the Doctor C |Nyssa |Sarah Sutton |5 |116 | E |090 |14 |1977|The Robots of Death E |179 |3 |2007|Smith and Jones C |Brigadier Lethbridge-Stewart|Nicholas Courtney |5 |125 | E |222 |6 |2011|The God Complex E |009 |2 |1964|Planet of the Giants E |198b |4 |2008|Journey's End E |258a |9 |2015|The Zygon Invasion E |217a |6 |2011|The Rebel Flesh E |210 |5 |2010|Vincent and the Doctor E |211 |5 |2010|The Lodger E |152 |26 |1989|Battlefield E |205 |5 |2010|Victory of the Daleks E |220 |6 |2011|Night Terrors E |146 |24 |1987|Delta and the Bannermen E |186 |3 |2007|Blink C |Melanie Bush |Bonnie Langford |6 |143c | E |248 |8 |2014|Kill the Moon E |096 |15 |1978|Underworld E |224 |6 |2011|The Wedding of River Song E |262 |9 |2015|Hell Bent C |Steven Taylor |Peter Purves |1 |016 | E |099 |16 |1978|The Pirate Planet E |251 |8 |2014|In the Forest of the Night E |258b |9 |2015|The Zygon Inversion E |187a |3 |2007|Utopia E |105 |17 |1979|City of Death C |Brigadier Lethbridge-Stewart|Nicholas Courtney |3 |051 | C |Sarah Jane Smith |Elisabeth Sladen |3 |070 | E |242 |8 |2014|Deep Breath E |024 |3 |1966|The Celestial Toymaker E |221 |6 |2011|The Girl Who Waited E |082 |13 |1975|Pyramids of Mars E |064 |9 |1972|The Time Monster E |232 |7 |2013|The Bells of Saint John E |163 |1 |2005|Father's Day E |116 |19 |1982|Castrovalva E |185a |3 |2007|Human Nature E |182a |3 |2007|Daleks in Manhattan E |236 |7 |2013|Journey to the Centre of the TARDIS C |Clara Oswald |Jenna Coleman |11 |231 | C |Barbara Wright |Jacqueline Hill |1 |001 | E |196 |4 |2008|Midnight C |Peri Brown |Nicola Bryant |6 |136 | C |Sarah Jane Smith |Elisabeth Sladen |10 |198a | C |Jamie McCrimmon |Frazer Hines |2 |031 | E |118 |19 |1982|Kinda E |255a |9 |2015|Under the Lake E |260 |9 |2015|Face the Raven E |056 |8 |1971|The Mind of Evil E |038 |5 |1967|The Abominable Snowmen E |184 |3 |2007|42 C |Romana II |Lalla Ward |4 |104 | E |255b |9 |2015|Before the Flood E |006 |1 |1964|The Aztecs E |034 |4 |1967|The Macra Terror E |074 |11 |1974|Planet of the Spiders E |032 |4 |1967|The Underwater Menace C |Mickey Smith |Noel Clarke |10 |170 | E |128 |20 |1983|The King's Demons C |Polly |Anneke Wills |1 |027 | E |045 |6 |1968|The Mind Robber C |Dodo Chaplet |Jackie Lane |1 |022 | E |263 |9 |2015|The Husbands of River Song E |185b |3 |2007|The Family of Blood E |061 |9 |1972|The Curse of Peladon C |Brigadier Lethbridge-Stewart|Nicholas Courtney |2 |041 | C |Polly |Anneke Wills |2 |030 | C |Harry Sullivan |Ian Marter |4 |075 | E |264 |10 |2016|The Return of Doctor Mysterio E |153 |26 |1989|Ghost Light E |192a |4 |2008|The Sontaran Stratagem E |177a |2 |2006|Army of Ghosts E |249 |8 |2014|Mummy on the Orient Express E |198a |4 |2008|The Stolen Earth E |029 |4 |1966|The Tenth Planet E |053 |7 |1970|The Ambassadors of Death
__MACOSX/lab5/Labs/Lab/._DoctorWho.txt
lab5/Labs/Lab/Faucet.png
__MACOSX/lab5/Labs/Lab/._Faucet.png
__MACOSX/lab5/Labs/._Lab
__MACOSX/lab5/._Labs
lab5/.DS_Store
__MACOSX/lab5/._.DS_Store
lab5/documentation.png
__MACOSX/lab5/._documentation.png
lab5/images/red-gradient.jpg
__MACOSX/lab5/images/._red-gradient.jpg
__MACOSX/lab5/._images
lab5/.vs/slnx.sqlite
lab5/.vs/ProjectSettings.json
{ "CurrentProjectSetting": null }
lab5/.vs/VSWorkspaceState.json
{ "ExpandedNodes": [ "", "\\Labs", "\\Labs\\Lab" ], "SelectedNode": "\\Labs\\Lab\\Sample.zip", "PreviewInSolutionExplorer": false }
lab5/.vs/lab5/v15/.suo
lab5/default.css
/* Style Sheet for Course Pages - Styles cascade from the top down. Only one font is used for the entire site Written by Mark Yendt in October 2004 Modified by Rob Darling December 2004 for Course Page Template Modified by Mark Yendt November 2005 to match "Corporate" Ozone colour scheme and to be CSS complianant against IE 6.0/Netscape 7.0/Mozilla 1.0 */ body {font-family:Arial, Helvetica, sans-serif; font-size:12px; margin-left: .4in; margin-top: .4in; margin-right: .4in; margin-bottom: .4in; } pre {background-color:#999999; border:thin solid #666666; font-size:14px; font-weight:bold; } h1 {color: #B2AA7D; background-color:#00355f; letter-spacing:0.5em; font-size: 24px; padding: 0px 5px 0px 15px; border: thin solid; border-color:#000000; background-image:url(images/red-gradient.jpg); width: 100%; } h2 {color: #B2AA7D; background-color:#00355f; color: #FFFFFF; letter-spacing: 0.5em; font-size: 16px; padding: 0px 5px 0px 15px; border: thin solid; border-color:#000000; background-image:url(images/red-gradient.jpg); } h5 {font-weight:bold; font-size: 14px; } table.main {width:100%; border-color:#00355f; border-width:1px; border-style:solid; margin: 0px 0px 0px 0px; } table.intern {width:100%; border-color:#00355f; border-width:1px; border-style:solid; margin: 0px 0px 0px 0px; } table.header {width:100%; border-color:#00355f; border-width:1px; border-style:solid; margin: 0px 0px 0px 0px; } table {width:100%; border-color:#00355f; border-width:0px; border-style:solid; margin: 0px 0px 0px 0px; } a {font-weight:bold; color:#000080 } .THead {font-weight: bold; font-size: 16px; color: #B2AA7D; background-image:url(images/red-gradient.jpg)} a:visited {color: #B50C00} a:hover {color: #B50C00} a:active {color: #B50C00} td {font-size:12px; border-collapse:collapse; padding:2px; margin: 0px 0px 0px 0px; } .Normal { } .Normal2 {background-color:#E0E0E0; border-width:0px; border-color: #B50C00; } .Normal1 {background-color:#F0F0F0; border-width: 0px; border-color: #B50C00; } .Current {background-color:lightyellow } .Exam {background-color:#ADD8E6 } .Quiz {font-weight: bold; color:yellow; background-color: rgb(255, 0, 0); } .important {color:#FF0000; font:Arial, Helvetica, sans-serif; font-size:14px; font-weight:bold; } tr#grid td {padding-top: 5px; padding-bottom: 5px; }