Copying database please help graduation project

Hi all
i am doing my graduation project as computer science student i am doing visual basic for interface and oracle express as a database i have made the tables and everything but i need to copy the whole database to my friend's computers so they can help me inserting the data into the tables so i need basicly to transfer the database to my friend's computer can you help me doing that step by step i'm not that much in Oracle i know only selecting,updating and creating tables
and if you please tell me if there is a way to make auto backup for the database just like the database by itself will do an automatic backup for itself every just like 1 week
if there is a way can you plz provide me with it
if there is no automatic way can you please provide me with the manual way of backing up the database.
regards
wish me luck in my project plz

Hi there,
It helps to specify which version of the database you're using, and the operating system on the computer, and whether 32 or 64 bit. Do this for each end (your computer and your friend's computer). It sometimes helps if you describe a bit about the hardware (eg the amount of memory).
Examples of the first: 8.1.7, 9.0.1.4.0, 9.2.0.8, 10.2.0.3 (and more). I'm not familiar with Db Express, but I assume there's various versions of that as well.
Examples of the second: Windows XP (I pray not), Linux, Free BSD, Max OS X 10.4. Please be as specific as possible: Is your Linux Ubuntu, Red Hat Enterprise, or something else?. What version? What's the output of <tt>uname -a</tt>, or <tt>uname -r</tt>.
You might also give your (first) name, just to be polite.
but i need to copy the whole database to my friend's computers so they can help me inserting the data into the tablesPerhaps a totally different way of skinning the cat: have you considered letting your friend(s) logging into your database remotely? It takes a bit of setting up: for Linux, it'll be a combination of a broadband connection, [http://dyndns.org/], a firewall setting (choose a port for SSH), ssh (eg PuTTY if your friends on Windows), and some usernames/passwords for your friends. Optional: install sqlplus on your friends' computers and use SSH to tunnel the connections across.
auto backup for the databaseMy method is a little unsophisticated, but it works for small databases. Shut down the database (if paranoid, a cycle of <tt>shutdown immediate</tt>, <tt>startup restrict</tt>, <tt>shutdown</tt>), then backup the *.dbf, *.ctl, *.ora (datafiles, control files, and {noformat}[sp]{noformat} parameter files). Whether auto or manual is simply a function of whether you type the commands manually, or get the system to run a script at a regular hour, and you have to burn it to a CD or tape, and have that off-site for complete safety. Or you can back it up over the internet.
If you need further help with remote connections or backup, I'd seek out forums for those particular activities - it's a bit off-topic here.
Nick

Similar Messages

  • Please Help on Project Expenditure Report

    Hi All,
    i am trying to get vendor number, invoice number,and journal details,.... for project expenditure items at project level and task level.
    query is working fine when i comment the gl part(all relevant gl tables,,,see below query). if i am joining with gl its giving null value for vendor number field and invoice number field even though this field were having correct values , i don't know to make a link from PA to PO ,AP and GL
    please help me ...
    SELECT jeh.period_name gl_period,
    pcdl.gl_date gl_date,
    prj.project_id project_id,
    jeh.name journal_number,
    jeh.je_source journal_source,
    jeh.je_category journal_category,
    peia.transaction_source expend_source,
    poall.po_number po_number,
    poall.item_description po_description,
    (SELECT REPLACE (expenditure_comment,CHR (10)) exp_comment
    FROM pa_expenditure_comments
    WHERE expenditure_item_id =peia.expenditure_item_id
    AND ROWNUM < 2) expenditure_comment,
    expenditure_category expenditure_category,
    peia.expenditure_type expenditure_type,
    prj.project_type project_type,
    pt.task_number task_number,
    pv.segment1 vendor_number,
    invc.invoice_num invoice_number
    FROM pa_projects_all prj,
    pa_tasks pt,
    pa_expenditures_all pea,
    pa_expenditure_items_all peia,
    pa_expenditure_types pet,
    pa_cost_distribution_lines_all pcdl,
    gl_je_lines jel,
    gl_je_headers jeh,
    po_vendors pv,
    (SELECT pod.po_distribution_id po_distribution_id,
    poh.segment1 po_number,
    pol.item_description item_description
    FROM po_headers_all poh,
    po_lines_all pol,
    po_distributions_all pod
    WHERE pod.po_line_id = pol.po_line_id
    AND pod.po_header_id = pol.po_header_id
    AND pol.po_header_id = poh.po_header_id) poall,
    (SELECT SOURCE, apid.invoice_id,
    apid.distribution_line_number,
    pap.full_name, aefla.merchant_name,
    aia.invoice_num invoice_num
    FROM (SELECT full_name, person_id
    FROM apps.per_all_people_f
    WHERE TRUNC (SYSDATE)
    BETWEEN effective_start_date
    AND effective_end_date) pap,
    apps.ap_invoices_all aia,
    apps.ap_invoice_distributions_all apid,
    apps.ap_expense_feed_dists_all aefda,
    apps.ap_expense_feed_lines_all aefla
    WHERE apid.invoice_id = aia.invoice_id
    AND aefda.feed_line_id = aefla.feed_line_id
    AND aefla.employee_id = pap.person_id(+)
    AND TO_CHAR (aefda.invoice_line_id) =
    SUBSTR (apid.attribute12,
    INSTR (apid.attribute12, ':',
    1)
    + 1,
    INSTR (apid.attribute12,
    1,
    1
    - INSTR (apid.attribute12, ':',
    1)
    - 1
    )) invc,
    pa_system_linkages syslink
    WHERE prj.project_id = pt.project_id
    AND peia.task_id = pt.task_id
    AND jeh.je_category = syslink.cost_je_category_name
    AND peia.system_linkage_function = syslink.FUNCTION
    AND pcdl.expenditure_item_id = peia.expenditure_item_id
    -- AND pcdl.transfer_status_code || '' = 'A'
    AND pcdl.batch_name = jel.reference_1(+)
    AND ((pcdl.dr_code_combination_id = jel.code_combination_id AND jel.reference_3 = 'Cost')
    OR (pcdl.cr_code_combination_id = jel.code_combination_id
    AND jel.reference_3 = 'Liability'
    AND jel.reference_3 IN ('Cost', 'Liability')
    AND pet.expenditure_type = peia.expenditure_type
    AND pea.vendor_id=pv.vendor_id(+)
    AND pea.orig_exp_txn_reference1 = poall.po_distribution_id(+)
    AND pcdl.system_reference3 = invc.distribution_line_number(+)
    AND pcdl.system_reference2 = invc.invoice_id(+)
    AND jeh.je_header_id = jel.je_header_id
    AND jeh.reversed_je_header_id IS NULL
    AND pea.expenditure_id = peia.expenditure_id
    AND jeh.je_source = 'Project Accounting'
    Thanks & Regards
    Gopi

    Hi,
    You will take PLANT and MATERIAL in to the rows of the query.
    Then you will use restriction key figure (restriction on History) with user enterd range.
    Then you will use one more restriction key figure (restriction on Plant %) with current date.
    For user enters range, define a variable on 0CALDAY with processing 'user entry' and with 'interval'.
    For second restriction , you will create a variable on 0CALDAY with processing 'Customer exit' and with 'Single entry'.
    In user exut , you will define the value for second Varaible as system-date.
    With rgds,
    Anil Kumar Sharma .P

  • Cannot make image copy. Please Help

    Hi,
    I am trying to make a image copy for the patch 110930-03 because i am getting the error
    Warning:ACPI tables not in reclaim memory
    prom_panic:kmem_free block already free
    Entering boot debugger
    [12ff05]
    Below is the command i am giving.
    C:\>dd S28DCA0301 A:
    S28DCA0301: No such file or directory
    I downloaded the zip file and then extracted it on a windows 2000 server.
    PLEASE HELP.
    Thanks
    Anurag

    Could be a problem with windows 8.3 filenames. Does it
    work if you pass dd the "short" filename associated with
    S28DCA0301? (The explorer properties dialog should list
    the MS-DOS "short" filename).

  • HELP???Question about the technique RM COPY. Please Help

    PLEASE HELP
    Im wondering if anyone can help me. I recently got a reply to a post that I wrote about deleting duplicated files. Mainly MP3s. I have not done this method yet though. Does it work? I have around 9000 mp3s that Itunes seems to always duplicate and I need to get rid of them. Can I open one of my ex-Harddrives that pretty much hold mp3s and run this command? Im looking for a completely faster method than individually deleting them in Itunes. One last question too. Where do I type this command? How do I access the directorys where my mp3s are in my ex-HD? If anyone can help me Id greatly appreciate it. The reply is below my name
    Jamie
    posternut:
    If none of the original filenames contains the lettering " copy", you can do what you want quite easily.
    Open Terminal, navigate to the folder that contains the files, and enter the following command (exactly as it appears here):
    rm *" copy"*
    That's all there is to it. All 9000 duplicate files will be removed very quickly.
    If you need help "navigating to the folder" or if some of your original filenames contain the lettering “ copy”, then post back here.
    Greg

    Launch Terminal.app
    Type cd followed by a space. Do not hit return key just yet.
    In Finder, navigate to folder containing the files you want to blow away.
    Drag and drop that folder (in the finder) into the Terminal.app window. It'll autofill the path to the directory containing the files you're wanting to blow away. Now hit the return key.
    You could type ls (that's a lower-case ell) and see the directory listing of all the files in your current directory. Probably a good idea to do just to doublecheck that you really are in the directory that you want to blow away all these files from.
    Now do what Greg said.
    Don't get impatient because Terminal is just sitting there and you're not getting an immediate command prompt. It'll take a while to blow away 9000 files.
    For entertainment, instead of rm *" copy"* use rm -v *" copy"* so you can watch all 9000 file names be printed in your terminal window as they are being deleted.
    Will it work? Oh yes .... irreversibly (if it doesn't, that's coz' there are some file ownership and/or file permission issues that need to be looked at, but assuming those are "compatible" with your current Terminal user environment, those guys'll be toast. Any file that's in the working directory where you are in Terminal that has the five characters " copy" in its filename will be history.
    The assumption in Greg's command is that all the files you want to blow away all reside in the one directory that you have navigated to.

  • Adding & Copying Formulas Please help

    Hi
    I am trying to put a formula in a cell and then use that same formula in a different cell without having to retype in the formula using the different cell block numbers and letters. Example
    I have this formula
    =D4+E4-F4
    and I want to copy it down to the other cells without retyping it
    =D6+E6-F6
    =D8+E8-F8
    and so on...
    Please help I know it can be done.
    Thanks

    Select the cell, copy, select the destination(s), paste. That is one of several ways to copy cells/formulas. Another way is to select the cell and drag down on the circle in the lower right of the selection box. However, it looks like you are only copying your formula to even numbered rows so that second method won't work for you.

  • Please Help, Missing Project File and Discussion Advice Isn't Working.

    Here's the rundown:
    I was working in iMovie HD 5 when the power got cut out on my external hard drive. When I try to reload my project I got the 'Missing Project File' error that has been discussed by many on this board.
    There are two known fixes.
    1) Open the package and go back to the '~' version of the project.
    2) Use the MovieTimeline.mov in the Cache to import it back into a new project.
    Solution #1 simply didn't work.
    Solution #2 imports the full video as a single long clip but is significantly lower in quality than the original version.
    In addition, the movie was shot in true widescreen and plays in quicktime in 16:9 mode, but when I import that .mov file into iMovie HD for some reason bars are added on the sides and top and bottom of the frame, and the bars are thicker on the sides so it stretches the picture and makes everything look taller.
    Although I'd certainly much rather have my original project timeline back, I could still continue my work if I could figure out how to import the .mov so that it retains the quality and size that it had to begin with.
    Does anyone have any idea how to import it without losing the quality and size or how to gain back an earlier project save?
    Please help if you can, my grandfather's 83rd birthday gala celebration (2 days away!) depends on it!

    I know you're in a rush, so I'll mention a couple other possibilities.
    Solution #2 imports the full video as a single long
    clip but is significantly lower in quality than the
    original version.
    • You shouldn't see any difference. The video imported from the Timeline Movie.mov is exactly the same as the original video. My guess is you're seeing some side effect of the widescreen issue. That, or your iMovie playback settings have changed.
    In addition, the movie was shot in true widescreen
    and plays in quicktime in 16:9 mode, but when I
    import that .mov file into iMovie HD for some reason
    bars are added on the sides and top and bottom of the
    frame, and the bars are thicker on the sides so it
    stretches the picture and makes everything look
    taller.
    • Make sure you're importing to a DV Widescreen project.
    • It might work to open the Timeline Movie.mov in QT Player Pro and export to a DV stream set to 16:9, then import that to the new project.
    • It's curious solution #1 didn't work. What happened when you tried that?
    Karl

  • Creating A Database - Please Help!

    Hi everyone, I am trying to do a database application for a uni project but have no idea where to start.
    The data the database should be able to store is for a book shop and should be Title, Author, Price, Quantity, Description.
    The user should be able to add records into the database, delete records, modify existing records and perform searches of existing records so that they may be able to locate a record by entering a key word or the title of the book or authors name.
    I would also like to put a password onto the system but once again do not know how to acheive this.
    I am not asking for a solution, only a helping hand in getting started, so if anyone can suggest the best way to start such a project I would be grateful.
    Thanks everyone

    Look at Vector, a java collection that gives you good access to objects. You
    encapsulate all of the data you want in a particular object, then store that
    object in the Vector. The Vector is self-expanding so you don't have to
    worry about size considerations. When the program closes, or at whatever
    interval you choose, the Vector is copied into a file for storage. When you
    open the program, Vector provides methods for you to restore it from the file.
    Almost all of the work is done for you. Vector will even provide a calling program
    with an interface object to access the data. You can also employ a HashTable,
    a two- item list, the first item being a readily accessible and fast response key
    item, associated with the second item, the record you're looking for.
    You can have as many HashTables as you find convenient.
    Norman Tilbury ([email protected])

  • PLEASE please help my project can't be finalised for publishing due to -50 error!?! i need help in layman's terms :(

    my project begins to finalise (in 1080 HD even though i don't need it that high... ) and then it gets maybe 1 eighth of the way and i get an error -50 message and it won't finish!! i've read other threads but do not understand what to do to stop this. please help

    Hi hannijin,
    What version of the Mac OS X do you have on your computer?  The version of iTunes that you can install is dependent on the operating system that you have.  For example, the current version of iTunes requires OS X version 10.7.5 or later.
    Finding the OS X version and build information on your Mac - Apple Support
    https://support.apple.com/en-us/HT201260
    Apple - OS X Yosemite - How to Upgrade
    https://www.apple.com/osx/how-to-upgrade/
    Hope that helps ...
    - Judy

  • Newbie Trying to restore Oracle database. please help

    Hi All,
    I am a newbie who is trying to restore Oracle database, I currently use RMAN to backup the database, but the database needs to be restored onto a test server, I'm not quite sure of what I need to do or where I need to start here.
    I currently backup the following
    SPfile
    ControlFile
    Datafile
    Archive Log
    If someone can point me in the right direction or maybe a link to a website, I would be very grateful.
    Thanks.

    Hi,
    login to your box using ssh or telnet
    1. rman> connect target /
    3. rman >startup force nomount;
    4. rman >restore spfile from '/u01/restore/restore/2009_02_07/o1_mf_s_678160942_4rstxj3k_.bkp';
    5. rman > shutdown immediate;
    6. rman > startup nomount;
    7. rman > restore controlfile from '/u01/restore/restore/2009_02_07/o1_mf_s_678160942_4rstxj3k_.bkp';
    8. rman > mount database;
    9. rman > restore database;
    10.rman > recover database;
    11. rman > sql 'alter database open resetlogs';
    below is the sample i've done on my test environment
    RMAN> startup mount;
    connected to target database (not started)
    Oracle instance started
    database mounted
    Total System Global Area 167772160 bytes
    Fixed Size 1218316 bytes
    Variable Size 67111156 bytes
    Database Buffers 96468992 bytes
    Redo Buffers 2973696 bytes
    RMAN> backup database;
    Starting backup at 11-FEB-09
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=158 devtype=DISK
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    input datafile fno=00001 name=/u01/app/oracle/oradata/ORCL1/datafile/o1_mf_system_4qzm5q6g_.dbf
    input datafile fno=00003 name=/u01/app/oracle/oradata/ORCL1/datafile/o1_mf_sysaux_4qzm5qc1_.dbf
    input datafile fno=00005 name=/u01/app/oracle/oradata/ORCL1/datafile/o1_mf_example_4qzmky86_.dbf
    input datafile fno=00002 name=/u01/app/oracle/oradata/ORCL1/datafile/o1_mf_undotbs1_4qzm5sgk_.dbf
    input datafile fno=00004 name=/u01/app/oracle/oradata/ORCL1/datafile/o1_mf_users_4qzm5vqj_.dbf
    channel ORA_DISK_1: starting piece 1 at 11-FEB-09
    channel ORA_DISK_1: finished piece 1 at 11-FEB-09
    piece handle=/backup/ORCL1_1_1_678528722 tag=TAG20090211T081201 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:02:35
    Finished backup at 11-FEB-09
    Starting Control File and SPFILE Autobackup at 11-FEB-09
    piece handle=/backup/c-1061732667-20090211-00 comment=NONE
    Finished Control File and SPFILE Autobackup at 11-FEB-09
    RMAN>
    --- deleted all my file including spfile..
    RMAN> shutdown immediate;
    database dismounted
    Oracle instance shut down
    RMAN> exit
    Recovery Manager complete.
    [oracle]:/home/oracle>
    [LinuxForOracle.bai.com]: orcl1 >rman target /
    Recovery Manager: Release 10.2.0.1.0 - Production on Wed Feb 11 08:17:27 2009
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to target database (not started)
    RMAN> startup nomount;
    startup failed: ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file '/u01/app/oracle/product/10.2.0.3/dbs/initorcl1.ora'
    starting Oracle instance without parameter file for retrival of spfile
    Oracle instance started
    Total System Global Area 159383552 bytes
    Fixed Size 1218268 bytes
    Variable Size 54528292 bytes
    Database Buffers 100663296 bytes
    Redo Buffers 2973696 bytes
    RMAN> restore spfile from '/backup/c-1061732667-20090211-00';
    Starting restore at 11-FEB-09
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=36 devtype=DISK
    channel ORA_DISK_1: autobackup found: /backup/c-1061732667-20090211-00
    channel ORA_DISK_1: SPFILE restore from autobackup complete
    Finished restore at 11-FEB-09
    RMAN> shutdown immediate;
    Oracle instance shut down
    RMAN> startup nomount;
    connected to target database (not started)
    Oracle instance started
    Total System Global Area 167772160 bytes
    Fixed Size 1218316 bytes
    Variable Size 67111156 bytes
    Database Buffers 96468992 bytes
    Redo Buffers 2973696 bytes
    RMAN> restore controlfile from '/backup/c-1061732667-20090211-00';
    Starting restore at 11-FEB-09
    using channel ORA_DISK_1
    channel ORA_DISK_1: restoring control file
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:16
    output filename=/u01/app/oracle/oradata/ORCL1/controlfile/o1_mf_4s5n6jvq_.ctl
    output filename=/u01/app/oracle/flash_recovery_area/ORCL1/controlfile/o1_mf_4s5n6n4f_.ctl
    Finished restore at 11-FEB-09
    RMAN> mount database;
    database mounted
    released channel: ORA_DISK_1
    RMAN> restore database;
    Starting restore at 11-FEB-09
    Starting implicit crosscheck backup at 11-FEB-09
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=156 devtype=DISK
    Crosschecked 1 objects
    Finished implicit crosscheck backup at 11-FEB-09
    Starting implicit crosscheck copy at 11-FEB-09
    using channel ORA_DISK_1
    Finished implicit crosscheck copy at 11-FEB-09
    searching for all files in the recovery area
    cataloging files...
    no files cataloged
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting datafile backupset restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    restoring datafile 00001 to /u01/app/oracle/oradata/ORCL1/datafile/o1_mf_system_4qzm5q6g_.dbf
    restoring datafile 00002 to /u01/app/oracle/oradata/ORCL1/datafile/o1_mf_undotbs1_4qzm5sgk_.dbf
    restoring datafile 00003 to /u01/app/oracle/oradata/ORCL1/datafile/o1_mf_sysaux_4qzm5qc1_.dbf
    restoring datafile 00004 to /u01/app/oracle/oradata/ORCL1/datafile/o1_mf_users_4qzm5vqj_.dbf
    restoring datafile 00005 to /u01/app/oracle/oradata/ORCL1/datafile/o1_mf_example_4qzmky86_.dbf
    channel ORA_DISK_1: reading from backup piece /backup/ORCL1_1_1_678528722
    channel ORA_DISK_1: restored backup piece 1
    piece handle=/backup/ORCL1_1_1_678528722 tag=TAG20090211T081201
    channel ORA_DISK_1: restore complete, elapsed time: 00:02:57
    Finished restore at 11-FEB-09
    RMAN> recover database;
    Starting recover at 11-FEB-09
    using channel ORA_DISK_1
    starting media recovery
    archive log thread 1 sequence 6 is already on disk as file /u01/app/oracle/flash_recovery_area/ORCL1/onlinelog/o1_mf_2_4qzmccv0_.log
    archive log filename=/u01/app/oracle/flash_recovery_area/ORCL1/onlinelog/o1_mf_2_4qzmccv0_.log thread=1 sequence=6
    media recovery complete, elapsed time: 00:00:01
    Finished recover at 11-FEB-09
    RMAN> sql 'alter database open resetlogs';
    sql statement: alter database open resetlogs
    RMAN> exit
    [oracle]:/home/oracle>
    [LinuxForOracle.bai.com]: orcl1 >sqlplus '/ as sysdba'
    SQL> select name from v$database;
    NAME
    ORCL1
    SQL>
    i hope this will help you... enjoy!
    Regards,
    baidba

  • Error message. Please help Eagle project lost.

    Please wait...
    If this message is not eventually replaced by the proper contents of the document your PDF viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Mac by visiting http://www.adobe.com/products/acrobat/readstep2.html.
    For more assistance with Adobe Reader visit http://www.adobe.com/support/products/acrreader.html.

    I click on either OK or CANCEL and it closes. I don't know what to do. I have looked at other posts and it wasn't just me that has had this problem. None of those have been solved either.
    Do you think you can help?
    I've even tried uninstalling and reinstalling, closing all my firewalls, everything I can think of...

  • Cannot Connect to iTunes OR Download New Copy.  Please Help!

    I was trying to update my account information earlier today when I noticed I couldn't log into my account info or the iTunes store. I figured it was a temporary problem, but no luck as of a moment ago. I get an error message saying the session timed out and I should check my connection. Well, my connection is fine on Safari and Firefox, so I figured I'd simply reinstall iTunes from a freshly downloaded copy.... except I can't download iTunes either! I tried using both Safari and Firefox several times, reset my computer, reset Safari (in the vain hope it might be that simple). Still no go.
    Is anybody else having a problem like this - or does anybody have a potential solution? I am running no antivirus, and no firewalls beyond what is packaged with OS X. Thanks for your help in advance.

    Hi - I'm having exactly the same issue. All other internet apps are running fine, but iTunes store is giving the message that you're getting. I've gone through the troubleshooting support website with no results, so have the feeling it's not my computer but an issue with the store itself. I was able to purchase a song late last night, so it's only a recent thing for me, and I haven't changed any settings since then, so I can't think what else it could be.
    I guess we just need to wait and see... Good luck!

  • Cant connect to database please help newbie here

    I am very new to oracle and have just installed oracle database 10g express beta. The problem is when I log into the homepage nothing happens. It just goes back to the log in screen again. I have tried using the wrong password and it gives me a error message. I have also gone through SQL and it says i'm connected.But I can't get the icons to come up after logging in. Any help would be greatly appreciated

    Welcome to Oracle.
    Similar problems to yours have been reported on the forum.
    The first seemed to be being caused by ZoneAlalrm - see Database home page will not load whilst ZoneAlarm Pro is running
    The second seemed to occur if the user was connected to their corporate network via VPN - see Database Home page / VPN's
    Let us know if either of these helped

  • Please help with project

    Hey there
    I have a project due soon and would like to add a Gui. Can anyone help me. I'll e-mail you the program. Ive done half the text but would like a GUi included and some tips from people that know what they are talking about.
    Thanks

    A good starting point is (after once doing it by hand to see how everything fits together), to use a dialog editor.
    For instance the NetBeans IDE has such a "form editor". Drag and drop your buttons and such.
    Add events "actionPerformed" to such buttons etcetera.
    It still is a time consuming task. So prepare yourself: think of the layout and rest of user-interface you want to achieve.

  • Please Help! Project Gone!!

    So I have a big Flash CS4 project I've been working on....I opened it today and it's completely blank....However, the .SWF file plays fine, and to exactly the point where I left the project.....what is this???????
    If anyone can help I'd be very grateful....this sucks.
    -ryan

    Also- the entire library for the project is there too! Just nothing in the timeline, nothing in the preview window!!!!!!!!

  • Please Help - Restore Project on Another Computer

    Hi all, I'm having a sudden SNAFU as the workstation (Dell , Windows 7 64 bit) I've been cutting a Premiere Pro CC 2014 project on has become inoperable after an attempted RAM upgrade. Don't ask - I have no idea why it happened.
    I have a deadline tomorrow so it's getting a little scary.
    I've spent hours talking with Dell Tech Supoprt, and the only solution they came up with was to reinstall Windows or to use System Restore in order to bring the computer back to a workable condition. The trouble is the only options I currently have mean a fresh install of Premiere Pro, and rebuilding the project. Which is a terrifying prospect; I need to be able to resume work on the project. So here are my two questions:
    1. Exactly what files do I need in order to rebuild my Premiere project after a fresh install? Obviously the Project File and the Footage/Data - all of which I have. Anything else?
    2. If I need to entirely swap computers, I might need to go to a Mac with Premiere Pro already installed on it, and rebuild the project on that. But, will my PC Premiere project file load seamlessly on the Mac? I know it's supposed to, but I have never attempted to do it. I've only used stock Premiere effects - will these port over to the Mac?
    Thanks in advance for the help on this, I am running out of time and options here.

    You won't need to Restore.
    Plug it in and it will ask if you want to sync to this library. Just click yes and it will load your songs from your home computer.
    Note that this will remove the music you loaded from your work computer.

Maybe you are looking for

  • I have a new 2nd generation ipod nano and its not turning on! help please!

    i got it two hours ago and its not charging really.. cuz its been plugged into my computer for at least an hour straight... its not turning on or making any sign on the screen ive also downloaded itunes and i cant sync to ipod .. nor is it on my comp

  • Automatic Purchase Requisition Creation in MRP run

    Hi, 1. I create a Sales Order for quantity 20 of main material MAT which has two sub-components - COMP1 and COMP2. The plant in which this sales order is being created does not have any stock quantitiy of the material or its sub-components. For quant

  • How to copy part of non commercial dvd and use it in imovie?

    Hi I want to use some video from my school that are burned in a dvd (with a PC) and put them on a project that I made with imovie. I have the files audio_TS and the video_TS but I don't know how to use them. I want to import them (or the movie) in im

  • Capture user action from method cl_wd_popup_factory= popup

    Hi There, Just wondering if anyone can explain to me how i capture what button a user pressed when using the method 'cl_wd_popup_factory=>popup' and how I perfor different methods/ functionality depending on what they pressed. At the moment i can cre

  • Restore the Shopping cart.

    Hello Experts, we are using SRM 7.0, we are facing problem in SC Area. situation: Employee1 has assigned to "YYY" organisation and has the BP number "XXXX".  and he has created 10 Shopping carts. Now Employee1 can see all 10 SC in shopping cart area.