First ever project

hi i m hasan,
i am just about to create my first ever project. i have to create a program for a cyber cafe. i have taken all the detail of the requirement from the cyber cafe. i will be creating it using Java Swing. now how should i start working on the project. should i need to create flow charts and algorithm and any other requirement... ? plz tell me what i should and what i should not do before starting to write the program.

It sounds to me like this is for a class project, if so, please follow the requirements you instructor has given you for application development.

Similar Messages

  • Why do the photos in my first InDesign project  look really bad?

    Why do the photos in my first InDesign project look really bad? Noticed as I "placed" them, some PDFs or JPEGs (not photos, but PDFs converted to JPEG) looked pretty distorted. Went ahead with the 60+ page project, converted to PDF, sent to client. He converted to a flipbook to proof and really didn't like the photos. Here's the irony. Upgraded to InDesign for this client. Was using Publisher as a standby until I could afford InDesign. Signed up with the Creative Cloud because job was overwhelming Publisher.
    I started the job without a whole lot of knowledge (or patience for the tutorials) and figured I just wing it (and get InDesign for Dummies). Am thinking somethingw as screwed up in the initial setting up of the job. So how do I figure out if this is the issue and can I fix it without redoing all 60+ pages. If anybody has an answer, please let me know.

    helpmemama wrote:
    Why do the photos in my first InDesign project look really bad? Noticed as I "placed" them, some PDFs or JPEGs (not photos, but PDFs converted to JPEG) looked pretty distorted. Went ahead with the 60+ page project, converted to PDF, sent to client. He converted to a flipbook to proof and really didn't like the photos. Here's the irony. Upgraded to InDesign for this client. Was using Publisher as a standby until I could afford InDesign. Signed up with the Creative Cloud because job was overwhelming Publisher.
    I started the job without a whole lot of knowledge (or patience for the tutorials) and figured I just wing it (and get InDesign for Dummies). Am thinking somethingw as screwed up in the initial setting up of the job. So how do I figure out if this is the issue and can I fix it without redoing all 60+ pages. If anybody has an answer, please let me know.
    Ok, first image on your indesign page or any other program for that matter are still images, they are no longer pdf's, jpg's, psd's, etc. Once they load into a program, the file format is no longer relevant until you save again. Onl;y on your drive is the format relavent.
    Second, if you can help it, never use jpg's until you are completely done and will be sharing a jpg. Jpg's are a lossy format are are not the best for preserving quality on your drive. Each time you open a jpg, and save a jpg more data is lost, as that is how that format compresses the data, by throwing it way for ever.
    Third, the problem may not even be with you, it could happen when that person created a flipbook. That is an unknown varible, one which could make you look bad when it had nothing to do with you.
    Fourth, Pay attention to the pixel dimentions of your images, the higher those values are the better the quality. Scaling can and probably will reduce that quality. If you can, it is better to hide parts of the image by cropping with a frame than it is to scale the image. you can scale, but pay attention to it.
    I will stop there for now, as some of what I wrote is based on assumtions. That normally does not work out too well.

  • First ever post..how does java interface an appl

    Here is my problem...
    I am trying to write a Java application that will allow me to track mouse movements, clicks, obtain urls, and other browser tracking data. I have searched forums enlessly and cant find the answer to my question. This is my first ever post dont let me down : )
    1. How do I get a java application to retrieve, get or load an interface to ie or netscape that I can use their functions and retrieve information.
    I need this for a school project and although there other ways maybe more suited, applet, script or whatever, this is my task. I have searched and cant find what the mechanics are for how java is to interface and use an application.
    thanks...

    I was excited to get a reponse...
    I understand an applet runs in a browser and application runs independently. But say I want my java application program to interact with an application such as a browser. I want to grab data from it, such as mouse clicks and urls.
    What I havent seen is how to do this. I am told that in C programing a dll would be loaded and imported functions could be called from within the C program, is there anything like this in java. How do I use an the ie or navigator API with Java?
    thanks...

  • Hi everyone, I was wondering if someone can help me.  I recently got my first ever Ipod.  It's the new Ipod Nano 7th Generation.  I have tried to synchronise it with Itunes but it says "Connected, Eject before Disconnecting" but nothing happens.

    Hi everyone, I was wondering if someone can help me.  I recently got my first ever Ipod.  It's the new Ipod Nano 7th Generation.  I have tried to synchronise it with Itunes but it says "Connected, Eject before Disconnecting" but nothing happens.  I have tried uninstalling & re-installing Itunes but this didnt help. 
    Does anyone have any ideas? 
    Thanks for your help.

    I think the problem is that the iPod got set to Manually manage music and videos.  It needs to be set up for automatic syncing again.  Just unchecking that Manually manage music and videos setting does not do it.
    In iTunes 12, select the iPod in iTunes (using the device button), so that you see the iPod's "management" screen.  In the sidebar (along left side of screen), there are two headings (Settings and On My Device).  Under Settings, click on Music.  To the right, you see the iPod's Music screen, where you tell iTunes how to sync songs to the iPod.
    Check the box at the top for Sync Music.  That turns ON automatic syncing for music.  Below that, choose the option to sync Entire music library (assuming your music library fits completely on your iPod).  Otherwise, you can choose the option to sync Selected playlists, artists, albums, and genres and make your selections below.  Then click Apply.

  • Need Help in Inserting first ever record

    I need help in inserting my first ever record from an OAF page.
    I've created an AM 'MasterAM', added 'MasterVO' to it. Created a Page CreatePG which has a submit button, id = Apply
    Below is processRequest of CreateCo
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    if (!pageContext.isFormSubmission()) {
    am.invokeMethod("createRecord", null);
    and below is processFormRequest
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    if (pageContext.getParameter("Apply") != null)
    OAViewObject vo = (OAViewObject)am.findViewObject("MasterVO1");
    am.invokeMethod("apply");
    pageContext.forwardImmediately("OA.jsp?page=/abcd/oracle/apps/per/selfservice/xxdemo/webui/CreatePG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    Below are 'createRecord' and 'apply' in MasterAMImpl
    public void createRecord(){
    OAViewObject vo = (OAViewObject)getMasterVO1();
    if (!vo.isPreparedForExecution()) {
    vo.executeQuery();
    Row row = vo.createRow();
    vo.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    public void apply() {
    getTransaction().commit();
    When I run the page, it opens and I try to enter some data and press Apply. it does not insert into the table.
    Could anyone help me out.
    My jdeveloper version is 10.1.3.3.0.3

    I am facing the same issue.
    rows get inserted into the tbale, but only whol columns have the data.
    all the attributes are correctly mapped to view instance and view attribute.
    My VO has 1 EO and , i have joined another table to get desctriptions of the field.
    could that be the problem ?
    ex :
    select item , desc
    from t , master
    where t.cola=master.colb
    table t is the custom table I want the data to go in. but only who columns appear after commiting.
    any clues ?

  • First Java Project - Document Management and Workflow

    We are about to embark on our first java project around document management and workflow.
    I would be interested to know how others have approached similar projects – Open Source applications or other tools/APIs.
    It would also be good to know of any issues encountered along the way.
    Thanks,
    Steve

    Hi Husein,
    I appreciate your interest in procuring a Document Management/Workflow solution for your AP department...its a very smart move toward streamling that process!
    I sent an email today to Richard Braddock about our solutions. I would be happy to discuss them with you.
    My office phone number is 215-646-8000
    -Martin

  • Help please!!! first ever mac. Photos are there but can't see them

    Please help got mac last week and promptly put all photos into iphoto 8 also uploaded new photos from holiday which created a few events based on dates.
    As we went with friends i created a new event and dragged the pictures involving them into the new event folder which i had named. Then i went to burn them to a disc and they all dissappeared, but they didn't really, all the thumbnails are white i have found them going through finder and search for the file name i can see the picture, well both because it has obviously copied them, and if i drag the new event out of iphoto the pictures appear but the folder doesn't drag to the desktop.
    I really don't know what to do. I have tried a few of the various answers to similar posts but nothing is working, i really would like these photos as i was the only one who took a camera, and i think i said this is my first ever mac so just getting used to how different it is.

    Hammie
    Welcome to the Apple user discussion forums and to the Mac
    1 - the first rule is never, never, never mess with your iPhoto library using the finder or any program except iPhoto (or one that is fully iPhoto aware like iphoto Library Manager - http://www.fatcatsoftware.com/iplm/ )
    dragged the pictures involving them into the new event folder which i had named.
    Did you do this in iPhoto or in the finder?
    Have you tried rebuilding your iPhoto library - launch iPhoto while depressing the option (alt) and command (apple) keys and rebuild the library and thumbnails
    LN

  • First Motion Project

    I'm about to start on my first motion project, which is going to be a three minute segment set to music with some video and images, which I'm going to add as a chapter to a DVD.
    My question is, can I create the whole three minute as one motion project or will the file size me huge?
    Apologies for what must seem like a really dumb question!
    Peter

    hi,
    Peter is right, 3 mins is a very long time for a motion project. depending on the complexity of the project i doubt whether you would be able to view the whole project back in real time. I even have trouble sometimes on much shorter projects to playback in real time even when it is rendered. In this case you have to export as a movie and watch it. very tedious.
    It would be better to plan out what you want to achive and to break it into segments. Cut the video and images to the track in FCP. If you need to treat specific shots you could export them to motion, play around and then bring it back in to FCP. or if you need generalised imagery to be created in motion, try to create shorter bits and comp then in fcp.
    Every job can have a different workflow, so try it first and see what happens.
    good luck
    adam

  • First J2ME Project

    Hi,
    I am quite new to J2ME.
    I am about to do my first J2ME project and need all possible help from you'll.
    The project is about Property Management - Conditional Survey.
    The Managing Agent would visit the property site and do a survey of the property.
    The Agent would be having a mobile device using which he should be able to connect to the database located at his Head Office(HO).
    Using the User Interface displayed on his/her mobile device he should be able to retrieve information, Add/Update/Delete information about his property survey which would update the database located at the HO.
    This is all the information that I have regarding the functional requirements.
    Regarding the tools as off now this is the info I have :
    1) The database would be Oracle
    2) Eclipse IDE.
    3) What is a suitable Mobile Device / Emulator for such a project ?
    4) What other tools would I need ?
    If anyone has worked on a similar requirement before please point me to suitable links for more information and similar sample projects.
    Please share your experience and difficulties that you might have faced while doing the project.
    Your help would be much appreciated. Thanks in advance
    Regards,
    Paresh

    Take a look at jsr--179
    http://mobilezoo.biz/jsr/179/index.html
    Note that this is an optional API.
    Do you have a background of core java / j2se / j2ee?
    If not, start with something much simpler and work up.
    :D

  • First imovie project suddenly erased. How do i get it back??

    I just made my first imovie project and when I was done I made sure to finalize it. A day later, I tried to reopen it through Finder-->Movies-->iMovie Projects-->My First Project. I dragged the "my first project" onto my desktop so itd be easier to get to and then i opened it with iMovie. I double clicked the project and all of a sudden it wasn't there. It was erased. How do i get it back?? I literally pressed nothing else and now cannot find it anywhere on my computer. Help please!!

    morggan13 wrote:
    …  tried to reopen it through Finder …
    That's not optional.
    Projects can only be handled INSIDE the app.
    You should find your Project listed in your iMovies Project Library…

  • First Flex Project - Skinning Component?

    I am working on my first flex project for the college that I work for.  We are making a large touch screen into a display for all of the awards that we have given out over the years and taking the old plaques off the walls.
    I want to iterate over a list of names and years that the awards were given so that each instance of the award looks like it is on it's own little plate.  I'm just imitating the plaques that were on the wall that had a big discription and name of the plaque on one plate and all the winners of the award on their own little plates beneath it.
    Is this what I would a component skin for?  I'm sorry if this is to much of a newbie question.

    Very cool indeed.
    I added it to my ChikaraDev directory of rich internet
    applications:
    ChikaraDev
    Directory of Rich Internet Applications
    It could use a progress bar though. The screen where it will
    appear is blank till it loads. But very nice use of Flex!

  • Help with my first ever PDF form

    Hi there,
    In my PDF form there are a couple of time fields. I would like some help on couple of things as this is my first ever PDF form:
    Display current time in format HH:MM when the document is opened.
    I would like to display a default value for time such as 00:00. Is that ok? How generally default time is displayed?
    If someone enters anything else in time field, I get a default message such as ‘The value entered does not match the format of the field [fieldname]’ Is there a way where I can customize this error message. If so, how can I do it.
    Thanks for your help. Please explain your solution in steps as this is my first form that I'm creating in Acrobat 9.
    Joe Green

    1. Place this script in the doc-level (of course, edit the field name as required):
    this.getField("CurrentTime").value = util.printd("HH:MM", new Date());
    2. Just enter that value as the Default Value of your fields.
    3. Only if you use a custom format and validate scripts, which is quite a bit of work...

  • Help!  Just bought first ever Mac (MacBook Pro OS version 10J4139) and it keeps forcing me to restart?

    I bought my first ever Mac about two weeks ago and am already having trouble.  Can't seem to get it to turn on suddenly.  I had left my Mac in sleep mode charging and when I opened it up, I got a message that said I had to shut down and restart.  Now when it boots up I get a screen that says "panic (CPU 0 caller 0xfffff8000223c0e): spinlock  acquisition timed out
    There is a bit more on the screen but not sure what is useful.
    Mac OS 10J4139
    Darwin Kernel version 10.7.4
    Am typing Tis up on my I phone so apologies if I didn include enough info.
    Anybody able to help?
    Jason

    I bought my first ever Mac about two weeks ago and am already having trouble.  Can't seem to get it to turn on suddenly.  I had left my Mac in sleep mode charging and when I opened it up, I got a message that said I had to shut down and restart.  Now when it boots up I get a screen that says "panic (CPU 0 caller 0xfffff8000223c0e): spinlock  acquisition timed out
    There is a bit more on the screen but not sure what is useful.
    Mac OS 10J4139
    Darwin Kernel version 10.7.4
    Am typing Tis up on my I phone so apologies if I didn include enough info.
    Anybody able to help?
    Jason

  • TS3992 Trying to commence first ever Storage & Backup but it fail and messages "The last backup could not be completed." "Last Backup-Never". Any clues?

    Trying to commence first ever Storage & Backup but it fails and massages "the Last backup could not be completed" "Last Backup - Never".

    Welcome to the Apple Community.
    You might try a forced shutdown to begin with, hold down the top and home buttons together until the device shuts down, then restart it.
    If your back up continually fails, you might try turning off back up on your mobile device (settings > iCloud > storage & backup) and then deleting the backup file from iCloud by swiping the backup file on the mobile device (settings > iCloud > storage & backup > manage…) and then turning back up on again.
    If this doesn't help, try turning off some items for back up in a pattern to try to establish if your problem is being caused by specific data on your device.
    Being able to back up to the cloud can be very useful, especially if you don't have access to a computer or have infrequent access to one, however unless you specifically need to use iCloud for back up, you will find backing up to iTunes significantly more convenient and possibly more reliable.
    More about iCloud v iTunes Back Up

  • My first flash project

    Hello, a few weeks ago I have launched my first flash project: logotypemaker.com
    Please let me know what I need to improve in second version.
    Thanks.

    Rob, thanks for your input.
    You're right, I hadn't checked it in various browsers, and that seems to reveal some issues...
    After checking the file in different browsers, just as you say, it works just fine for me in Chrome, but in Safari, (my default browser), that's where I see the heart patient inconsistency, and in Firefox, the flashes seem stable, but I hear no audio.
    Sigh.  This confirms what I suspected when it comes to entering the world of HTML5 development...  it looks like we're all facing a new gigantic set of headaches in trying to get our work to perform as expected across the myriad browsers. 
    I guess we've been pretty spoiled with Flash up to now, exporting once and feeling confident that it will work consistently in most browsers.  I would have thought HTML5 would be a little further down the road by now to being more consistent from browser to browser, but it looks like it's got a long way to go if an animation this simple has this much trouble performing.  : /
    Is there an approach to this I may be overlooking?  If anyone has more experience in this Flash to HTML5 conversion, I'd love to hear your thoughts on the matter.

Maybe you are looking for