Open main menu

CDOT Wiki β

Changes

BTP300 Practical Tips 2012

2,129 bytes added, 10:41, 19 October 2012
A2 Release 0.1 (the CFrame class)
Share useful information that can help all groups with their projects.
==Pair Programming ==* a story about pair programming and job interview (Sept. 10, 2012) [http://www.itworld.com/it-managementstrategy/294183/programmers-wanted-week-long-audition-required]**read the comments as well<pre>"Before hiring a new developer, they want to know that a candidate is bothtechnically proficient and a good personality fit for the 28 person company."</pre>* pair programming and music (October 11, 2012) [http://www.itworld.com/it-managementstrategy/302501/9-songs-never-ever-pair-program?source=ITWNLE_nlt_top10_2012-10-19] == [[Using the SVN Tool for A2 | Using SVN and Collaboration Requirements]] == == A1 ==* demo: executable code (BORLAND) about the display and edit functions [https://scs.senecac.on.ca/~peter.liu/a1test_editBORLAND.exe]* [[A1 Demo Code Snippet | code snippet for the demo]]* debugging help == A2 Release 0.1 (the CFrame class) ==*Download and run the executable code. [https://scs.senecac.on.ca/~peter.liu/btp300/a2test_1_cframeBORLAND.exe]** Try the following key presses: F6, move the arrow keys, ESC, F7, move the arrow keys, ESC.** Repeat the above sequence of key presses a few times.*'''Inspect the source code''' of testFrame( ) in a2test.cpp.*Write up a list of all the source files that you need to compile the code. (For example, cfg.h, iframe.h, consolebackup.cpp, cframe.h, cframe.cpp,...)*command line on Borland:<br><pre>bcc32 a2test.cpp cframe.cpp consolelineedit.cpp consolebackup.cpp console.cpp</pre>*READ the problem description for A2 Release 0.1.*Run the VS executables on the course website [https://scs.senecac.on.ca/~btp300/pages/assignments/index.html]. == A2 Release 0.2 ==*Download and run the executable code.** CLabel [https://scs.senecac.on.ca/~peter.liu/btp300/a2_test_labelsBORLAND.exe]*** [[testLabelsOnly | code snippet]]** CLine [https://scs.senecac.on.ca/~peter.liu/btp300/a2_test_clineBORLAND.exe]*** [[testLineEditOnly | code snippet]]** CButton [https://scs.senecac.on.ca/~peter.liu/btp300/a2_test_buttonsBORLAND.exe]*** [[testButtonOnly | code snippet]]*Run the VS executables on the course website.   ==A2: Useful Pseudo Code (Dr. Chris Szalwinski) ==
This is one way to design some of your classes. Other ways are also possible. The instance variable and pointer names are left to your discretion. Not all methods and functions are included. The simpler ones are omitted.
===CFrame===
==Useful Diagrams==
==Useful links around the Links On The Web==
==Useful code snippetsCode Snippets==
1
edit