Need help with saving data

I recently started studying in IT at college, and I think I have the basics in Java programming, however we haven't
been taught how to save data in our apps, so everytime i close my app, I lose all changes.
I went through Sun's IO tutorial, as well as a few tutorials online and I made a small application to practice saving my
Objects, however I can't seem to get it to work. I was hoping someone could look at my code and tell me what seems
to be my problem.
There are 3 classes in my project. The Base class makes a List that holds objects of type Person. the UIPerson class
has 3 buttons (Add, Save, Load) and a JList. When clicking on Add, it adds a new Person in the base and is shown in
the JList. The saving and loading is what I have trouble with.
UIPerson :
public class UIPerson extends JFrame implements Serializable{
     private JFrame jFrame = null; 
     private JPanel jContentPane = null;
     private JButton jbAdd = null;
     private JButton jbSave = null;
     private JButton jbLoad = null;
     private JList list = null;
     private Base base = null;
     public static void main(String args[]){
          UIPerson personList = new UIPerson();
     public UIPerson(){
               base = new Base();
               Container pane = getContentPane();
               setSize(288, 309);
               setVisible(true);
               jContentPane = new JPanel();
               jContentPane.setLayout(null);
               jbAdd = new JButton();
               jbAdd.setBounds(new Rectangle(24, 59, 58, 24));
               jbAdd.setText("Add");
               jbAdd.addActionListener(new java.awt.event.ActionListener() {
                    public void actionPerformed(java.awt.event.ActionEvent e) {
                         String Name, famName;
                         Name = JOptionPane.showInputDialog("Enter Name", null);
                         famName = JOptionPane.showInputDialog("Enter Family Name", null);
                         base.addPerson(new Person(Name, famName));
                         list.setListData(base.listPerson());
               jbSave = new JButton();
               jbSave.setBounds(new Rectangle(19, 106, 69, 34));
               jbSave.setText("Save");
               jbSave.addActionListener(new java.awt.event.ActionListener(){
                    public void actionPerformed(java.awt.event.ActionEvent e){
                         try{
                              FileOutputStream fos = new FileOutputStream("temp.dat");
                              ObjectOutputStream oos = new ObjectOutputStream(fos);
                              oos.writeObject(base);
                         catch(Exception ex){
                              System.out.println("Save Failed");
               jbLoad = new JButton();
               jbLoad.setBounds(new Rectangle(23, 154, 70, 29));
               jbLoad.setText("Load");
               jbLoad.addActionListener(new java.awt.event.ActionListener(){
                    public void actionPerformed(java.awt.event.ActionEvent e){
                         try{
                              FileInputStream fis = new FileInputStream("temp.dat");
                              ObjectInputStream ois = new ObjectInputStream(fis);
                              base = (Base)ois.readObject();
                              list.setListData(base.listPerson());
                         catch(Exception exc){
                              System.out.println("Load Failed");
               list = new JList();
               list.setBounds(new Rectangle(133, 47, 139, 151));
               jContentPane.add(jbAdd);
               jContentPane.add(jbSave);
               jContentPane.add(jbLoad);
               jContentPane.add(list);
               pane.add(jContentPane);
}Base :
public class Base implements Serializable{
     private ArrayList<Person> list;
     public Base(){
          list = new ArrayList<Person>();
          list.clear();
     public void addPerson(Person person){
          list.add(person);
     public void deletePerson(Person person){
          list.remove(person);
     public Person[] listPerson(){
          Person tab[] = new Person[list.size()];
          list.toArray(tab);
          return tab;
     public Person getPerson(Person person){
          ListIterator<Person> iterator = list.listIterator();
          Person current = null;
          while (iterator.hasNext()){
               current = iterator.next();
               if (current.equals(person))
                    return current;
          return null;
}Person :
public class Person {
     private String name, familyName;
     public Person(String name, String familyName){
          this.name = name;
          this.familyName = familyName;
     public String getName(){
          return name;
     public String getFamilyName(){
          return familyName;
     public String toString(){
          return name + " " + familyName;
}I'd appreciate any help that could be given.

My probelm is with my save/load funtions only, sorry for the extra code. Everytime i press on save or load, they
throw an IOException. Heres the code I specifically wanted viewed to know if there are any mistakes in it.
Save Button :
jbSave.addActionListener(new java.awt.event.ActionListener(){
          public void actionPerformed(java.awt.event.ActionEvent e){
               try{
                    FileOutputStream fos = new FileOutputStream("temp.dat");
                    ObjectOutputStream oos = new ObjectOutputStream(fos);
                    oos.writeObject(base);
               catch(FileNotFoundException ex){
                    System.out.println("(Save)File Not Found Exception");
               catch(IOException ex){
                    System.out.println("(Save)IOException");
     });Load Button :
jbLoad.addActionListener(new java.awt.event.ActionListener(){
          public void actionPerformed(java.awt.event.ActionEvent e){
               try{
                    FileInputStream fis = new FileInputStream("temp.dat");
                    ObjectInputStream ois = new ObjectInputStream(fis);
                    base = (Base)ois.readObject();
                    list.setListData(base.listPerson());
               catch(FileNotFoundException exc){
                    System.out.println("(Load) File not found exception");
               catch(IOException exc){
                    System.out.println("(Load) IO Exception");
               catch(ClassNotFoundException exc){
                    System.out.println("(Load) Class not found exception");
     });

Similar Messages

  • Need help with saving data and keeping table history for one BP

    Hi all
    I need help with this one ,
    Scenario:
    When adding a new vendor on the system the vendor is suppose to have a tax clearance certificate and it has an expiry date, so after the certificate has expired a new one is submitted by the vendor.
    So i need to know how to have SBO fullfil this requirement ?
    Hope it's clear .
    Thanks
    Bongani

    Hi
    I don't have a problem with the query that I know I've got to write , the problem is saving the tax clearance certificate and along side it , its the expiry date.
    I'm using South African localization.
    Thanks

  • Hi, I need help with the dates of plugins added to my browser

    Hi I need to know what date a plugin was installed on my browser.
    openh264 / video codec provided by cisco systems.
    If you can't help, please point me in the direction of someone who can?
    Any help greatly appreciated.

    The new "OpenH264 Video Codec provided by Cisco Systems, Inc." plugin that now shows up in the Firefox Add-ons Manager Plugins list was added in Firefox 33.0. It's installed in a subfolder of your [[Profiles|Firefox profile folder]], which you can confirm by typing '''about:plugins''' in the Firefox address bar to bring up a list of installed plugins (details [http://kb.mozillazine.org/Issues_related_to_plugins#Identifying_installed_plugins here]) and checking its "Path" entry .
    The first link in the [https://www.mozilla.org/en-US/firefox/33.0/releasenotes/ Firefox 33.0 release notes] under What’s New, has this:
    '''New''' | [http://andreasgal.com/2014/10/14/openh264-now-in-firefox/ OpenH264 support] * (sandboxed)
    [*] Quoted from the linked page, http://andreasgal.com/2014/10/14/openh264-now-in-firefox/
    (which also includes a [https://andreasgal.files.wordpress.com/2014/10/openh264.jpg screenshot] of the Add-ons Manager entry):
    <blockquote>Today in collaboration with Cisco we are shipping support for H.264 in our WebRTC implementation. </blockquote>
    <blockquote>Cisco has agreed to distribute OpenH264, a free H.264 codec plugin that Firefox downloads directly from Cisco.</blockquote>
    <blockquote> Note: Firefox currently uses OpenH264 only for WebRTC and not for the <nowiki><video></nowiki> tag, because OpenH264 does not yet support the high profile format frequently used for streaming video. We will reconsider this once support has been added. </blockquote>
    See also:
    *https://wiki.mozilla.org/Media/WebRTC
    *https://wiki.mozilla.org/GeckoMediaPlugins

  • Need help with enhanced data source in Production system

    Hello Gurus,
    1.                  I enhanced a datasource in BW and populated the field using customer exit using CMOD function. In Dev system, i dont have much data, so I deleted the whole data and did full load.
    what shud I do in Production side, so that Delta wudnt be affected??since in production, we have millions of records, we wont do full load., what is the best way to populate the field in production after transporting the datasource to production without disturbing delta's, to reflect the new field for previous years data???
    2.  can we put 0customer and 0material in the same dimension?? how its going to affect the performance?
    Thanks in advance.,
    Best Regards,
    Pavan

    Hi,
    Please see this
    1.
    see this thread
    populated the new field with historic data
    2. can we put 0customer and 0material in the same dimension?? how its going to affect the performance?
    Its better not to use them in a single dimension  because one customer and take more than one material so if you have 100 customer and 1000 materials  this combination will generate a large number of records. Its always better to keep characteristic which are having 1:N relation ship in one dimensional in you  case customer and material will have an M:N type of relationship.which will result in slow performance.
    Regards,
    Ravi

  • Need help with Rollback data if there is error in Data load

    Hi All,
    We are trying to load data to Oracle 11g database. We want a trigger, procedure or something like that to rollback the data if there are errors in load. Is it possible to do rollback after all the records has been parsed ? So if we try to load 100 records and if there are 30 records with error, we want to rollback after all the 100 records are parsed.
    Please advice.

    >
    Thanks for the suggestion. I'll try that option. So currently we are only loading data that is validated and erroneous records are rejected using trigger. So we don't get any invalid data in table. But Now users are saying that all the records should be rejected if there is even one error in the data load.
    >
    I generally use a much simpler solution for such multi-stage ETL processes.
    Each table has a IS_VALID column that defaults to 'N'. Each step of the process only pulls data with the flag set to 'Y'.
    That allows me to leave data in the table but guarantee that it won't be processed by subsequent stages. Since most queries that move data from one stage to another ultimately have to read table rows (i.e. they can't just use indexes) it is not a performance issue to add a predicate such as "'AND IS_VALID = 'Y'" to the query that accesses data.
    1. add new unvalidated data - automatically flagged an invalid by default of 'N" on IS_VALID column
    2. run audit step #1 - capture the primary key/rowid of any row failing the audit.
    3. run audit steps #2 through #n - capture error row ids
    4. Final step - update the data setting IS_VALID to 'Y' only if a row passes ALL audits: that is, only if there are NO fatal errors for that row captured in the error table.
    That process also allows me to capture every single problem that any row has so that I can produce reports for the business users that show everything that is wrong with the data. There are some problems that the business wan't to ignore, others that can be fixed in the staging tables then reprocessed and others that are rejected since they must be fixed in the source system and that can take several days.
    For data that can be fixed in the staging tables the data is fixed and then the audit is rerun which will set the IS_VALID flag to 'Y' allowing those 'fixed' rows to be included in the data that feeds the next processing stage.

  • Need help with saving item from combobox to textfile

    Hi all. right now my codes can only save one stock information in the textfile but when I tried to save another stock in the textfile , it overrides the pervious one.
    So I was wondering which part of my codes should be changed??
    DO the following
    Create a fypgui class and put this bunch of codes inside
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import java.io.BufferedInputStream;
    import java.io.BufferedReader;
    import java.io.DataInputStream;
    import java.io.File;
    import java.io.FileReader;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.URL;
    import java.util.ArrayList;
    import java.util.Scanner;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTabbedPane;
    import javax.swing.JTable;
    public class fypgui {
         private ArrayList<Stock> stockList = new ArrayList<Stock>();
         private String[] stockArray;
         private JComboBox choice1;
         private JTabbedPane tabbedPane = new JTabbedPane();
         private JPanel displayPanel = new JPanel(new GridLayout(5, 1));
         private JButton saveBtn = new JButton("Save");
         private JPanel choicePanel = new JPanel();
         String yahootext;
         String     symbol;
         int index;
         public fypgui() {
              try {
                   //read from text file for stockname
                   File myFile = new File("D:/fyp/savedtext2.txt");
                   FileReader reader = new FileReader(myFile);
                   BufferedReader bufferedReader = new BufferedReader(reader);
                   String line = bufferedReader.readLine();
                   while (line != null) {
                        Stock stock = new Stock();
                        // use delimiter to get name and symbol
                        Scanner scan = new Scanner(line);
                        scan.useDelimiter(",");
                        String name = "";
                        String symbol = "";
                        while (scan.hasNext()) {
                             name += scan.next();
                             symbol += scan.next();
                        stock.setStockName(name);
                        stock.setSymbol(symbol);
                        stockList.add(stock);
                        line = bufferedReader.readLine();
                   //size of the array(stockarray) will be the same as the arraylist(stocklist)
                   stockArray = new String[stockList.size()];
                   for (int i = 0; i < stockList.size(); i++) {
                        stockArray[i] = stockList.get(i).getStockName();
                   //create new combobox
                   choice1 = new JComboBox(stockArray);
                   //For typing stock symbol manually
                   choice1.setEditable(true);
                   //set the combobox as blank
                   choice1.setSelectedIndex(-1);
              } catch (IOException ex) {
                   ex.printStackTrace();
              JFrame frame1 = new JFrame("Stock Ticker");
              frame1.setBounds(200, 200, 300, 300);
              JPanel panel1 = new JPanel();
              panel1.add(choice1);
              choice1.setBounds(20, 35, 260, 20);
              JPanel panel2 = new JPanel();
              JPanel panel5 = new JPanel();
              panel5.add(saveBtn);
              displayPanel.add(panel1);
              displayPanel.add(panel5);
              tabbedPane.addTab("Choice", displayPanel);
              tabbedPane.addTab("Display", choicePanel);
              JLabel label2 = new JLabel("Still in Progress!");
              choicePanel.add(label2);
              frame1.add(tabbedPane);
              frame1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame1.setVisible(true);
              saveBtn.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        // initalize index as the postion of the stock in the combo box
                        index = choice1.getSelectedIndex();
                        /*if the postion of the combobox is not blank,
                             it will get the StockName and symbol according to the
                             position and download the stock*/
                        if(index != -1){
                             symbol = stockList.get(index).getSymbol();
                             save(symbol);
         @SuppressWarnings("deprecation")
         public void save(String symbol){
              try {
                   String part1 = "http://download.finance.yahoo.com/d/quotes.csv?s=";
                   String part2 = symbol;
                   String part3 = "&f=sl1d1t1c1ohgv&e=.csv";
                   String urlToDownload = part1+part2+part3;
                   URL url = new URL(urlToDownload);
                   //read contents of a website
                   InputStream fromthewebsite = url.openStream(); // throws an IOException
                   //input the data from the website and read the data from the website
                   DataInputStream yahoodata = new DataInputStream(new BufferedInputStream(fromthewebsite));
                   // while there is some contents from the website to read then it will print out the data.
                   while ((yahootext = yahoodata.readLine()) != null) {
                        File newsavefile = new File("D:/fyp/savedtext.txt");
                        try {
                             FileWriter writetosavefile = new FileWriter(newsavefile);
                             writetosavefile.write(yahootext);
                             System.out.println(yahootext);
                             writetosavefile.close();
                        } catch (IOException e) {
                             e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
         public static void main(String[] args) {
              // TODO code application logic here
              new fypgui();
    Create a Stock class a put this bunch of codes inside
    public class Stock {
         String stockName ="";
         String symbol="";
         double lastDone=0.0;
         double change =0.0;
         int volume=0;
         public String getStockName() {
              return stockName;
         public void setStockName(String stockName) {
              this.stockName = stockName;
         public String getSymbol() {
              return symbol;
         public void setSymbol(String symbol) {
              this.symbol = symbol;
         public double getLastDone() {
              return lastDone;
         public void setLastDone(double lastDone) {
              this.lastDone = lastDone;
         public double getChange() {
              return change;
         public void setChange(double change) {
              this.change = change;
         public int getVolume() {
              return volume;
         public void setVolume(int volume) {
              this.volume = volume;
    Create a folder called fyp in D drive and create two txt file in it.
    -savedtext.txt
    -savedtext2.txt
    in the saved savedtext2.txt add
    A ,AXP
    B ,B58.SI
    C ,CLQ10.NYM
    this is my whole application. if you guys can tell me what can I do to make sure that the stock info doesn't overrides . I will more than thankful.
    Edited by: javarookie123 on Jul 9, 2010 9:49 PM

    javarookie123 wrote:
    Hi all. right now my codes can only save one stock information in the textfile but when I tried to save another stock in the textfile , it overrides.. 'over writes'
    ..the pervious one.
    So I was wondering which part of my codes should be changed??Did not look at the code closely, but I am guessing the problem lies in the instantiation of the FileWriter. Try [this constructor|http://download.oracle.com/docs/cd/E17409_01/javase/6/docs/api/java/io/FileWriter.html#FileWriter(java.io.File,%20boolean)] (<- link). The documentation is a wonderful thing. ;-)
    And generally on the subject of getting help:
    - There is no need for two question marks. One '?' means a question, while 2 or more typically means a dweeb.
    - Do your best to [write well|http://catb.org/esr/faqs/smart-questions.html#writewell] (<- link). Each sentence should start with an upper case letter. Not just the first one.
    Also, when posting code, code snippets, XML/HTML or input/output, please use the code tags. The code tags protect the indentation and formatting of the sample. To use the code tags, select the sample and click the CODE button.

  • HT5622 need help with saving to Icloud

    I have an Ipad and was saving movies on it until it let me know that I was running out of space.  I went in and purchased additional space on Icloud but now cannot figure out how to get things moved over to Icloud...help?!

    iCloud storage space are meant mainly for backup purposes. You can't move your data from iPad to iCloud like other cloud storage like Dropbox or Box.net.
    You need to clear up space from your iPad.
    Settings>General>Usage>Storage>Delete what is not wanted

  • Need help with infinity data extencion kit

    i had bt infinity installed the other day and was not told i need a better wireless card to get full speed i rang up bt and they told me my wireless card is not compatable to go above 20mb so i ask them to send out a data extencion kit and they told me they will need to send out someone and it will cost £205 for it all, Surly this should be part of the install or at least the engineer should have discussed this with me please someone help

    Read this topic
    http://community.bt.com/t5/BB-in-Home/Data-Extension-Kit/td-p/64869
    If any post helps tick the star box on the left
    Just cause Im paranoid dont mean they are not out to get me

  • Need help with converting date format to decimal in SSRS expression.

    Hi all,
    I have a decimal data type column with a record in the following format 20150219 --> yyyyMMdd. And I am trying to convert the return value from SSRS date/time parameter to a decimal value.
    The TMDTOP column is the decimal data type with date records in yyyyMMdd format.
    My return parameter is the following:
    =IIf(IsNothing(Parameters!SystemDate.Value),Fields!TMDTSY.Value,CDec(Format(Parameters!SystemDate.Value,"yyyyMMdd"))) 
    When I try to run the report I get the following error:
    Failed to evaluate the FilterValue of the DataSet ‘DataSet1’. (rsFilterEvaluationError)
    I appreciate if anyone can help me on solving this problem.
    Thanks in advance.

    why casting date to decimal here? Can you explain?
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Need help with recovering data from a truecrypt HDD

    I have done something stupid, I have run fdisk on my truecrypt hdd by mistake, and created 2 new partition. the 1st one on 67mb and the 2sd for the rest of the hdd.
    Can someone plz help me with restoring the data? I am not really sure there to begin.

    Get testdisk.  I use Parted Magic to recover partitions with Testdisk.  So long as you can decrypt the resurrected partitions AND provided you have NOT written to those two partitions after they were fdisk'ed you should be able to recover from this mess.  I really recommend PartedMagic for this sort of thing only because it has a good interface and a lot of other tools in one place.
    Testdisk isn't hard to use and there are mini-tutorials out there if you're really stuck such as these links from our wiki:
    Testdisk and Photorec

  • I need help with 'Documents & Data' taking up all the space on my iPhone

    Hello, I have searched for days on the internet for a way to solve my problem but nothing and I really mean NOTHING seems to work at all.
    I can't buy any software either.
    When I go into Settings>iCloud Documents &  Data are off and have been off all the time. Yet I STILL have Documents &  Data taking up 5 GB of my phone and I don't have much space either.
    I have hopelessly tried deleting most of my messages and NONE and I mean NONE of the space has been given to me, nothing changed but my messages completely disappeared. No I do not use iCloud and I have the latest software updates. My phone is not jailbroken. I even tried deleting most of my apps and installing them again but that didn't work either. Photos take a small amount of space on my iPhone.
    I really hope someone can help me this is a really big issue for me and I do not fancy resetting the phone back to its Factory settings.
    I am new to the apple forum so sorry if this isn't in the right category or something. Thank you in advance. I also do not really fancy going all the way to the centre of the city to go to a Genius Bar.
    By the way, a few minutes ago I tried backing up my iPhone and syncing it again and a message popped out telling me that I need additional 4 GB of space in order to let it sync and I do not understand this, Documents & Data take more and more of my space every time I look. Also all the messages I delete come right back when I turn the phone on and off.

    Hi demolitonlovers,
    If you have unaccounted for data taking up storage space on your iPhone, you may find the following articles helpful in identifying what is taking up the space and how to remove it:
    iPhone, iPad, and iPod: Understanding capacity
    http://support.apple.com/kb/ht1867
    iOS: "Not enough free space" alert when trying to sync
    http://support.apple.com/kb/TS1503
    Regards,
    - Brenden

  • Need help with saving text

    i,ve created frame with a JTable, and add new button.
    every time i run project table gets empty, of course, that is normal, but i would like that when i tipe something in my table and press button, things i wrote in table get saved. lets say that the variable name of JTable is "table" and name of button "save". i'm not expert in java programing but i really need this code. could someone please be so generous and wrote that code for me? i need it till tomorrow :S

    What you need is Serialization.
    I did a quick google search and found this:
    http://java.sun.com/developer/technicalArticles/Programming/serialization/
    It basically allows you to save your object and load it later.
    You could also save your stuff in plain text. Follow this tutorial to learn how, This is maybe a bit easier if you don't know what objects are.
    http://java.sun.com/docs/books/tutorial/essential/io/index.html

  • Need help with importing data in partition table

    Hi,
    DB:8.1.7
    OS: win 2003 server
    I have a table which is 4.5GB in size. I created a new partition table,with local indexes. I exported the original table with all indexes,triggers and procedures.
    After creating the empty partitioned table,i imported the dump file. The data isn't loaded. My questions are:
    1) Will the indexes be overwritten?
    2) Will the data go automatically in allocated partitions?
    3) Do i need to export only table data ignoring indexes,triggers etc?
    Best Regards,

    ateeqrahman wrote:
    1) Will the indexes be overwritten?Not if they already exist with the same name, or with the same logical definition (ie. same columns are already indexed)
    2) Will the data go automatically in allocated partitions?Yes
    3) Do i need to export only table data ignoring indexes,triggers etc?Do you need the triggers? do you need indexes that you haven't created manually? What about grants?

  • Need help with JTable data selection.

    Hi,
    I have a table with multiple rows and each row has a checkbox.user might select checkbox for any row. i want to capture data of all those rows where checkbox is checked. i need to capture data on the click event of my Jbutton.kindly suggest how to proceed.
    Thanks

    hii,
    1/ capture = PrintScreen
    2/ capture = New Window
    3/ capture = somehow to save selected row(s)
    ... kopik

  • Need help with EXIF date on raw images

    I have just over 100 images (taken by 2nd shooter) that have the wrong EXIF date (JPEG and raw).  They were taken with a 2nd camera that was off by +15hrs 57min.
    There are many programs that will easily edit the EXIF date/time on the JPEGs, but they don't work with the raw images.
    I've read that Lightroom can compensate for incorrect dates upon import, but after searching, I can't find any information on how to do it.  Can someone please help?

    I got EXIFTool working and solved my problem down to the exact second.
    I was able to sync the times to within one second, based on one one particular event.  One shot, taken with camera 1 was right before a handshake, while both people were extending hands, the other shot, with camera 2 (wrong EXIF date) was the actual handshake.  I used this information to determine that camera 2 was 15hours 57minutes 18seconds fast.
    Using EXIFTool GUI, I modified the date/time shift to decrement 15hours 57minutes 18seconds for all images from the second camera (both raw and JPEG).  After this was complete, I checked the times, and the two frames (before and during the handshake) were only one second apart, and in correct sequence.
    I imported the images from both cameras into Lightroom and had it rename the images based on time down to the second (YYYYMMDDHHMMSS-filename).
    Now everything is great!

Maybe you are looking for

  • IMessage not working since upgrading to ios 5.1 iPhone or iPad??!!

    Both myself and my partner have iPhones. I'm on a 4S she has my old 3GS. Since we both updated to 5.1 iMessage doesn't work, anyone I know who hasn't upgraded past 5.0, iMessage still works. Any ideas. Auto time update is on, on both handsets, it's s

  • Purchase Order restricted by Purchase Requisition

    Hi Experts, In our company, the purchase requisition is a "MUST" to create a Purchase Order. Now I want to restrict the Purchase Order to ask for a Requisition before saving. The P.O should not be saved without a valid Requisition. Please Help. Regar

  • Old data how we wploaded in sap r/3

    Dear sir we can uploaded old data in sap r/3. if yes .how we uploaded old data in sap r/3 thanks

  • I don't recieved the password for opening .pdf file

    Hi, I'm Daniela from Brazil. I recieved de email for the free update to Lion with a .pdf file that needs a password to open, in this email they said that i would recieve another email with this password to open the file and get the code for update in

  • How to make two standalone oracle databases into master/slave relationship

    i'm not talking about RAC... is there any way to make two oracle databases into master/slave relationship? one is hot one is cold, when the hot one is down, the cold one automatically picks up? and of course two databases are in sync all the time. an