How do I get an arrayList from an external class

I have 3 classes. 1 is used to create a contact object. 2 is for my GUI 3 Does all the buisness logic. I need to get an updated arrayList back from class 3 to display the contents in my GUI class. Can someone give me a snipet. I know hat to do from there so am only looking for code to get my updated ArrayList.
If you need to see a snipet of code ask.

Here are my Buissness Layer and my GUI the other class is just and object class. Do I have the correct MVC concept or can I improve? If so how?
In addition I made my arrayList more visible(loads of ///////////////////////////////////// around them) can u tell me if this is correct will I be able to CRUD(the arrayList) as it is, meaning if it correctly laid out between the 2 classes for me to work on? Last thing... I think my arrayLists are creating an xlint error and I cant pick it up in compiler can soemoene point out why?
GUI class...
     Filename:     ContactsListInterface.java
     Date:           16 March 2008
     Programmer:     Yucca Nel
     Purpose:     Provides a GUI for entering names and contact numbers into a telephone directory.
                    Also allows options for searching for a specific name and deleting of data from the record
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.text.*;
import java.io.*;
import java.util.*;
import java.text.*;
public class Phonebook1 extends JFrame implements ActionListener
{ //start of class
     // construct fields, buttons, labels,text boxes, ArrayLists etc
     JTextPane displayPane = new JTextPane();
     JLabel listOfContacts = new JLabel("List Of Contacts");               // creates a label for the scrollpane
     JButton createButton = new JButton("Create");
     JButton searchButton = new JButton("Search");
     JButton modifyButton = new JButton("Modify");
     JButton deleteButton = new JButton("Delete");
     Contact c = new Contact();
     ArrayList<Person> contactList = c.getList();
     // create an instance of the ContactsListInterface
     public Phonebook1()
     { // start of cli()
          super("Phonebook Interface");
     } // end of cli()
     public JMenuBar createMenuBar()
     { // start of the createMenuBar()
          // construct and populate a menu bar
          JMenuBar mnuBar = new JMenuBar();                              // creates a menu bar
          setJMenuBar(mnuBar);
          JMenu mnuFile = new JMenu("File",true);                         // creates a file menu in the menu bar which is visible
               mnuFile.setMnemonic(KeyEvent.VK_F);
               mnuFile.setDisplayedMnemonicIndex(0);
               mnuFile.setToolTipText("File Options");
               mnuBar.add(mnuFile);
          JMenuItem mnuFileExit = new JMenuItem("Save And Exit");     // creates an exit option in the file menu
               mnuFileExit.setMnemonic(KeyEvent.VK_X);
               mnuFileExit.setDisplayedMnemonicIndex(1);
               mnuFileExit.setToolTipText("Close Application");
               mnuFile.add(mnuFileExit);
               mnuFileExit.setActionCommand("Exit");
               mnuFileExit.addActionListener(this);
          JMenu mnuEdit = new JMenu("Edit",true);                         // creates a menu for editing options
               mnuEdit.setMnemonic(KeyEvent.VK_E);
               mnuEdit.setDisplayedMnemonicIndex(0);
               mnuEdit.setToolTipText("Edit Options");
               mnuBar.add(mnuEdit);
          JMenu mnuEditSort = new JMenu("Sort",true);                    // creates an option for sorting entries
               mnuEditSort.setMnemonic(KeyEvent.VK_S);
               mnuEditSort.setDisplayedMnemonicIndex(0);
               mnuEdit.add(mnuEditSort);
          JMenuItem mnuEditSortByName = new JMenuItem("Sort By Name");          // to sort entries by name
               mnuEditSortByName.setMnemonic(KeyEvent.VK_N);
               mnuEditSortByName.setDisplayedMnemonicIndex(8);
               mnuEditSortByName.setToolTipText("Sort entries by first name");
               mnuEditSortByName.setActionCommand("Name");
               mnuEditSortByName.addActionListener(this);
               mnuEditSort.add(mnuEditSortByName);
          JMenuItem mnuEditSortBySurname = new JMenuItem("Sort By Surname");     // to sort entries by surname
               mnuEditSortBySurname.setMnemonic(KeyEvent.VK_R);
               mnuEditSortBySurname.setDisplayedMnemonicIndex(10);
               mnuEditSortBySurname.setToolTipText("Sort entries by surname");
               mnuEditSortBySurname.setActionCommand("Surname");
               mnuEditSortBySurname.addActionListener(this);
               mnuEditSort.add(mnuEditSortBySurname);
          JMenu mnuHelp = new JMenu("Help",true);                                        // creates a menu for help options
               mnuHelp.setMnemonic(KeyEvent.VK_H);
               mnuHelp.setDisplayedMnemonicIndex(0);
               mnuHelp.setToolTipText("Help options");
               mnuBar.add(mnuHelp);
          JMenuItem mnuHelpHelp = new JMenuItem("Help");                              // creates a help option for help topic
               mnuHelpHelp.setMnemonic(KeyEvent.VK_P);
               mnuHelpHelp.setDisplayedMnemonicIndex(3);
               mnuHelpHelp.setToolTipText("Help Topic");
               mnuHelpHelp.setActionCommand("Help");
               mnuHelpHelp.addActionListener(this);
               mnuHelp.add(mnuHelpHelp);
          JMenuItem mnuHelpAbout = new JMenuItem("About");                         // creates a about option for info about api
               mnuHelpAbout.setMnemonic(KeyEvent.VK_T);
               mnuHelpAbout.setDisplayedMnemonicIndex(4);
               mnuHelpAbout.setToolTipText("About this program");
               mnuHelpAbout.setActionCommand("About");
               mnuHelpAbout.addActionListener(this);
               mnuHelp.add(mnuHelpAbout);
          return mnuBar;
     } // end of the createMenuBar()
     // create the content pane
     public Container createContentPane()
     { // start of createContentPane()
          //construct and populate panels and content pane
          JPanel labelPanel = new JPanel(); // panel is only used to put the label for the textpane in
               labelPanel.setLayout(new FlowLayout());
               labelPanel.add(listOfContacts);
          JPanel displayPanel = new JPanel();// panel is used to display all the contacts and thier numbers
               setTabsAndStyles(displayPane);
               displayPane = addTextToTextPane();
               displayPane.setEditable(false);
          JScrollPane scrollPane = new JScrollPane(displayPane);
               scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS); // pane is scrollable vertically
               scrollPane.setWheelScrollingEnabled(true);// pane is scrollable by use of the mouse wheel
               scrollPane.setPreferredSize(new Dimension(400,320));
          displayPanel.add(scrollPane);
          JPanel workPanel = new JPanel();// panel is used to enter, edit and delete data
               workPanel.setLayout(new FlowLayout());
               workPanel.add(createButton);
                    createButton.setToolTipText("Create a new entry");
                    createButton.addActionListener(this);
               workPanel.add(searchButton);
                    searchButton.setToolTipText("Search for an entry by name number or surname");
                    searchButton.addActionListener(this);
               workPanel.add(modifyButton);
                    modifyButton.setToolTipText("Modify an existing entry");
                    modifyButton.addActionListener(this);
               workPanel.add(deleteButton);
                    deleteButton.setToolTipText("Delete an existing entry");
                    deleteButton.addActionListener(this);
          labelPanel.setBackground(Color.red);
          displayPanel.setBackground(Color.red);
          workPanel.setBackground(Color.red);
          // create container and set attributes
          Container c = getContentPane();
               c.setLayout(new BorderLayout(30,30));
               c.add(labelPanel,BorderLayout.NORTH);
               c.add(displayPanel,BorderLayout.CENTER);
               c.add(workPanel,BorderLayout.SOUTH);
               c.setBackground(Color.red);
          // add a listener for the window closing and save
          addWindowListener(
               new WindowAdapter()
                    public void windowClosing(WindowEvent e)
                         int answer = JOptionPane.showConfirmDialog(null,"Are you sure you would like to save all changes and exit?","File submission",JOptionPane.YES_NO_OPTION);
                         if(answer == JOptionPane.YES_OPTION)
                              System.exit(0);
          return c;
     } // end of createContentPane()
     protected void setTabsAndStyles(JTextPane displayPane)
     { // Start of setTabsAndStyles()
          // set Font style
          Style fontStyle = StyleContext.getDefaultStyleContext().getStyle(StyleContext.DEFAULT_STYLE);
          Style regular = displayPane.addStyle("regular", fontStyle);
          StyleConstants.setFontFamily(fontStyle, "SansSerif");
          Style s = displayPane.addStyle("bold", regular);
          StyleConstants.setBold(s,true);
     } // End of setTabsAndStyles()
     public JTextPane addTextToTextPane()
     { // start of addTextToTextPane()
          int numberOfEntries = contactList.size();
          int count = 0;
          Document doc = displayPane.getDocument();
          try
          { // start of tryblock
               // clear previous text
               doc.remove(0,doc.getLength());
               // insert titles of columns
               doc.insertString(0,"NAME\tSURNAME\tHOME NO\tWORK NO\tCELL NO\n",displayPane.getStyle("bold"));
               for(Person person : contactList)
                    Person c = contactList.get(count);
                    doc.insertString(doc.getLength(),c.name,displayPane.getStyle("regular"));
                    count ++;
          } // end of try block
          catch(BadLocationException ble)
          { // start of ble exception handler
               System.err.println("Could not insert text.");
          } // end of ble exception handler
          return displayPane;
     } // end of addTextToTextPane()
     // code to process user clicks
     public void actionPerformed(ActionEvent e)
     { // start of actionPerformed()
          String arg = e.getActionCommand();
          // user clicks create button
          if(arg.equals("Create"))
               c.createNew();                                                  // method to create a new Contact
               addTextToTextPane();
          if(arg.equals("Search"))
               c.searchExisting();                                             // method to search for an existing entry
          if(arg.equals("Modify"))
               c.modifyExisting();
          if(arg.equals("Delete"))
               c.deleteExisting();
          if(arg.equals("Exit"))
     } // end of actionPerformed()
     // method to create a new contact
     public static void main(String[] args)
     { // start of main()
          // Set look and feel of interface
          try
          { // start of try block
               UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
          } // end of try block
          catch(Exception e)
          { // start of catch block
               JOptionPane.showMessageDialog(null,"There was an error in setting the look and feel of this application","Error",JOptionPane.INFORMATION_MESSAGE);
          } // end  of catch block
          Phonebook1 pb = new Phonebook1();
          pb.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
          pb.setJMenuBar(pb.createMenuBar());
          pb.setContentPane(pb.createContentPane());
          pb.setSize(520,500);
          pb.setVisible(true);
          pb.setResizable(true);
     } // end of main()
} //end of classBuisness Layer.....
import javax.swing.JOptionPane;
import java.util.ArrayList;
public class Contact
     ArrayList<Person> contactList = new ArrayList<Person>();               // To hold all the contacts
     Person p = new Person();                                                       // Create a instance of the  Person class
     int maxLength = 10;                                                                 // To be used as a boundary value for the Strings entered
     public void createNew()
          String firstName = getName("Create");
          if(firstName.trim().length() > maxLength)
               JOptionPane.showMessageDialog(null,"You may not enter a name longer than "+maxLength+" chracters. Please try again","Error",JOptionPane.ERROR_MESSAGE);
               createNew();
          if(firstName == null)
               finish();
          if(firstName.length() == 0)
               JOptionPane.showMessageDialog(null,"You may not enter a blank name. Please try again.","Error",JOptionPane.ERROR_MESSAGE);
               createNew();
          p.name = firstName.trim().toUpperCase();
          contactList.add(p);
     public void searchExisting()
     public void modifyExisting()
     public void deleteExisting()
     public String getName(String str)
          String strx = str;
          String firstName = JOptionPane.showInputDialog(null,"Please enter the name of the contact you wish to "+strx);
          if(firstName == null)
          finish();
          return firstName;
     public void finish()
          System.exit(0);
     public ArrayList getList()
          ArrayList<Person> list = contactList;
          return list;
}Edited by: Yucca on Apr 17, 2008 4:48 PM

Similar Messages

  • HT201250 How do I get my information from my external hard drive to my MacBook Pro?

    I have the WD My Passport for Mac external hard drive and backed up my computer last night.  Had my hard drive replaced today and now trying to get all my info back on my computer.  Tried using Time Machine, but I cant figure out how to get Time Machine to automatically put my info from the external drive onto my computer. Help please!

    What follows assumes that you have been using Time Machine, backing up to that external drive.
    The easiest way would be to connect the external drive, then reboot into Recovery HD. When you restart and you hear the chime, hold down the option key until the screen appears with the different drives displayed. Click Recovery HD.
    In the screen that comes up, choose Restore from Time Machine Backup. You will then be given a choice of full backups to restore from; you would try the most recent one first.
    Reply with problems or results please

  • How can I get hidden files from an external device with terminal?

    Here is my situation. I have an mp3 player that is a Sansa Clipp.  This version has third party firmware installed that not only hides the music files but will not let me copy them at all when I do a straight copy.  All I get are empty folders.  I want to install the actual firmware but first I need to back up the entire contents of the device because essentially I need to wipe the malicious firmware and everything else off the disc in order to to this. This device came from the Bureau of Prisons and is sold to prisoners.  It is basically locked to the hilt and the only way to unlock it officially is to send it to the third party that installed the firmware and pay them $25.  I know that I should be able to use terminal to get the files off of this but so far a  "cp" command has only given me the files that I get when I drag and drop.  The music files seem to be hidden in a partition that I can't access.  Let me know if anyone has any help they can give.  I just need to back up the full contents of the device.  I have instructions on how to wipe it and reinstall but backing up is crucial to this.  Thanks for any help and please ask questions if I haven't made my problem clear enough.

    I have know way of knowing whether or not this will copy the data. The device could have some hidden hand-shack.
    I assume the Sansa Clipp is a usb connected device.  The method works for a flash drive.  There is a different method for a harddrive..
    First, you need to find the name of the device.  Mount the device.
    /Applications/Utilities/Terminal.
    # run the df command.  type command then press return.
    mac $ df -h
    Filesystem                Size   Used  Avail Capacity  Mounted on
    /dev/disk1s16             272G   259G    12G    95%    /
    devfs                     113K   113K     0B   100%    /dev
    fdesc                     1.0K   1.0K     0B   100%    /dev
    <volfs>                   512K   512K     0B   100%    /.vol
    automount -nsl [217]        0B     0B     0B   100%    /Network
    automount -fstab [222]      0B     0B     0B   100%    /automount/Servers
    automount -static [222]     0B     0B     0B   100%    /automount/static
    /dev/disk1s10             500G   302G   197G    60%    /Volumes/ServiceRepairManuals
    /dev/disk1s14              80G    50G    30G    62%    /Volumes/Second-80
    /dev/disk2s1              446M    15M   431M     3%    /Volumes/2partitions
    /dev/disk2s2               46M   9.0M    37M    20%    /Volumes/second-disk
    mac $ # unmount disk by dragging to trash can.
    mac $ df -h
    Filesystem                Size   Used  Avail Capacity  Mounted on
    /dev/disk1s16             272G   259G    12G    95%    /
    devfs                     112K   112K     0B   100%    /dev
    fdesc                     1.0K   1.0K     0B   100%    /dev
    <volfs>                   512K   512K     0B   100%    /.vol
    automount -nsl [217]        0B     0B     0B   100%    /Network
    automount -fstab [222]      0B     0B     0B   100%    /automount/Servers
    automount -static [222]     0B     0B     0B   100%    /automount/static
    /dev/disk1s10             500G   302G   197G    60%    /Volumes/ServiceRepairManuals
    /dev/disk1s14              80G    50G    30G    62%    /Volumes/Second-80
    mac $ # figure out the name of the device.
    mac $ # see what dev disappeared.
    mac $ # in this case the unix names of the partitions are: /dev/disk2s1 & dev/disk2s2
    mac $ # the device, flash name, is /dev/disk2
    mac $ # pull out the device from it's usb port.  Plug it back in.
    mac $ df -h
    Filesystem                Size   Used  Avail Capacity  Mounted on
    /dev/disk1s16             272G   259G    12G    95%    /
    devfs                     113K   113K     0B   100%    /dev
    fdesc                     1.0K   1.0K     0B   100%    /dev
    <volfs>                   512K   512K     0B   100%    /.vol
    automount -nsl [217]        0B     0B     0B   100%    /Network
    automount -fstab [222]      0B     0B     0B   100%    /automount/Servers
    automount -static [222]     0B     0B     0B   100%    /automount/static
    /dev/disk1s10             500G   302G   197G    60%    /Volumes/ServiceRepairManuals
    /dev/disk1s14              80G    50G    30G    62%    /Volumes/Second-80
    /dev/disk2s1              446M    15M   431M     3%    /Volumes/2partitions
    /dev/disk2s2               46M   9.0M    37M    20%    /Volumes/second-disk
    mac $ dd if=/dev/disk2 bs=4096 | gzip | dd of=~/disk2-s1-2 bs=4096
    dd: /dev/disk2: No such file or directory
    0+1 records in
    0+1 records out
    20 bytes transferred in 0.014734 secs (1357 bytes/sec)
    mac $

  • How do I get my music from an external hard drive

    I made the mistake of moving my music folder from my computer to my hard drive to free up space on the computer.  Now my ITunes doesn't know how to connect to my music.  It comes up as a set-up page, as if I had never had the account.  Any ideas?

    Put it all back and make sure it works then post back.
    I made the mistake of moving my music folder
    Actually, what I meant to say is I moved my music to an external hard drive.
    So what exactly did you move?

  • I'm having issues syncing my ipod to my external hardrive's library. How do I sync and get the music from my external hard drive?

    I recently moved the music from my old computer in itunes to my external hardrive (changed the media file location and consolidated library). I connected my external hardrive to my new computer (windows 7) and changed my itunes media file to my external hardrive and consolidated my new computer's library to my external hardrive. When I connect my iPod, it is only grabbing the music from my new computer and not my external hardrive. How do I get the music from my external hardrive onto my iPod?

    Did you move the entire /Music/iTunes/ folder?
    File > Add folder to library and select the folder with music on the external.

  • How can i get all values from jtable with out selecting?

    i have one input table and two output tables (name it as output1, output2). Selected rows from input table are displayed in output1 table. The data in output1 table is temporary(means the dat wont store in database just for display purpose).
    Actually what i want is how can i get all values from output1 table to output2 table with out selecting the data in output1 table?
    thanks in advance.
    raja

    You could set the table's data model to be the same:
    output2.setModel( output1.getModel() );

  • How do you get your apps from the i tunes library onto your mac?

    how do you get your apps from i tunes library onto your mac

    You don't.  Apps from iTunes are for iOS devices.  Apps for the Mac come from the Mac app store.  Click the apple >> app store.

  • How do I get all contacts from my iphone 4 to icloud?

    how do I get all contacts from my iphone 4 to icloud? I've just got some of them.

    All you have to do is enable iCloud on your phone and turn notes on.  They should automatically appear on your phone.

  • How do I get exchange contacts from my iphone up to iCloud?

    How do I get exchange contacts from my iphone up to iCloud?
    I am so bummed if there isnt a way....sigh
    thanks, Jamie...

    Jepper wrote:
    I am so bummed if there isnt a way....sigh
    Company Exchange account? If so, this is the way most employers want things.

  • How do I get voice memos from an un-synced iPhone onto a MacBookPro?

    How do I get voice memos from an un-synced iPhone onto a MacBookPro?
    Problem: when I click Sync I get a warning stating "Are you sure you want to sync music? All existing songs and playlists on the iPhone “Jarrod Vassallo’s iPhone” will be replaced with songs and playlists from your iTunes library."
    I don't care if the iPhone syncs with the laptop (and the music is lost), I just cannot afford to lose the Voice Memos too as they are very important. Any suggestions?

    To follow this user tip using iTunes 11, fist go to View>Show Sidebar.  Also, Transfer Purchases (step 5) is now in File>Devices.
    If they're too large to email and you don't want to sync, the only other option is to use 3rd party software to transfer them using usb, such as PhoneView (Mac only) or Touch Copy (PC or Mac).

  • How do you get a RESPONSE from Verizon?

    How does one get a response from Verizon?  Here's my situation...
    Given the amount of trouble that I have had with a recent order, you would think that I was trying to land a 747 jet on my roof.  In reality, all I was aiming to do was to cancel the $19.99 per month phone service that I never used.  I do not even own a phone, for that matter.  I also had enhanced high speed Internet, and I wanted to retain the high speed Internet.  A few days before January 13, 2012, I called Verizon and spoke to the 1st sales representative, who ensured me that it was no problem to cancel the phone service and yet retain the high speed Internet for the same monthly price.  24 hours later, my high speed DSL service was no longer functioning.  I will try to briefly explain the disastrous customer service that ensued. 
    The first several phone calls to Verizon were not productive as I was transferred to the wrong department, and then at least one of my phone calls was dropped by the Verizon server.  The representative did not call me back.  I finally got in touch with a technical support representative, the 2nd Verizon representative, who informed me that the high speed Internet had been turned off and that I had to speak to a sales representative to solve the issue.  Another sales representative, the 3rd Verizon representative, informed me that the 1st representative had cancelled my phone line, and thus cancelled all of my services.  Great.  The 3rd representative informed me that he was absolutely capable of handling the problem and that he would simply add a new order for high speed Internet, which was to be activated the next morning.  The next morning came and went, and guess what?  No Internet.  I called again.  The 4th Verizon representative told me that everything that had been done previously was incorrect and that the sales department is not capable of making such changes.  She told me that she could not help me and that my claim had to be submitted to a different department, which has the authority to un-do all of the previous changes.  She told me that I would receive a call back the same day to resolve the issue.  Given my previous experiences with Verizon, I was confident that I would not, in fact, receive a call back and so I asked her how I could get transferred to this department, if I needed to call again.  She said that I could not be transferred.  Okay.  So then I asked her what to ask for so that next time I called, I could be transferred to the correct department without dealing with yet another sales representative who gives me yet a different story.  She informed me that she could not provide that information to customers.  The Department That Shall Not Be Named (and that I cannot contact) did not call me, and I was not surprised.  Unfortunately, I did not know how to go about contacting them, because, as I was told, customers aren’t allowed to do that. 
    The 6th phone call to Verizon was dropped by the Verizon server.  The 7th phone call to Verizon went to the 5th Verizon representative, a sales associate who placed us on hold for the first 15 minutes only to inform us that she could not find any record of our Internet service.  What the heck was she doing, checking her Facebook account?  She finally returns, puts us on another extended hold, and then adamantly tells us that we need to speak with technical support, which, if you recall, was the first Verizon party that I spoke at the beginning of this debacle.  The 5th  representative transfers me again to technical support.  Of course, the technical support personnel, the 6th Verizon representative said what the first one did, that the account was inactive and that we needed to talk to the sales department.  My husband was on the phone at this point because I was DONE.  When the 6th technical support representative tried to transfer him back to the sales department, my husband insisted that the 6th technical support representative remain on the line while we spoke to yet another sales representative, the 7th Verizon representative.  The 6th technical support representative patiently waited with us while we sat in yet another long queue to speak with a member of the sales department. 
    The 7th sale representative, from the retention department based out of New Jersey, found that all previous orders had been set up erroneously.  She cancelled the old orders and reinstated a completely new order.  The DSL began working a few days later.  MAGIC.  She then left me a voicemail message saying that she would eliminate the activation and shipping fee (duh) as I never canceled the account to begin with and as I already had the equipment.  She also applied a coupon to reduce the price to around $30 per month, assured for the next 2 years.  I was relieved. 
    You can imagine our frustration then when we received the bill for $79 on February 6, 2012, which included a much higher monthly rate (around $45) and the shipping and activation fee of $19.99 that we were assured we would not pay. Again, nothing was shipped to us because we already had the equipment.
    Our next phone call to Verizon landed us with a guy, the 8th Verizon representative, who had no intention of helping us.  According to him, there was no record of these wrongs, and despite the fact that we had an old account number and three order numbers that were screwed up, he did not deem that there was enough evidence to change our monthly bill.  (Unfortunately, the 7th Verizon representative did not make notes or appropriately document the situation on the new account.)  The 8th Verizon representative then had the audacity to comment that we could be lying to him, yet he was unwilling to view the evidence that we could have presented.  Instead, he suggested that we call tech support again and try to go through the same process to get connected to the mysterious “retention department” which he knew nothing about. 
    At this point, I was beyond fed up.  The attitude of the 8th Verizon representative put me over the edge.  I filed a complaint with the Better Business Bureau (BBB) with an abbreviated version of this story.  I did not file the complaint to get back at Verizon.  Instead, I filed the complaint because I knew that another phone call to Verizon would be useless.  I’ve been dealing with this issue for over a month, and I’m sick of it.  I have better things to do with my time, believe it or not, and this situation has resulted in a significantly waste of my time over what, in my opinion, was a very simple issue to resolve. 
    The BBB processed the complaint and I was contacted last Friday afternoon by a Verizon representative (the 9th) who said that she was looking into the matter and that she would respond to me within two to three business days.  Well, it’s almost the end of the week, and I have received no response.  Again, after all of this, how could I be surprised? 
    I have been a Verizon customer, wireless and residential, for as long as I can remember, but I am reaching the point of outrage.  This situation is truly unacceptable. 
    You would think that, in 2012, with all of the technology available to us and the fact that Verizon is a COMMUNICATIONS COMPANY, that at least Verizon employees would be able to make a basic change to an existing order and that at least one out of 9 Verizon representatives would be able to solve this issue in a span of over four weeks.  Think again. 
    How does one get a response from Verizon? 

    dougiedc wrote:
    It boggles the mind.  The Verizon store on L Street downtown Washington, D.C. cannot access my Verizon account.  They can only sell cellphones then it's up to me to contact Verizon on my own to get the hook up. I even asked "Are you Verizon employes?  Is this a vendor store or is it really a Verizon owned and operated store?"  The answer "Yes, we are Verizon employes, yes this is a Verizon owned and operated store" ...
    Yes, it indeed boggles the mind.  I'm of course referring to the fact that your post concerns Verizon Wireless products and services.  This forum is dedicated exclusively to Verizon Communications services.   As you probably know, Verizon Wireless and Verizon Communications operate as separate companies.
    If you need help for a Verizon wireless product or service, it's best to direct questions to the Verizon Wireless forums.  You can reach them by clicking on "Wireless" (either here or at the top of the page).
    Good luck and I sincerely hope you get your issue resolved.

  • HT204053 how do i get all pictures from my phone in icloud to my macbook

    I recently had to buy a new hard drive for my macbook and I am having problems transferring photos.  How can i get my photos from my phone in iphoto?  I had

    Setting/Photos & Camera/My Photo Stream.
    Then enable it in iPhoto on the computer.

  • How can i get thes songs from ipod nano to the itunes libary??

    hi
    i have ipod nano and i sync it with over 500 songs .....my bad i lose all that songs on my libary  .... how can i get thes songs from ipod nano to the itunes libary??

    See this older post from another forum member Zevoneer on different ways to copy content from your iPod to your computer.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • How to get maximal value from the data/class for show in Map legend

    I make WAD report that using Map Web Item.
    I devide to four (4) classes for legend (Generate_Breaks).
    I want to change default value for the class by javascript and for this,
    I need to get maximal value from the class.
    How to get maximal value from the data/class.
    please give me solution for my problem.
    Many Thx
    Eddy Utomo

    use this to get the following End_date
    <?following-sibling::../END_DATE?>
    Try this
    <?for-each:/ROOT/ROW?>
    ==================
    Current StartDate <?START_DATE?>
    Current End Date <?END_DATE?>
    Next Start Date <?following-sibling::ROW/END_DATE?>
    Previous End Date <?preceding-sibling::ROW[1]/END_DATE?>
    ================
    <?end for-each?>
    o/p
    ==================
    Current StartDate 01-01-1980
    Current End Date 01-01-1988
    Next Start Date 01-01-1990
    Previous End Date
    ================
    ==================
    Current StartDate 01-01-1988
    Current End Date 01-01-1990
    Next Start Date 01-01-2005
    Previous End Date 01-01-1988
    ================
    ==================
    Current StartDate 01-01-2000
    Current End Date 01-01-2005
    Next Start Date
    Previous End Date 01

  • How we can get the values  from one screen to another screen?

    hi guru's.
         how we can get the values  from one screen to another screen?
              we get values where cusor is placed but in my requirement i want to get to field values from one screen to another screen.
    regards.
      satheesh.

    Just think of dynpros as windows into the global memory of your program... so if you want the value of a field on dynpro 1234 to appear on dynpro 2345, then just pop the value into a global variable (i.e. one defined in your top include), and you will be able to see it in your second dynpro (assuming you make the field formats etc the same on both screens!).

Maybe you are looking for

  • Insert into and Invalid numeric constant

    Hi all, i try create table t1 f1 fixed(10) and insert -2 into into t1: insert into t1(f1) values (-2) works fine  insert into t1(f1) values (-(2)) does not work (Error Executing 'insert into t1(f1) values (-(2))' [-3016] (at 28): Invalid numeric cons

  • Is the MacBook Pro refurbished worth it?

    I really want a cheap good laptop for my purposes of using editing and youtube and more thanks

  • Metdata Query Crippling the Database

    Hi All, We are using ResultSet getProcedureColumns(String catalog,                String schemaPattern,                String procedureNamePattern,                String columnNamePattern) throws SQLException; method of the interface DatabaseMetaData

  • Login credidentials and HandlerChain problem

    hi, i have a problem with getting user who call a web service and logging soap message together. i was getting a user with this code: Logger log = LoggerFactory.getLogger(""); String login = ""; IUser user = UMFactory.getAuthenticator().getLoggedInUs

  • Acrobat v4.0 Release Date

    Hello, I am wondering when Adobe Acrobat v4.0 was released to the public -- that is, the release-to-market date. Thanks for your help! Matt