Amount
Status
Question
Due Date
$40.00
Closed
Oct 31, 2012 at 10:18:06 am
$20.00
Closed
Sep 16, 2012 at 3:38:57 pm
1. Complete the following programming exercise (SIMPLE TEXT EDITOR WITH ONE LARGE RICH TEXT BOX). You will use the OpenFileDialog, StreamReader and StreamWriter objects; the Close, Peek, ReadLine, ShowDialog and WriteLine methods.
Create a simple text editor that has one large rich text box (with its Multiline property set to true). Set the text control to fill the form and set its Anchor property to all four edges so that the control fills the form even when it is resized.
Allow the user to save the contents of the text box in a data file and load a data file into the text box using the Open File dialog box.
Use a StreamWriter and StreamReader or File.WriteAllText and File. ReadAllText.
Make sure you close your project when complete. Make a copy of the project folder, compress it to a single file, and submit it.
2. Complete the following programming exercise (WRITE AN MDI PROJECT THAT IS A SIMPLE TEXT EDITOR). You will use the IsMdiContainer and MdiWindowListItem properties; the LayoutMdi method. Refer back to the previous required assignment from Lesson K08-5 (SIMPLE TEXT EDITOR WITH ONE LARGE RICH TEXT BOX) as a base for this assignment.
Write an MDI application that is a simple text editor. Allow the user to open multiple documents, each in a separate child form. For the text editor, use one big TextBox control with its Multiline property set to true or a RichTextBox control. Set the control's Anchor property to all four edges so the control fills its form.
The main form should have an Open menu item to open previously saved files; the child forms should have a Save menu item to save their text to a file. Use the file handling that you learned and display the name of the file in the form's title bar.
Make sure you close your project when complete. Make a copy of the project folder, compress it to a single file, and submit it.
$1.00
Closed
Sep 16, 2012 at 3:52:15 am
1-) C++ Overview and Software Development.
You may use any diagram as long as you cite it. (Up to two pages)
2-) Understanding Scientific approach and C++. In other words, how is C++ is being used as scientific approach to solve problems especially in the Engineering fields. (Up to two pages)
$1000.00
Closed
Apr 22, 2012 at 1:19:43 pm
The objective of this individual project is to create a complete C# Windows application and design documents based on the following specifications and instructions.
Calculate and display a letter grade for each student.
Clearly identify which methods you choose to include in the project (filling arrays from textboxes, populating the Listbox from the array, clearing the form, resetting the form, calculating the average, etc.)?
Your solution must include the following:
•A array or arrays (single or multidimensional)
•The following parts in addition to the complete source code:
?A problem analysis chart with sections for given information, required results, processing required to obtain the results, and solution alternatives
A flowchart showing the program processing flow
?A chart showing input, output, and processing
?An algorithm in pseudo code describing the steps the program will perform
•A simple user manual that explains how to use your application
•A brief description of any challenges you encountered including compilation errors, logic errors, or runtime errors that you had to resolve