Adding a contact to an address book, please help!

hi,
I'm trying to write new infomation to my file but i cant seem to get it to work.
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.io.*;
import java.lang.*;
import java.text.*;
public class AddressBook extends JFrame implements ActionListener
     FlowLayout leftLayout;
     JFrame winNew;
JTextField txtName, txtPhone, txtMobile, txtAddress;
JButton btnImport, btnAdd, btnNext, btnPrevious, btnSave;
JLabel lblTitle, lblName, lblPhone, lblMobile, lblAddress;
JPanel pTitle, pName, pPhone, pMobile, pAddress, pButtons;
     ArrayList<String> Name = new ArrayList<String>();
     ArrayList<String> Phone = new ArrayList<String>();
     ArrayList<String> Mobile = new ArrayList<String>();
     ArrayList<String> Address = new ArrayList<String>();
     ArrayList<String> temp = new ArrayList<String>();
     int index = 0;
          public static void main(String[] args)
          new AddressBook();
     public AddressBook()
          final int WIDTH = 450;
          final int HEIGHT = 400;
          JFrame win = new JFrame("Address Book");
          win.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          leftLayout = new FlowLayout(FlowLayout.LEFT);
          pTitle = new JPanel();
          pTitle.setLayout(new FlowLayout(FlowLayout.CENTER));
          lblTitle = new JLabel("Address Book");
          pTitle.add(lblTitle);
          win.add(pTitle);
          win.setLayout(new GridLayout(6,1));
          win.setSize(WIDTH, HEIGHT);
          win.setBackground(Color.BLUE);
          win.setResizable(false);
          win.setLocationRelativeTo(null);
          pName = new JPanel();
          pName.setLayout(leftLayout);
          lblName = new JLabel("Name: ");
          txtName = new JTextField(20);
          win.add(pName);
          pName.add(lblName);
          pName.add(txtName);
          pPhone = new JPanel();
          pPhone.setLayout(leftLayout);
          lblPhone = new JLabel("Phone: ");
          txtPhone = new JTextField(13);
          win.add(pPhone);
          pPhone.add(lblPhone);
          pPhone.add(txtPhone);
          pMobile = new JPanel();
          pMobile.setLayout(leftLayout);
          lblMobile = new JLabel("Mobile: ");
          txtMobile = new JTextField(14);
          win.add(pMobile);
          pMobile.add(lblMobile);
          pMobile.add(txtMobile);
          pAddress = new JPanel();
          pAddress.setLayout(leftLayout);
          lblAddress = new JLabel("Address: ");
          txtAddress = new JTextField(30);
          win.add(pAddress);
          pAddress.add(lblAddress);
          pAddress.add(txtAddress);
          pButtons = new JPanel();
          btnImport = new JButton("Import");
          pButtons.add(btnImport);
          btnImport.addActionListener(this);
          btnAdd = new JButton("Add");
          pButtons.add(btnAdd);
          btnAdd.addActionListener(this);
          btnPrevious = new JButton("Previous");
          pButtons.add(btnPrevious);
          //btnPrevious.addActionListener(this);
          btnNext = new JButton("Next");
          pButtons.add(btnNext);
          //btnNext.addActionListener(this);
          btnSave = new JButton("Save");
          pButtons.add(btnSave);
          btnSave.addActionListener(this);
          win.add(pButtons);
          win.setVisible(true);
     public void actionPerformed(ActionEvent e)
          if (e.getSource() == btnImport)
               importContacts();
          if (e.getSource() == btnAdd)
               clearScreen();
          if (e.getSource() == btnPrevious)
               Previous();
          if (e.getSource() == btnSave)
     writetoFile();
          else if (e.getSource() == btnNext)
               Next();
          public void importContacts()
          try
               BufferedReader infoReader = new BufferedReader(new FileReader("../files/example.buab"));
               int i = 0;
               String loadContacts;
               while ((loadContacts = infoReader.readLine()) !=null)
                    temp.add(loadContacts);
                    i++;
               int a = 0;
               int b = 0;
               for (a = 0, b = 0; a < temp.size(); a++, b++)
               if (b == 4)
                    b = 0;
               if (b == 0)
                    Name.add(temp.get(a));
               if (b == 1)
                    Phone.add(temp.get(a));
               if (b == 2)
                    Mobile.add(temp.get(a));
               if (b == 3)
                    Address.add(temp.get(a));
          catch (IOException ioe)
          ioe.printStackTrace();
          txtName.setText(Name.get(0));
          txtPhone.setText(Phone.get(0));
          txtMobile.setText(Mobile.get(0));
          txtAddress.setText(Address.get(0));
          public void Previous()
               if (index > 0)
                    index--;
               importContacts();
          public void Next()
               if(index < temp.size() - 1)
               index++;
               importContacts();
          public void clearScreen()
               txtName.setText("");
               txtPhone.setText("");
               txtMobile.setText("");
               txtAddress.setText("");
          public void writetoFile()
PrintStream out = new PrintStream("../files/example.buab");
for
(int index = 0; index < Name.size(); index++)
(int index = 0; index < Phone.size(); index++)
(int index = 0; index < Mobile.size(); index++)
(int index = 0; index < Address.size(); index++)
out.println("");
out.println("");
out.println(Name.get(index));
out.println(Phone.get(index));
out.println(Mobile.get(index));
out.println(Address.get(index));
i get an ioexception, must catch or throw, i tried to add catch but it says i must have try, so i added try and it says i cant have catch without try! what am I doing wrong??
am i doing it right also? should this be in my options? i.e if i press save button?
also why isn't my next and previous buttons working??
and one more thing, is there an easier way to show the contents of my file to the jtextfields? (import contacts class)
thanks

sorry i did try to do this but didnt see the code bit.
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.io.*;
import java.lang.*;
import java.text.*;
public class AddressBook extends JFrame implements ActionListener
     FlowLayout leftLayout;
     JFrame winNew;
        JTextField txtName, txtPhone, txtMobile, txtAddress;
        JButton btnImport, btnAdd, btnNext, btnPrevious, btnSave;
        JLabel lblTitle, lblName, lblPhone, lblMobile, lblAddress;
        JPanel pTitle, pName, pPhone, pMobile, pAddress, pButtons;
         ArrayList<String> Name = new ArrayList<String>();
         ArrayList<String> Phone = new ArrayList<String>();
         ArrayList<String> Mobile = new ArrayList<String>();
         ArrayList<String> Address = new ArrayList<String>();
         ArrayList<String> temp = new ArrayList<String>();
         int index = 0;
              public static void main(String[] args)
                  new AddressBook();
            public AddressBook()
          final int WIDTH = 450;
          final int HEIGHT = 400;
          JFrame win = new JFrame("Address Book");
          win.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          leftLayout = new FlowLayout(FlowLayout.LEFT);
          pTitle = new JPanel();
          pTitle.setLayout(new FlowLayout(FlowLayout.CENTER));
          lblTitle = new JLabel("Address Book");
          pTitle.add(lblTitle);
          win.add(pTitle);
          win.setLayout(new GridLayout(6,1));
          win.setSize(WIDTH, HEIGHT);
          win.setBackground(Color.BLUE);
          win.setResizable(false);
          win.setLocationRelativeTo(null);
          pName = new JPanel();
          pName.setLayout(leftLayout);
          lblName = new JLabel("Name: ");
          txtName = new JTextField(20);
          win.add(pName);
          pName.add(lblName);
          pName.add(txtName);
          pPhone = new JPanel();
          pPhone.setLayout(leftLayout);
          lblPhone = new JLabel("Phone: ");
          txtPhone = new JTextField(13);
          win.add(pPhone);
          pPhone.add(lblPhone);
          pPhone.add(txtPhone);
          pMobile = new JPanel();
          pMobile.setLayout(leftLayout);
          lblMobile = new JLabel("Mobile: ");
          txtMobile = new JTextField(14);
          win.add(pMobile);
          pMobile.add(lblMobile);
          pMobile.add(txtMobile);
          pAddress = new JPanel();
          pAddress.setLayout(leftLayout);
          lblAddress = new JLabel("Address: ");
          txtAddress = new JTextField(30);
          win.add(pAddress);
          pAddress.add(lblAddress);
          pAddress.add(txtAddress);
          pButtons = new JPanel();
          btnImport = new JButton("Import");
          pButtons.add(btnImport);
          btnImport.addActionListener(this);
          btnAdd = new JButton("Add");
          pButtons.add(btnAdd);
          btnAdd.addActionListener(this);
          btnPrevious = new JButton("Previous");
          pButtons.add(btnPrevious);
          //btnPrevious.addActionListener(this);
          btnNext = new JButton("Next");
          pButtons.add(btnNext);
          //btnNext.addActionListener(this);
          btnSave = new JButton("Save");
          pButtons.add(btnSave);
          btnSave.addActionListener(this);
          win.add(pButtons);
          win.setVisible(true);
         public void actionPerformed(ActionEvent e)
                  if (e.getSource() == btnImport)
                       importContacts();
                  if (e.getSource() == btnAdd)
                       clearScreen();
                      if (e.getSource() == btnPrevious)
                       Previous();   
                      if (e.getSource() == btnSave)
                     writetoFile();
                     else if (e.getSource() == btnNext)
                       Next();
              public void importContacts()
                  try
                           BufferedReader infoReader = new BufferedReader(new FileReader("../files/example.buab"));
                           int i = 0;
                           String loadContacts;
                           while ((loadContacts = infoReader.readLine()) !=null)
                                    temp.add(loadContacts);
                                    i++;
                           int a = 0;
                           int b = 0;
                           for (a = 0, b = 0; a < temp.size(); a++, b++)
                               if (b == 4)
                                        b = 0;
                               if (b == 0)
                                        Name.add(temp.get(a));   
                               if (b == 1)
                                        Phone.add(temp.get(a));   
                               if (b == 2)
                                        Mobile.add(temp.get(a));   
                               if (b == 3)
                                        Address.add(temp.get(a));   
                      catch (IOException ioe)
                          ioe.printStackTrace();
                  txtName.setText(Name.get(0));
                  txtPhone.setText(Phone.get(0));
                  txtMobile.setText(Mobile.get(0));
                  txtAddress.setText(Address.get(0));
          public void Previous()
               if (index > 0)
                    index--;
               importContacts();
          public void Next()
               if(index < temp.size() - 1)
               index++;
               importContacts();
          public void clearScreen()
               txtName.setText("");
               txtPhone.setText("");
               txtMobile.setText("");
               txtAddress.setText("");
          public void writetoFile()
                       PrintStream out = new PrintStream("../files/example.buab");
                        for
                        (int index = 0; index < Name.size(); index++)
                        (int index = 0; index < Phone.size(); index++)
                        (int index = 0; index < Mobile.size(); index++)
                        (int index = 0; index < Address.size(); index++)
                               out.println("");
                               out.println("");
                               out.println(Name.get(index));
                               out.println(Phone.get(index));
                               out.println(Mobile.get(index));
                               out.println(Address.get(index));
                        out.close();
}

Similar Messages

  • I added a contact to my iphone 4s and when I did a sync manually it is not showing up on my MAC in address book - please help....I checked off sync all contacts in iTunes  - does it only work one way from computer to phone?

    I added a contact to my iphone 4s and when I did a sync manually it is not showing up on my MAC in address book - please help....I checked off sync all contacts in iTunes  - does it only work one way from computer to phone?

    Is it because the new itunes looks different.
    View > Show Sidebar
    Then it should work just the same as on your old computer.

  • Duplicated Every Contact in My Address Book, Need Help Deleting

    I recently had to trade in my 8830 for a new one due to warranty issues.  I am synced up with my employer's enterprise server and all the contacts I have on that server were re-synced but for some reason, I have two of every contact in my address book now.  I had some issues when re-syncing to the server and ran the sync twice.  I'm pretty positive it has something to do with that.  I'm sure there is a file in the options menu that I can delete, but I need somebody to tell me where it is.  If something goes haywire and I end up deleting all my contacts on the server, I'd be screwed.  Any help? Thanks

    Bump!

  • Hi all, i want a software for mac which can view conntact card in address book. please help me.., Hi all, i want a software for mac which can view conntact card in address book. please help me..

    HI ALL,
    I HAVE TWO MACBOOK AND ONE WINDOWS SYSTEM. I WANT TO SHARE THE CONTACTS OF WINDOWS 7 TO MACBOOKS. ALSO I WANT TO SEE THE SCANNED CONTACT CARDS IN MY ADDRESS BOOK. PLEASE GIVE ME A SOLUTION FOR THIS.

    iCloud: Troubleshooting iCloud Contacts
    Yahoo won't sync with iCloud and isn't supposed to.

  • Can't add anyone to my address book - PLEASE HELP!!!

    Prior to my last upgrade of thunderbird, this function was working fine. Now I cannot add anyone to my address book, and the copy to address book feature does nothing. It's a real pain cause I have to type every single persons email into the address bar which is driving me nuts!!!
    It may be an overall setting with the computer, but I have tried every possible option and it doesn't seem to allow me to add anyone. When I do it manually the ok but won't allow me to click it?!?
    Please help...

    https://support.mozilla.org/en-US/questions/996474

  • Lost all my contacts in Mac address book.  Tried syncing my iPhone/iPad contacts to Mac is not working.  Please help

    Lost all my contacts in Mac address book.  Tried syncing my iPhone/iPad contacts to Mac via iTunes and is not working.  Please help

    Welcome to the Apple Community.
    Unless you have the contacts backed up somewhere, you won't be able to restore them.
    You and your son should have your own iCloud accounts then you can keep your own contacts and calendars etc and avoid deleting each others.

  • Currently using OSX Mountain Lion 10.7.5  want to synch facebook contacts to mac address book. Is there some way to achieve this? If software upgrade is required please advise what software to use

    Currently using OSX Mountain Lion 10.7.5  want to synch facebook contacts to mac address book. Is there some way to achieve this? If software upgrade is required please advise what software to use

    Facebook contact sync with Mac native contacts app is part of Mac OS X 10.8 (mountain lion). 

  • Please show blue bubble for contacts on the address book that have ios5

    file:///.file/id=6571367.3355035Please show blue bubble for contacts on the address book that have ios5 installed so that we know who are ready for iMessage. We need a list of contacts in our address book for contacts that ios5 installed for iMessage

    Are you using Windows or Mac OS?

  • HT4489 How can I synchronize contacts between Apple Address Book/iPhone address book and Outlook (I'm on Mac OX10.7.4 and using Office 2011)?

    I appear to have done what I should to move to iCloud on my Mac, MacbookAir, iPhone and iPad.  Using Outlook 2011 on the iMac and unable to sync contacts between Outlook and my Apple Address Book and iPhone over the cloud.  I gather lots of people have the same problem but some appear to have solved it... any ideas?
    Also, in some sync, I managed to duplicate the entries on the Address Book on my Mac, whereas the iCloud Address Book is ok.  How can I replace the Address Book on my computer with the one on iCloud?
    Thank You for any help!

    Hi Lucy, I had the same problem with Outlook data sync. Once you've enabled iCloud all your contacts are moved to iCloud and are no longer stored on Mac, that's why Outlook cannot reach them - there is simply nothing to reach as data physically stored in cloud.
    I use SyncMate to solve this problem. This app allows connecting and syncing numerous devices and accounts with your Mac and they have recently added iCloud into this list (here the page where they describe sync with iCloud http://www.sync-mac.com/cloud-sync.html ).
    This is how I established sync of my Outlook data with iCloud via this app.
    1. SyncMate syncs only that data which is located on your Mac so you will need to move your contacts back to Address Book on mac from iCloud and disable iCloud for contacts (in order they were stored on Mac, not in iCloud).
    2. You install SyncMate and add iCloud as a new connection (depending on data you want to sync you need to choose "Cloud contacts" or "Cloud calendars" connection in SyncMate wizard and log into your iCloud via SyncMate). Once you've done this, you can sync data on Mac with iCloud via SyncMate.
    3. I may assume that automatic sync option is enabled in Outlook preferences (as previously your contacts on Mac were synced with Outlook). If no - please, enable it (got to Outlook preferences).
    4. Once all this done, data will be automatically synced betwen Outlook and iCloud (latter via SyncMate). The trick of SyncMate is that data is physically located on your Mac (thus ensuring it will be synced with other devices and accounts SyncMate supports, as I said before, SyncMate works with data which is located on Mac), but you still can have it in iCloud (sync will be performed via SyncMate, no need to enable iCloud itself).
    5. And of course, you will be able to sync your iPhone contacts with your Mac (SyncMate supports sync with iPhones also). These contacts will be also synced to Outlook.

  • Can iPhone 4 contacts overwrite MacBook Address Book contacts?

    Can someone please help me, perhaps Allan Sampson? My problem is that I somehow have >2,000 duplicate contacts in my MacBook's Address Book. Though I do backups, I've added dozens of new contacts to my iPhone where, so far, I do not have any duplicates. Basically, I need to somehow, if possible, overwrite all of my desktop contacts with the contacts from my iPhone. I've searched in the Apple Discussions for 2 hours and can't find an answer to this. The closest Google hit I found was http://forums.anandtech.com/showthread.php?t=2111565 but it did not work for me.
    Some background:
    - OS X 10.6.6
    - iTunes ver 10.1.2
    - iPhone OS 4.2.1
    - I am syncing iPhone with MobileMe account
    - iTunes is also syncing contacts with MobileMe
    - Under iPhone "Info" tab in iTunes, it is NOT set to Sync Address Book Contacts
    - This is not the first time I am syncing.
    - I called Apple Support. Zero help.
    - I can't use the Address Book "Look for Duplicates..." feature because I have a few dozen contacts that it will combine that I need to keep separate.
    Could anyone possibly help me with this? My only other option is to manually delete >2,000 duplicate contacts...that would take me several months.
    Thank you!

    I tried this http://discussions.apple.com/thread.jspa?threadID=1472736 , specifically Allan Sampson's suggestion (below), but it did not work either.
    "The sync process for contact information, calendar events, and bookmarks with an iPhone is bidirectional with the supported application on your computer.
    Enter at least one contact in the Address Book application and one calendar event in iCal on your Mac before syncing. Pay attention to any message provided when syncing such as merging data. If you are unsure about any such message provided, cancel the sync until you are sure."

  • Moving contacts into icloud, address book and ultimately onto iphone 5 is impossible. Why so hard?

    NEED TO TRANSFER/SYNC CONTACTS FROM 500+ VCARDS ON MY COMPUTER ---> TO MY IPHONE5.
    Why not just make the phone an open device? Drag and drop. I've spent three days trying to figure out how to easily get my contacts from my dumbphone to the new iPhone 5. I bluetoothed off my dumb phone to my computer. Both my iMac and MacBook Pro have the vcards. And another thing, Address Book, contacts, gmail, iTunes, whatever, I can't import multiple vcards. They have to be done one at a time.
    No mass transfers of any kind? I have over 500 contacts to move. I've tried the following:
    -Importing to contacts onto iMac; address book won't read vcard
    -Importing to contacts on MacBook Pro w/Mountain Lion; reads vcards, only 1 at a time
    -Importing to iCloud; doesn't work
    -Importing to gmail contacts; only reads 1 at a time
    -E-mailing 500+ to self in an e-mail and trying to open/transfer/read all on MacBook Pro and iPhone5; won't do multiple files
    I know I can go pay Verizon to do it but I want to know WHY and HOW this works the way it does.
    Beyond frustrated. Hulk, smash. Please for the love of god help me, and not in an "ambigous remark: sync to iCloud'" kind of way.
    THANK YOU!
    -Yancy

    Seriously folks?  I know it was long but I added all info to negate a need for endless back/forth clarifications.  No answers???
    FYI, i tried syncing contacts to google/gmail and it was a total clusterF as well.  No gmail contacts, synced iphone, gmail contacts populated w/ all info but w/lots of repeat entries.  Used seek and merge repeats in gmail and then resync but no such luck.  Lots of iterations and nothing but fails.  Seems everytime the phone and the gmail lists are "as desired" a new sync puts a ton of repeats back into gmail or onto phone.  Still perplexed and still needing help....
    pretty please....

  • How can I set up for contacts on my iPhone to replace contacts on my address book?

    I have tried several ways.  I read some suggestions about leaving only 1 contact in the address book and then syncing but it automatically deletes all my iPhones contacts and replaces it with only that one in the address book.  What I want is for my Address Book contacts to be updated or replaced (by default) with those contacts on my iPhone.  Please help.  I am always adding new contacts to my iphone and changing peoples information and every time I sync it, it erases any changes to my iPhone and updates based on the address book.  I want it to go the other way.

    Are you using Windows or Mac OS?

  • Is it possible to keep Contact List and Address Book seperate on iPhone?

    I just made the switch today- big time – from Motorola to iPhone, and from PC to iMac, plus a Macbook Air as well for travel. Thanks to iphone and Mac forums I have been able to resolve most newbie issues and have exported my data, files and contacts without problem.
    However there is one issue I have not been able to resolve or clarify:
    - My old phone contact list has now been transferred my new iPhone, consisting of about 100 phone numbers which I use regularly.
    - Address Book in my new iMac contains about 800 contacts including phone numbers, clients, etc, as well as personal bank account numbers, and other confidential data in the “Notes” field, which I need to refer to only occasionally.
    But I understand that if I sync my iPhone with my Mac, it will merge my Address Book contacts on Mac, with the phone contacts on my iPhone Contact list, into one list. Is this true? Is it not possible to maintain 2 separate Apps on my iPhone, i.e
    1. The iPhone Contact list for frequently used telephone contacts, and
    2. The Mac Address Book with more detailed notes and account numbers, which I only need to refer to occasionally?
    3. If this is possible, can I configure it so that a password is required each time the Address Book on iPhone is accessed? (I realise I can configure the iphone to require a pin when turned on), but I would like a password to access the Address App because of the confidential data. Previously I had all this data contained on a Palm Zire 72 handheld and its PC Desktop counterpart, where a password was required to access.
    From what I’ve read on the forums, it will be very cumbersome to have a phone contact list with 1000 names on it, so I want to keep phone contacts simple with phone numbers only. (I realise I can set up Group folders in Address Book, but this is not what I need). I'm also concerned about having confidential information on my iPhone which can be accessed without a password for that particular application. I intend to get MobileMe but that also does not address the issue of keeping Telephone Contacts seperate from Address Book on iPhone.
    Any help would be much appreciated!

    Speculating:
    if, as already suggested, you use the Groups function to sync only the 100 contact list numbers, then how to get the expanded Address Book?
    I've not used it myself, but Bento might be worth looking into--Bento on the Mac pulls your Address Book data (I'm pretty sure) and syncs to Bento iPhone.
    I don't recall hearing about any alternate phone books, but since pretty much any program on the Mac can hook into the Address Book, you might look at the more powerful note organizers to see if any of them pull that data?
    You might have a problem getting notes added on the phone back into Address Book on the Mac, though.
    I actually right now keep my main address book in MS Entourage (similar to Outlook), and only use the Mac Address Book to sync to the iPhone. I could sync Entourage to Address Book, but I don't--haven't sorted out the data yet, and I don't really need all the same numbers in both places.
    If that sounds possible, you might look at Mark/Space and Missing Sync for iPhone---something like keeping all 800 contacts in Entourage, and syncing them all, but moving the confidential portion of each contact into Entourage Notes and syncing those via Missing Sync, perhaps might work. (I think you can link a contact to a note in Entourage)
    An interesting problem. You might also send feedback to Apple:
    http://apple.com/feedback/iphone.html
    as this is really not a usage scenario they've planned for. They probably don't care, though--doesn't seem all that common.

  • How to print out a contact from the address book?

    I must be missing something very basic.  I select a contact in my address book.  Now, I want to print it... you know things like the contact's name, address, phone number, etc.  When I try printing, I get a blank page.  In the print dialog box, it continues to say "No Addresses ()" below the page preview, this even when I've selected one or multiple contacts in my address book.  Please help!  Thanks!! 

    In the Print dialogue box select Lists in the Style drop down box.

  • Error message while syncing contacts with windows address book

    getting error message while syncing contacts from windows address book cradsstring something

    Hello,
    The complete and exact error message is always more helpful than some small snippet something. Please provide that, and maybe we can make some better guesses for you.
    Thanks and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • Installing Exchange 2013 on Windows Server 2012 R2

    Now that SP1 has been released, it is supported to run Exchange 2013 on Windows Server 2012 R2 But since it is not yet possible to download Exchange 2013 with integrated SP1 (slipstreamed), is the following installation procedure supported: - Install

  • Updating Digital Editions

    I have a message to update my Adobe Digital Editions. It takes me to a website with many products but NOT an ADE update. Could someone please direct me – what am I supposed to do in order to update?

  • Adobe's Black Monday promotion

    I have been notified of the following - ...from now until Nov 30, people who use the coupon code SAVE50 at checkout at the Adobe.com store will get an instant savings of $50 if they spend more than $500 on Adobe products (any of them, upgrades includ

  • Need a Crystal Report formula to concatenate strings during reading records

    I have a report that takes partnumbers and cross references them with other partnumbers. I have this information in the details Partnumber   XRef                          I need this as the string A                  B                              B A

  • Measurement of Respiratory Signals through oximeter

    heHi, This is Madhusudhanan Natarajan from Anjalai Ammal Mahalingam Engg College, Kovilvenni. I would like to ask some queries related to the DAQ products.Actually, We are going to upgrade the research work of oximeter in sleep monitoring system. For