urgent help plz read

Please support our C++ advertiser: Programming Forums - DaniWeb Sister Site
Reply

Join Date: Jul 2009
Posts: 13
Reputation: umair125 has a little shameless behaviour in the past 
Solved Threads: 0
umair125 umair125 is offline Offline
Newbie Poster

urgent help plz read

 
-1
  #1
Jul 8th, 2009
i am doing bscs from GCU lahore PK.i have assigned a project name as MOVIE RENTAL STORE using OOP concepts plz help me to do my project

i,ll b thankful to you,

umair ahmad
Reply With Quote Quick reply to this message  
Join Date: Oct 2008
Posts: 2,721
Reputation: adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of 
Solved Threads: 501
Moderator
adatapost's Avatar
adatapost adatapost is offline Offline
Posting Maven

Re: urgent help plz read

 
0
  #2
Jul 8th, 2009
Welcome umair125,

We are willing to help you. Please read the rules at daniweb.

1.
Title of post must be a short description of your question.
---- Do not use "urgent help plz read".
2.
How to use bb code tag?
A guideline to use message editor.
3.
Homework rule.
Reply With Quote Quick reply to this message  
Join Date: Aug 2008
Posts: 151
Reputation: monkey_king is on a distinguished road 
Solved Threads: 8
monkey_king monkey_king is offline Offline
Junior Poster

Re: urgent help plz read

 
0
  #3
Jul 8th, 2009
Hi omir
People are normally quite friendly inhere,
but you should ask a specific question.

good luck
Reply With Quote Quick reply to this message  
Join Date: May 2006
Posts: 1,867
Reputation: ithelp is a name known to all ithelp is a name known to all ithelp is a name known to all ithelp is a name known to all ithelp is a name known to all ithelp is a name known to all 
Solved Threads: 120
ithelp's Avatar
ithelp ithelp is offline Offline
Posting Virtuoso

Re: urgent help plz read

 
0
  #4
Jul 8th, 2009
Store and Movie are concepts, rent a movie is the action , now give it a start.
Last edited by ithelp; Jul 8th, 2009 at 5:14 am.
Reply With Quote Quick reply to this message  
Join Date: Jul 2009
Posts: 13
Reputation: umair125 has a little shameless behaviour in the past 
Solved Threads: 0
umair125 umair125 is offline Offline
Newbie Poster

Re: urgent help plz read

 
0
  #5
Jul 8th, 2009
Originally Posted by monkey_king View Post
Hi omir
People are normally quite friendly inhere,
but you should ask a specific question.

good luck
thanks for replaying,

i mean i want to create 2 classes movie and customer and i have the functions add movie , view movie list ,delete movie, get a movie these functions are also in customers class like ass custommers....

what should i do first plz help me
Reply With Quote Quick reply to this message  
Join Date: Feb 2009
Posts: 1,970
Reputation: tux4life has a reputation beyond repute tux4life has a reputation beyond repute tux4life has a reputation beyond repute tux4life has a reputation beyond repute tux4life has a reputation beyond repute tux4life has a reputation beyond repute tux4life has a reputation beyond repute tux4life has a reputation beyond repute tux4life has a reputation beyond repute tux4life has a reputation beyond repute tux4life has a reputation beyond repute 
Solved Threads: 214
tux4life's Avatar
tux4life tux4life is offline Offline
Posting Virtuoso

Re: urgent help plz read

 
0
  #6
Jul 8th, 2009
>what should i do first plz help me
Begin creating one of the classes, no matter which one you start with.
Do you know how a class skeleton looks like?
If no, then I would like to suggest you to read your text book first.
Otherwise, give it a shot and post what you've come up with.
"Never argue with idiots, they just drag you down to their level and then beat you with experience."
Reply With Quote Quick reply to this message  
Join Date: Oct 2008
Posts: 2,721
Reputation: adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of 
Solved Threads: 501
Moderator
adatapost's Avatar
adatapost adatapost is offline Offline
Posting Maven

Re: urgent help plz read

 
0
  #7
Jul 8th, 2009
Create Movie, MovieCollection,Customer, RentRegister classes.

Movie class represents a single record of movie.
  1. class Movie {
  2. string title;
  3. string .....
  4.  
  5. public :
  6. constructors
  7. setter/getter methods
  8. };

MovieCollection is a list of Movie object - which include methods like
AddMovie, RemoveMovie, List, etc.

Customer class has fields like - name,address, phone etc.

RentRegister is a list of Rent record and it might includes:
  1. class RentRegister {
  2. Customer *customer;
  3. Movie *movie;
  4. string date;
  5. .....
  6. public :
  7. Issue();
  8. Remove();
  9. Return();
  10. ......
  11. }
Reply With Quote Quick reply to this message  
Join Date: Jul 2009
Posts: 13
Reputation: umair125 has a little shameless behaviour in the past 
Solved Threads: 0
umair125 umair125 is offline Offline
Newbie Poster

need a code

 
0
  #8
Jul 9th, 2009
hi friends i need a MOVIE RENTAL SHOP code using OOP concepts plz help me
Reply With Quote Quick reply to this message  
Join Date: Jul 2007
Posts: 489
Reputation: shadwickman will become famous soon enough shadwickman will become famous soon enough 
Solved Threads: 76
shadwickman's Avatar
shadwickman shadwickman is offline Offline
Posting Pro in Training

Re: need a code

 
0
  #9
Jul 9th, 2009
So... what have you tried so far? You need to show effort as we're not some sort of request forum that just whips up all the code for you. Post what code you have so far, specifics of what you need help with, etc. Then I'll consider helping you.
"Two good old boys in a fire-apple red convertible. Stoned. Ripped. Twisted. Good people."
- Hunter S. Thompson

my photography
Reply With Quote Quick reply to this message  
Join Date: Jul 2009
Posts: 13
Reputation: umair125 has a little shameless behaviour in the past 
Solved Threads: 0
umair125 umair125 is offline Offline
Newbie Poster

Re: need a code

 
-2
  #10
Jul 9th, 2009
Originally Posted by shadwickman View Post
So... what have you tried so far? You need to show effort as we're not some sort of request forum that just whips up all the code for you. Post what code you have so far, specifics of what you need help with, etc. Then I'll consider helping you.
dont be so rude
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:




Views: 515 | Replies: 14
Thread Tools Search this Thread



Tag cloud for C++
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC