GetACoder.com

 
 

Home | My Account | Post Job | Browse Jobs | RSS Feeds | Careers New!

 

Data Connected Applications

 
 
     
Job Summary:
 
Job Type: Project
Budget: $ 20-100
Required Skills: Other (Programming), Programming, Visual Basic, Visual Basic .Net
Attached Files: JPEG's.JPG
JPEG's.GIF
 
Status: Work Performed (selected user Sumanta007)
 
Buyer Summary:
 
Username:
ebad050  
Feedback Score: 10.00/1010.00/1010.00/1010.00/1010.00/1010.00/1010.00/1010.00/1010.00/1010.00/10 6 reviews
Award Reliability: 8 posted 6 paid
 
Location: Woodbridge, Virginia, United States
Member Since: January 4, 2010
 
Invited Users:


Description
VB.NET 2007

PLEASE READ BEFORE BIDDING, IMPORTANT: There are a total of five assignments here for which I can afford paying only eighty bucks. Please DO NOT bid more than eighty dollars since I would not be able to pay more. It is also important that you have VB 2007 installed on your system for these assignments; I cannot accept assignments done on 2003. Assignments that may require you to write a paragraph or two please make sure you type it in your own words and not copy paste it from the web since it may get a high similarity score and would be plagiarism. The tables and examples mentioned in the assignments are attached in the JPEG file attached with this assignment. Please read the Additional Notes at the end of each assignment before you start the assignment, use EBAD for file name to save the assignments, e.g. ITP400_IP1_Ebad and ZIP each assignment before submitting to me. I am looking for someone who could help me for about couple years, if this project is done right, I will be asking you to do my other assignments that I post every month. Also if you want you may take until Saturday, March Twenty to complete all five assignments. That’s all and I really appreciate your time. Thank you very much. Happy Bidding!

Unit # 1
For this assignment, you will create a Visual Basic.NET application to schedule campsites. A screen shot of the desired UI is shown in the following image. You can view a running example of the completed project. Please be aware that the example program does not necessarily demonstrate all of the functional requirements, and it is intended only as an example. You are responsible for meeting the listed requirements. Please refer to the following information for the complete requirements.
Minimum Requirements:
• Create a form with the following objects labeled appropriately:
o Start Date (date/time picker)
o End Date (date/time picker)
o Campsite Type (radio buttons for Basic, Intermediate, Best)
o Electric Required? (check box)
o Daily Rate (read-only text box, formatted as currency)
o Number of Days (read-only text box)
o Subtotal (read-only text box, formatted as currency)
o Electricity surcharge (read-only text box, formatted as currency)
o Total (read-only text box, formatted as currency)
o Calculate button (initiates calculations)
o Reset button (sets all fields back to original values)
o Exit button with confirmation from the user
• Site charges
o Basic = \\/day
o Intermediate = \\/day
o Best = \\/day
• Daily rate will display the previously mentioned values depending on which site type is selected.
• Number of Days will display difference (in days) between the Start and End Dates (hint, use DateDiff function for this calculation).
• Subtotal is the site charge multiplied by the daily rate.
• Electricity charge is \\ additional per day if selected.
• Total is subtotal + electricity charge.
• Read-only fields should only be updated when either the calculation or reset button is pressed. Do not use content update event handlers for these updates.
• Do not allow the user to resize the form.
• Remove minimize, maximize, and close buttons from the title bar.
Additional Notes
• Name your project and set the title of your form (the Text property of the main form) to ITP400_IP1_Ebad.
• Make sure you fulfill the minimum requirements before attempting advanced features.
• Be sure to include good comments in your code.
• Name your objects, variables, functions, and others with appropriate and consistent names.
• Your form(s) should be designed attractively and consistently.
• Zip all your project files together and submit your assignment to your instructor.

Unit # 2
For this assignment, you will create a Visual Basic.NET application to manage your music collection. A screen shot of the desired UI is shown in the attached image file. You can also download a running example of the completed project and the required database, ITP400_IP2_B.mdb. Please be aware that the example picture does not necessarily demonstrate all of the functional requirements, and it is intended only as an example. You are responsible for meeting the listed requirements. Please refer to the following information for the complete requirements.
Minimum Requirements:
• tblAlbums Fields (These are in the database table and should be displayed on the screen.)
o fldAlbumID, long integer, primary key
o fldAlbumName, string
o fldArtist, string
o fldDatePurchased, datetime
o fldCost, single
• Perform the appropriate steps to create a connection to the sample database. Be sure to select the option to copy the database to your project so it will be automatically included in the project.
• Perform the appropriate steps to display the detail view of the fields on your form. Be sure to include a functional BindingNavigator on your form.
• Do not allow the user to resize the form.
• Format the Cost field as currency.
• Add a standard pull-down menu to the program with the following structure:
o File (Save, Exit)
o Navigate (First Record, Previous Record, Next Record, Last Record)
Additional Notes
• Name your project and set the title of your form (the Text property of the main form) to ITP400_IP2_Ebad.
• Make sure you fulfill the minimum requirements before attempting advanced features.
• Be sure to include good comments in your code.
• Name your objects, variables, functions, and others with appropriate and consistent names.
• Your form(s) should be designed attractively and consistently.
• Zip all your project files together and submit your assignment to your instructor.

Unit # 3
For this assignment, you will create a Visual Basic.NET application based on the skills and concepts used in IP2. In this exercise, you will create a solution that works with two tables having a Master/Detail relationship. The first table contains music category records, and the second table contains album detail records for each category.
A screen shot of the desired UI is shown in the following image. You can also view the example picture of the completed project attached. Please be aware that the example program does not necessarily demonstrate all of the functional requirements, and it is intended only as an example. You are responsible for meeting the listed requirements. Please refer to the following information for the complete requirements.
Requirements
For this project you will use the following database schema, which has two tables.
Table 1 and 2 are attached within the Jpeg file
• The input form contains a ListBox and a DataGrid control. Select album categories in the list box and then the corresponding album information appears in the DataGrid. As you select different categories, the total costs are recalculated for the selected category and displayed in a label on your form, formatted as currency.
• Configure the form so it appears on the center of the desktop when the solution is run.
• Do not allow the user to resize the form.
• Remove minimize, maximize, and close buttons from the title bar
• Perform the appropriate steps to create a connection to the sample database. Be sure to select the option to copy the database to your project so it will be automatically included in the project.
• Create an instance of the ListBox control. Set the necessary properties so that the ListBox control will display the field fldCategoryDesc.
• Create an instance of the DataGrid control on the form. Configure the DataGrid control instance so it displays records from the table named tblAlbums, but only for those records matching the selected category shown in the list box.
• Format the DataGrid so the column header names are the same as the ones shown in the Figure. Set appropriate column widths, and format the cost column as currency, right justified. The date column should also be right justified.
• Write the necessary code to calculate the total cost of the displayed albums. Display the results in a Label control above the cost column of the DataGrid. Format the output as currency. Right-justify the output in the Label control instance.
• Create an Update button that will allow the user to save any changes made to the DataGrid back to the database. Write the necessary code for the button. Allow the user to add, change, and delete records in the Album table.
• Create an Exit button for the solution. In the Click event handler for the button, display a message box to get confirmation from the user before exiting the solution.
Enhancements (optional to achieve maximum points)
• Add a basic help system to your application.
Additional Notes
• Name your project and set the title of your form (the Text property of the main form) to ITP400_IP3_Ebad.
• Make sure you fulfill the minimum requirements before attempting advanced features.
• Be sure to include good comments in your code. Name your objects, variables, functions, and others with appropriate and consistent names.
• Your form(s) should be designed attractively and consistently.
• Zip all your project files together and submit your assignment to your instructor via the drop box.

Unit # 4
The project is designed to draw together many of the concepts you are learning in this course.
For this assignment, you will create a Visual Basic.NET application for a pet store. Please refer to the following information for the complete requirements.
Project Deliverables
• A Visual Basic.NET program meeting the minimum program requirements indicated in the assignment description. This will be the deliverable.
• A 1 page written summary of the project meeting the project summary requirements in the assignment description.
Your assignment should meet the following requirements:
• Incorporate ADO.NET access to at least three Microsoft Access data tables. These tables should include Customers, Products (the kinds of products offered, cost, sales price, and quantity on hand), and Sales information (a combination of customer and product with a date and other pertinent information).
• Use at least three user input forms that allow the user to add, edit, and delete records in the database. The sales screen should allow you to select a customer and a product from a dropdown list box.
• One screen should allow the user to see a list of all products sold to a specific customer, sorted by date. The customer that the data is displayed for should be selectable from a list box. Consider this to be a report screen.
• Include Structured Error Handling in appropriate places in the program.
• Create a nice, intuitive user interface with a full menu structure.
• Add a form that includes the RichTextBox control and several predefined template letters. This part of the program would be used to write letters to your customers when there is a specific issue you would like to address with them, so use your imagination here.
• Be sure to document the programming, designs, the preliminary specifications, and system requirements. This documentation should be in the form of an MS Word document and additional comments in the source code.
Write a summary for the project that includes the following minimum points.
• The summary should be 1 page, well-formatted, and 12-point font in MS Word format.
• The summary should address the following:
o a description of the general design and operation of the program
o a summary of what you learned, technically, from the project
o a self-assessment of the project
Additional Notes
• Name your project and set the title of your form (the Text property of the main form) to ITP400_GP_Ebad.
• Make sure you address all the requirements.
• Be sure to include good comments in your code.
• Name your objects, variables, functions, and others with appropriate and consistent names.
• Your form(s) should be designed attractively and consistently.
• Zip all your project files together and submit your assignment to your instructor.

Unit # 5
Create a ClickOnce web deployment for your completed Unit #1 application. Be sure to select the web type of deployment.
Additional Notes
• Pay close attention to the location of your deployment files so you can locate, ZIP, and submit them for grading.
• Be sure to test your installation before submitting it for a grade.
• Zip all your deployment files together and submit your assignment.


Additional information: Submitted on 03/20/2010 at 20:13 EDT

I meant you may take until Saturday March Twenty Seventh to complete the assignments. Thanks.




Reminder
You may not start working in this and any request before your bid is accepted. Users who violate this policy may have their accounts permanently suspended.



 Bids Received (3)   Shortlist (0)   Declined Bids (0)   
Average bid amount:   $66.67   Average delivery time:   5 Day(s)
Place Bid | Post Similar Job | Send Request | Contact ebad050

Order by:

 

Remember that contacting the other party outside the site (by email, phone, etc.) on all business jobs (before the request is awarded) is a violation of our terms of use. We supervise all site activity for such infringements and can immediately expel transgressors on the spot, so we thank you in advance for your cooperation. If you notice a violation please help out the site and report it. Thank you for your help.
 

 
send private message
 
Premium User  
Sumanta007  
kolkata, IN
location
US$80
bid amount

9.65/109.65/109.65/109.65/109.65/109.65/109.65/109.65/109.65/109.65/10
(54 reviews)

feedback
7 day(s)
delivery time

 
 
It will be done within timeframe.Thanks SM
Bid Time: 03-21-2010 10:22
 
send private message
Shortlist
Decline Bid
Premium User  
cipvtl  
New Delhi, IN
location
US$100
bid amount

9.42/109.42/109.42/109.42/109.42/109.42/109.42/109.42/109.42/109.42/10
(19 reviews)

feedback
3 day(s)
delivery time

 
 
Hi - We have review your requirements and we can deliver the same with full satisfaction. Please PM for more discussion. Thanks, ad
Bid Time: 03-21-2010 05:00
 
send private message
Shortlist
Decline Bid
mindblowing  
Lahore, PK
location
US$20
bid amount

1.00/101.00/101.00/101.00/101.00/101.00/101.00/101.00/101.00/101.00/10
(1 reviews)

feedback
4 day(s)
delivery time

 
 
I have read the requirement of the project very well & ready to work on it & I assure you that I will deliver you a professional quality for your need, you will get the desired result from me. I hope i will hear from you soon. THANKS....
Bid Time: 03-21-2010 04:43
 
 


 
Get the Free Step-by-Step Guide on How to Use GetACoder
The act of outsourcing jobs has become easy in the past few years thanks to GetACoder. However, our team aims at making the whole process even easier. So, it has now come the time to provide you with a step-by-step guidance on how to use this service and succeed in the outsourcing world totally for FREE.

It doesn't matter if you are a more experienced user or a novice; using GetACoder will become even simpler with the help of this E-book. There are two major sections: a Buyers section and a Coders section.

Buyers will learn:
  • How to outsource safely
  • How to pick the best freelancers
  • How to manage time and money

Coders will learn:

  • How to get the best jobs
  • How to secure their payments
  • How to build a long-lasting relationship with buyers

    ...and MUCH MORE
Clear examples and pictures illustrating key situations, great tips and real testimonies of some of our best users... all in this Outsourcing Guide.  So don't loose the outstanding opportunity to download GetACoder FREE E-book.
The Outsourcing Revolution: Why It Makes Sense and How to Do It Right
The Outsourcing Revolution: Why It Makes Sense and How to Do It Right
What is GetACoder?

GetACoder.comGetACoder is a leading Global Services Marketplace doing business in more than 200 countries. Our unique system accelerates your time to market and provides your business with key competitive advantages. When you use GetACoder you are stretching your budget and saving as much as 60% over traditional outsourcing. GetACoder is changing business, now it's no longer about what you own or build but which resources and talent you can access. With GetACoder you reduce expenses, increase efficiencies, aggressively grow your business, and create a sustainable competitive advantage. GetACoder makes outsourcing to any part of the world an easy task! With GetACoder it's simple to outsource any business request, gain access to global talent and manage jobs online.

One of the main advantages of GetACoder is the low labor cost. The typically rates are about seven times lower than the ones in the US or Europe. Posting a request at GetACoder allows the right professional or company to find you and to bid for your work. We are building a reputation for exceeding our customers' expectations and for becoming an extremely cost effective way to outsource work. Use GetACoder when you want to save money, increase efficiency or accelerate the development of your request. With GetACoder you focus on growing your business and let others do the tedious work. Post your request on GetACoder for free. Find out why people outsource jobs with us day after day.

Thousands of Satisfied Customers - Submit/View Quotes


-GetACoder is very nice site for online jobs. - mdsohelman
-GetACoder is a leading site in the world nowadays, where programmers are earning a lot. Thanks GetACoder, keep it up. - homesoft
-This is a great site for small entrepreneurs for lead generation and business handle. - rajeevglobus007
Report Violation    Privacy Policy     Affiliate Program    Terms of Use    Contact Us    Help      GetACoder.com on Facebook      Follow GetACoder on Twitter      GetACoder.com Latest Requests RSS Feed
© 2004-2012 GetACoder. All rights reserved.