How do I sync iPhone contacts into Outlook 2011 for Mac

Here is the quick situation. I have an iPhone 5s and all of my contacts from my previous company (personal and professional) are on there. My old exchange profile is also there and I am afraid if I delete the profile, I will lose all my contacts.  My new company added thier exchange mail but none of my contacts are showing up in Outlook. I followed all the instructions to try and synch the contacts using iTunes but none of the contacts actually show up in iTunes to synch. I even turned off "contacts" in the iCloud settings. Help.

Oh, does it always do that ... on both the iPhone and the Mac?  I thought there might be some dependency on what account previously housed the contacts.  For example, if the contacts had previously been in an Outlook account, and you turned on iCloud, would that fact migrate the contacts?  I've never tried.

Similar Messages

  • Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

    Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

    Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

  • How to change the Form field in Outlook 2011 for Mac ?

    Hey,
    I have Outlook 2011 on my Mac, and using Exchngae server 2008 for my emails. 
    In the exchnage server I have few differnet domain whic I use,
    In Microsoft Outllok I just can add the "Form" filed and change the email from whom I send,
    How can I define this in Outlook 2011 for Mac ?
    Thanks.

    Go into the List Advanced Settings, select Allow Management of Content Types.
    Go back to the List Settings, and go into the Content Type (e.g. Item). In the Content Type, click on Title, what is selected there? If it is not Optional, then do so and save the settings.
    Trevor Seward, MCC
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • How to import .iaf files into Outlook 2011 for mac?

    I exported emails from Outlook Express (PC) to .iaf files years ago and now need to access them on a mac. I have downloaded Office for mac 2011 but can't work out how to import them into Outlook 2011.
    Can it be done? Any suggestions would be hugely helpful.
    Thanks.

    Hi,
    We can import .iaf files in Outlook 2010 using the following method:
    Start Outlook 2010.
    On the File menu, click Import and Export.
    Click the Advanced tab, and then click Export.
    Click Import Internet Mail Account Settings, and then click
    Next.
    Follow the Internet Connection Wizard to complete the import process.
    But, I don't know if we can do this in Outlook for Mac 2011. Since this forum is for general questions and feedback related to Outlook for Windows, it's better to post Mac related issue to the forum for Mac:
    http://answers.microsoft.com/en-us/mac/forum/macoutlook?tab=Threads
    The reason why we recommend posting appropriately is
    you
    will
    get the most qualified pool of respondents,
    and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thank you for your understanding.
    Steve Fan
    TechNet Community Support

  • Exporting selected contacts from Outlook 2011 for Mac

    I've wanted to easily export a set of selected contacts from Outlook in Microsoft Office for Mac 2011.  I've been through many threads about synching to Address Book and then exporting, but I've found a host of troubles, including duplicate copies of contacts being created.
    So, I finally broke down and wrote an AppleScript script to export all of the currently selected contacts from Outlook to a file in either vcf (vcard) or csv (comma separated value) format.  The best use of this script is to:
    -- Install this as a script in Microsoft Outlook by saving the script below to Documents>Microsoft User Data>Outlook Script Menu Items
    -- Change to your Contacts in Outlook.  Use the Outlook search bar to find the contacts you want to export.  You might search by name, category, company, or anything else that identifies the contacts you want to export.  Or, you might just leave the view showing all contacts.
    -- Select the contacts you want to export
    -- Launch the script
    The script will have you select between vcard and csv and select a destination file.  This hasn't been optimized for speed, so if you're exporting 100's or 1,000's of contacts, be patient.  And there isn't a progress bar at present, so you have to wait.  It will display an alert when it's complete.
    Sorry not to have a download location for you.  You'll just have to copy the script text :-).  Keep in mind there's been some but limited testing.  Read the comments for details.  And enjoy.
    -- jsc
    --  Export Outlook Contacts
    --  (c) 2012 J. Scott Carr.  The script is made available for free use, with no
    --  warranty, under the Creative Commons license agreement.
    --  This script has only been tested on Mac OS X 10.6.8 with Micrsoft Outlook for
    --  Mac 2011 version 14.1.4.
    property byCategory : "By category"
    property byPattern : "Names matching pattern"
    property vcardFormat : "VCard"
    property csvFormat : "CSV"
    --  main
    set contactsToExport to {}
    -- Get the contact selection
    set contactsToExport to get_contacts_to_export()
    if (count of contactsToExport) is 0 then
              display alert "Please select contacts to export and rerun script" as warning
              return
    end if
    -- Shall we export to vcard or CSV?
    set theFormat to vcard_or_csv()
    if theFormat is "" then
              display alert "Error: Must select VCard or CSV format" as warning
              return
    end if
    -- Get and open the output file
    set oFile to open_output_file(theFormat)
    if (oFile is equal to -128) then
    display alert "Canceled"
              return
    else if (oFile < 0) then
              display alert "File open failed (" & oFile & ")" as warning
              return
    end if
    -- Export the contacts
    display dialog "About to export " & (count of contactsToExport) & " contacts in " & theFormat & " format.  Proceed?"
    if button returned of result is not "OK" then
              try
      close access oFile
              end try
              return
    end if
    if theFormat is vcardFormat then
    export_to_vcard(contactsToExport, oFile)
    else if theFormat is csvFormat then
    export_to_csv(contactsToExport, oFile)
    else
              display alert "Invalid format" as warning
    end if
    close access oFile
    display alert "Complete"
    return
    --  get_contacts_to_export()
    --  We're going to export the Contacts currently selected in Outlook.
    --  Check that the current selection is Contacts and not some other Outlook
    --  object.  Snag the selected Contacts and return them as a list.
    --  A side note.  When I started this, I built options to enter a matching
    --  name string or select a category.  And then it hit me that those features
    --  are much more robust in Outlook, and it would be easy to just use the
    --  current selection.
    --  There is some strange behavior that Outlook needs to have recently been
    --  the front, active window.
    on get_contacts_to_export()
              set selectedContacts to {}
              tell application "Microsoft Outlook"
                        set theSelection to selection
                        if class of theSelection is list then
                                  if class of the first item of theSelection is contact then
                                            copy theSelection to selectedContacts
                                  end if
                        else
                                  if class of theSelection is contact then
                                            copy theSelection to selectedContacts
                                  end if
                        end if
                        return selectedContacts
              end tell
    end get_contacts_to_export
    --  vcard_or_csv()
    --  Get the format to use when exporting contacts
    on vcard_or_csv()
              choose from list {vcardFormat, csvFormat} with prompt "Select export file format:"
              if result is false then
                        return ""
              else
                        return first item of result
              end if
    end vcard_or_csv
    --  open_output_file()
    --  Open the destination file for the export, returning the file descriptor or the error number
    --  if the operation fails
    on open_output_file(exportType)
    -- Get the filename, letting "choose file name" deal with existing files.
              set theDate to current date
              set theTime to time of theDate
              if exportType is csvFormat then
                        set fileName to "contacts.csv"
              else
                        set fileName to "contacts.vcf"
              end if
              try
                        set outputFile to choose file name with prompt "Select export destination file" default name fileName
              on error errText number errNum
                        return errNum
              end try
    -- Open the file
              try
      -- Open the file as writable and overwrite contents
                        set oFile to open for access outputFile with write permission
      set eof oFile to 0
              on error errText number errNum
                        display alert "Error opening file: " & errNum & return & errText as warning
                        try
      close access oFile
                        end try
                        return errNum
              end try
              return oFile
    end open_output_file
    --  export_to_vcard()
    --  Export each of theContacts to the open file outFile as a set of vcards.  Note that the
    --  vcard data is from the "vcard data" property of the theContacts.  This routine
    --  doesn't attempt to reformat an Outlook vcard, nor limit the fields included
    --  in the vcard.
    on export_to_vcard(theContacts, outFile)
              set vcards to {}
              tell application "Microsoft Outlook"
                        repeat with aContact in theContacts
                                  copy vcard data of aContact to the end of vcards
                        end repeat
              end tell
              repeat with aCard in vcards
      write (aCard & linefeed) to outFile
              end repeat
    end export_to_vcard
    --  export_to_csv()
    --  Export each of theContacts to the open file outFile in csv format
    on export_to_csv(theContacts, outFile)
              set csvFields to {}
    -- Get the fields of the contact to export
              set csvFields to init_csv()
    -- Write the header row
              set nFields to count csvFields
    write first item of csvFields to outFile
              repeat with i from 2 to nFields
      write "," & item i of csvFields to outFile
              end repeat
    write linefeed to outFile
    -- Export the fields of the contacts in CSV format, one per line
              repeat with aContact in theContacts
      write build_csv_line(csvFields, aContact) & linefeed to outFile
              end repeat
    end export_to_csv
    --  init_csv(): defines the fields to export when csv format is selected
    --  Each of the fields in the list must match a name used in the routine build_csv_line().
    --  The idea is to later create a a pick list so the user can select which contact properties
    --  to export.
    on init_csv()
              set csvFields to {"first name", "last name", "middle name", "title", "nickname", "suffix", "phone", "home phone number", "other home phone number", "home fax number", "business phone number", "other business phone number", "busines fax number", "pager number", "mobile number", "home email", "work email", "other email", "company", "job title", "department", "assistant phone number", "home street address", "home city", "home state", "home country", "home zip", "business street address", "business city", "business state", "business country", "business zip", "home web page", "business web page", "note"}
    end init_csv
    --  build_csv_line(): format one line for the csv file
    --  Parameter csvFields determins which fields to include in the export.
    --  Unfortunately I've not figured out how to use perl-style generation of
    --  indirect references.  If I could, this would have been much more elegant
    --  by simply using the field name to refer to a Contact properly.
    --  Note that email address are a special case as they're a list of objects in
    --  Outlook.  So these are handled specially in the export function and can only
    --  be selected by the column names "home email", "work email", and "other email". 
    --  Outlook allows a contact to have more than one of each type of email address
    --  but not all contact managers are the same.  This script takes the first of
    --  each type.  So if a contact has more than one "home" email address, you will
    --  only be able to export the first to a csv file.  Suggest you clean up your
    --  addresses in Outlook to adapt.  The alternative is to support multiple
    --  columns in the csv like "other email 1" and "other email 2", but that's not
    --  supported in this version.
    --  Another note.  In this version, any embedded "return" or "linefeed" characters
    --  found in a property of a contact are converted to a space.  That means that
    --  notes, in particular, will be reformated.  That said, this gets arond a problem
    --  with embedded carriage returns in address fields that throw off importing
    --  the csv file.
    --  Also note that at this time IM addresses aren't supported, but it's an easy add
    --  following the same logic as email addresses.
    on build_csv_line(csvFields, theContact)
              set aField to ""
              set csvLine to ""
              set homeEmail to ""
              set workEmail to ""
              set otherEmail to ""
              tell application "Microsoft Outlook"
                        set props to get properties of theContact
      -- Extract email addresses from address list of contact
                        set emailAddresses to email addresses of props
                        repeat with anAddress in emailAddresses
                                  if type of anAddress is home then
                                            set homeEmail to address of anAddress
                                  else if type of anAddress is work then
                                            set workEmail to address of anAddress
                                  else if type of anAddress is other then
                                            set otherEmail to address of anAddress
                                  end if
                        end repeat
      -- Export each desired fields of the contact
                        repeat with aFieldItem in csvFields
                                  set aField to aFieldItem as text
                                  set aValue to ""
                                  if aField is "first name" then
                                            set aValue to get first name of props
                                  else if aField is "last name" then
                                            set aValue to last name of props
                                  else if aField is "middle name" then
                                            set aValue to middle name of props
                                  else if aField is "display name" then
                                            set aValue to display name of props
                                  else if aField is "title" then
                                            set aValue to title of props
                                  else if aField is "nickname" then
                                            set aValue to nickname of props
                                  else if aField is "suffix" then
                                            set aValue to suffix of props
                                  else if aField is "phone" then
                                            set aValue to phone of props
                                  else if aField is "home phone number" then
                                            set aValue to home phone number of props
                                  else if aField is "other home phone number" then
                                            set aValue to other home phone number of props
                                  else if aField is "home fax number" then
                                            set aValue to home fax number of props
                                  else if aField is "business phone number" then
                                            set aValue to business phone number of props
                                  else if aField is "other bsiness phone number" then
                                            set aValue to other business phone number of props
                                  else if aField is "bsuiness fax number" then
                                            set aValue to business fax number of props
                                  else if aField is "pager number" then
                                            set aValue to pager number of props
                                  else if aField is "mobile number" then
                                            set aValue to mobile number of props
                                  else if aField is "home email" then
                                            set aValue to homeEmail
                                  else if aField is "work email" then
                                            set aValue to workEmail
                                  else if aField is "other email" then
                                            set aValue to otherEmail
                                  else if aField is "office" then
                                            set aValue to office of props
                                  else if aField is "company" then
                                            set aValue to company of props
                                  else if aField is "job title" then
                                            set aValue to job title of props
                                  else if aField is "department" then
                                            set aValue to department of props
                                  else if aField is "assistant phone number" then
                                            set aValue to assistant phone number of props
                                  else if aField is "age" then
                                            set aValue to age of props
                                  else if aField is "anniversary" then
                                            set aValue to anniversary of props
                                  else if aField is "astrololgy sign" then
                                            set aValue to astrology sign of props
                                  else if aField is "birthday" then
                                            set aValue to birthday of props
                                  else if aField is "blood type" then
                                            set aValue to blood type of props
                                  else if aField is "desription" then
                                            set aValue to description of props
                                  else if aField is "home street address" then
                                            set aValue to home street address of props
                                  else if aField is "home city" then
                                            set aValue to home city of props
                                  else if aField is "home state" then
                                            set aValue to home state of props
                                  else if aField is "home country" then
                                            set aValue to home country of props
                                  else if aField is "home zip" then
                                            set aValue to home zip of props
                                  else if aField is "home web page" then
                                            set aValue to home web page of props
                                  else if aField is "business web page" then
                                            set aValue to business web page of props
                                  else if aField is "spouse" then
                                            set aValue to spouse of props
                                  else if aField is "interests" then
                                            set aValue to interests of props
                                  else if aField is "custom field one" then
                                            set aValue to custom field one of props
                                  else if aField is "custom field two" then
                                            set aValue to custom field two of props
                                  else if aField is "custom field three" then
                                            set aValue to custom field three of props
                                  else if aField is "custom field four" then
                                            set aValue to custom field four of props
                                  else if aField is "custom field five" then
                                            set aValue to custom field five of props
                                  else if aField is "custom field six" then
                                            set aValue to custom field six of props
                                  else if aField is "custom field seven" then
                                            set aValue to custom field seven of props
                                  else if aField is "custom field eight" then
                                            set aValue to custom field eight of props
                                  else if aField is "custom phone 1" then
                                            set aValue to custom phone 1 of props
                                  else if aField is "custom phone 2" then
                                            set aValue to custom phone 2 of props
                                  else if aField is "custom phone 3" then
                                            set aValue to custom phone 3 of props
                                  else if aField is "custom phone 4" then
                                            set aValue to custom phone 4 of props
                                  else if aField is "custom date field one" then
                                            set aValue to custom date field one of props
                                  else if aField is "custom date field two" then
                                            set aValue to custom date field two of props
                                  else if aField is "note" then
                                            set aValue to plain text note of props
                                  end if
                                  if aValue is not false then
                                            if length of csvLine > 0 then
                                                      set csvLine to csvLine & ","
                                            end if
                                            if (aValue as text) is not "missing value" then
                                                      set csvLine to csvLine & "\"" & aValue & "\""
                                            end if
                                  end if
                        end repeat
              end tell
    -- Change all embeded "new lines" to spaces.  Does mess with the formatting
    -- of notes on contacts, but it makes it cleans the file for more reliable
    -- importing.  This could be changed to an option later.
              set csvLine to replace_text(csvLine, return, " ")
              set csvLine to replace_text(csvLine, linefeed, " ")
              return csvLine
    end build_csv_line
    --  replace_text()
    --  Replace all occurances of searchString with replaceString in sourceStr
    on replace_text(sourceStr, searchString, replaceString)
              set searchStr to (searchString as text)
              set replaceStr to (replaceString as text)
              set sourceStr to (sourceStr as text)
              set saveDelims to AppleScript's text item delimiters
              set AppleScript's text item delimiters to (searchString)
              set theList to (every text item of sourceStr)
              set AppleScript's text item delimiters to (replaceString)
              set theString to theList as string
              set AppleScript's text item delimiters to saveDelims
              return theString
    end replace_text

    Thank You, but this is a gong show. Why is something that is so important to us all so very, very difficult to do?

  • I can't import Microsoft Ofice X Entourage into Outlook 2011 for Mac

    I'm trying to import tasks from Microsoft Office X for Mac Entourage into Microsoft Office fo Mac 2011 Outlook and I'm failing miserably. It seems like Outlook only wants to import from Entourage 2004, Entourage 2008, or an Entourage archive. Entourage X doesn't seem to be able to archive?

    You may have to do it the hard way. Launch Entourage X (which of course requires booting into something other than Lion). For each folder you've created for your Inbox, create a folder on the desktop by the same name.
    Click on the folders one at a time in Entourage. Highlight any email and then press Command+A to select all of them. Drag the emails out of Entourage to the folder by the same name on the desktop. Repeat for each email folder you have. Next, export your contacts and save that to the desktop.
    Move or copy all of the data from the desktop to someplace you can get at it from Lion
    Restart in Lion and launch Outlook. Create Inbox folders that match the names of the folders you created on your desktop. Drag the contents of each folder into the appropriate email folder in Outlook. Import your contacts.

  • Working with tables into Outlook 2011 for Mac

    How do i create a table in outlook for mac 2011
    and also in Apple Mail.

    Hi,
    We can import .iaf files in Outlook 2010 using the following method:
    Start Outlook 2010.
    On the File menu, click Import and Export.
    Click the Advanced tab, and then click Export.
    Click Import Internet Mail Account Settings, and then click
    Next.
    Follow the Internet Connection Wizard to complete the import process.
    But, I don't know if we can do this in Outlook for Mac 2011. Since this forum is for general questions and feedback related to Outlook for Windows, it's better to post Mac related issue to the forum for Mac:
    http://answers.microsoft.com/en-us/mac/forum/macoutlook?tab=Threads
    The reason why we recommend posting appropriately is
    you
    will
    get the most qualified pool of respondents,
    and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thank you for your understanding.
    Steve Fan
    TechNet Community Support

  • Import entourage database into Outlook 2011 for mac

    I set up a new macbook from a time machine backup. The main identity for entourage was from the original date of install. Unfortunately, I didn't notice that when I did my initial import so it brought in about two e-mails from 2 years ago but not the entire database. I did a new TM backup of the entire database and chose import in Outlook and it appeared to be going but when it indicated it was finished-- nothing new showed up. What did I do wrong?

    Hi,
    We can import .iaf files in Outlook 2010 using the following method:
    Start Outlook 2010.
    On the File menu, click Import and Export.
    Click the Advanced tab, and then click Export.
    Click Import Internet Mail Account Settings, and then click
    Next.
    Follow the Internet Connection Wizard to complete the import process.
    But, I don't know if we can do this in Outlook for Mac 2011. Since this forum is for general questions and feedback related to Outlook for Windows, it's better to post Mac related issue to the forum for Mac:
    http://answers.microsoft.com/en-us/mac/forum/macoutlook?tab=Threads
    The reason why we recommend posting appropriately is
    you
    will
    get the most qualified pool of respondents,
    and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thank you for your understanding.
    Steve Fan
    TechNet Community Support

  • Sync calendar with Outlook 2011 for Mac

    How do I sync my Apple calendar and contacts with Outlook 2011 for Mac? 

    Well considering it's a Microsoft product you are having trouble with you can either post to the iCloud forum or you can post to the Office for Mac Product Forums.

  • How to preview the first 4 lines of an unopened email in my inbox for outlook 2011 for mac

    how to turn on email preview in outlook 2011 for mac.
    I had this done in outlook for PC but can't find how to do it on the mac.

    Hi,
    As far as I know, the message preview feature is not available in Outlook 2011 for Mac. Since this forum is for general questions and feedback related to Outlook for Windows, you can post a question in the Outlook for Mac forum to confirm this:
    http://answers.microsoft.com/en-us/mac/forum/macoutlook?tab=Threads
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Unable to snyc calender and contacs from outlook 2011 for mac

    iTunes won't sync calenders and contacts from Outlook 2011 for Mac
    OS Mavericks 10.9.5
    iTunes 12.0.1.26
    Also tried on iTunes 11.4

    I don't receive an error, i am syncing to iPhone and iPad... I connect the device to the MacBook with the cable, open iTunes and click on the device on iTunes then go to info tick sync contacts but it doesn't show me any contacts below, then tick sync calender and i could see the calenders and then I select the calender that i want to sync and press apply... the sync icon appears as if it is syncing and the disappeared after a few minutes.  When i check the iPhone or the iPad the calender and contacts are empty.
    I have enabled the sync services in outlook for mac 2011 and ticked calender, contacts and tasks and select the account to sync and the outlook folder to add new items to but still it does not sync anything.
    I went to the iStore technical support and the technicians were unable to help me they just told me that Apple has removed the functionality, to me it looked like they were clueless

  • How do i sync iphone contacts with office for mac 2011?

    how do I sync iphone contacts with office for mac 2011?

    kennethfromrevere wrote:
    I manage all of my email in Outlook, delete email and trash it however the update isn't reflected in the Cloud and\or Apple email.  I have to then open up Apple mail and delete again. 
    Then something is setup incorrectly, which version of OSX are you on, and is this an iCloud mail address (@mac, @me or @icloud)
    From your description of the issue I suspect that it is Outlook that is incorrectly setup.

  • HT1296 how to transfer my iphone contacts to outlook

    how to transfer my iphone contacts to outlook?

    Here is the way about how to transfer contacts from iPhone to Outlook:
    Step 1: Connect the iPhone to the computer using the supplied USB cable and launch the iTunes application. iTunes displays your iPhone on the left panel under "Devices".
    Step 2: Click your iPhone on the iTunes panel and click the "Info" tab. Click "Sync contacts with" and select "Outlook."
    Step 3: Select "All Contacts" if you want to sync all the contacts from your iPhone to Outlook. If you want to select specific contacts, click "Selected groups" and place a check on the contacts you want to sync to Outlook.
    Step 4: Click "Apply" to sync your iPhone contacts to Outlook. Click the "Eject" button on the right panel and disconnect your phone from the computer. Close iTunes.
    Step 5: Launch Outlook and click the "Contacts" tab. You should see the imported iPhone contacts.

  • Steps to copy iPhone contacts into Outlook ?

    What are the set-up steps to copy my iPhone contacts into Outlook please ?

    Thank you very much !  But unfortunately the "Sync Contacts" does NOT have a Box for me to check, but it does  only for e-mail Accounts. Could this be because, as it says, that my iPhone is being synced over the air ?

  • How do you sync iCloud (contact, calendar, task) to outlook 2011 for Mac? and how do you make seemless sync between iCloud to Outlook 2011 to Blackberry device or an iPad?

    I have three device: Macbook Pro (OSX 10.7.5) for work; an iPad and a Blackberry for mobile. I used mail, iCal, and Address Book combine with mobileme (iCloud) to exchange data such as contact, calendar and task from my Mackbook Pro to my iPad but never to Blackberry. The problem is my boss was asking me to change to Outlook 2011 for Mac because some of the email that I sent from Mail did not appear in my client's Blackberry. So how do you sync iCloud (contact, calendar, task) to Outlook 2011 for Mac? and how do you make seemless sync between iCloud to Outlook 2011 to Blackberry device or an iPad?  
    Best regards,
    W. Sasongko

    More Like This --------------------------------------->

Maybe you are looking for

  • Getting List of Figures, List of Tables titles into main TOC

    I have a book (all in one file) with three TOCs: List of Tables, List of Figures, main Table of Contents. I want the TOC titles from List of Tables and List of Figures to show up in the main TOC. They don't. Does anyone know why? Do TOCs not pick up

  • OWB 10.1.0.3 patch released

    OWB 10g patch 10.1.0.3 for Windows is now available. This patch is to be applied on top of OWB 10g (10.1.0.2). 73 bugs are fixed in this patch. The details are in the README included with the patch. MetaLink Download Instructions: 1. Go to MetaLink w

  • PLEASE HELP I NEED PASSWORD

    I need the password to " Pinewarp AP-guest" so I can finish my paper on the Holocaust Due tomorrow !!! Please help.

  • Help me with GSOD and kernel panic on 24" imac!

    im sorry if this is the wrong place for this. also sorry if the answers to my questions are somewhere on this board. However, i have looked all over the internet and everywhere and found no solution. it seems simple enough.. here goes! one day, compu

  • Table of content, third level leader lines

    Hello i have atable of content that works properly now, except for the fact that third level chapters, dont have leader lines to the page number 1 blabla .............5 1.1 blasecond.....7 1.1.3 third lvl 9 I want that third lvl style to also have le