Distributed form Acrobat Pro X not functioning correctly

Created a  survery form in live cycle, distributed and posted on web for users to fill out and submit.
About 30% of responded forms are not triggering the response file to collect the answers????
About 3 % are not able to send the file (I am suspecting they are mac users and do not use adobe reader to open file with)
About 0.1% have adobe reader, on a pc, have downloaded latest version, and can not even fill out the form.
Why  am I not getting the returned survey to trigger the opening of the  response file to collect the answers??? (when I resend from myself to  myself, it will trigger the response folder).  Weird...
On  a side note has anyone noticed how eratic the forums have behaved  lately?  When I am loged in, I get loged out... new message thread  created, disappears from site?  Can't login, get a message that the  forums are under maintenance?
Opinions?  Answers on the response file not collecting are appreciated.
This is the 4 time I have tried to post and keep getting putted out!

Regarding the Tracker question, in Acrobat X you can open any PDF file and click Comment pane (shown in Acrobat on right hand side) and go to Review accordion. You will find a 'Track Reviews' option. In Acrobat 10.1, an option has been added to launch Tracker from View menu without the need to open any PDF. You can update to Acrobat10.1 from Adobe web site.
For your form disribution problem, you need to allow full access to AdobeResourceSynchronizer to be able to fetch responses automatically. Can you please try this:
1. Kill AdobeResourceSynchronizer from activity monitor and close Acrobat as well
2. From Keychain access, delete 'services.acrobat.com'
3. Launch Acrobat->Tracker and select your distributed form
4. Click on View Responses on RHS pane in tracker
5. If prompted for acrobat.com credentials, enter them and sign in
6. If prompted for allowing AdobeResourceSynchronizer to store information in keychain, choose 'Always Allow'
Does it work now? Are you able to see all responses?

Similar Messages

  • Hyperlinks Are Not Functioning Correctly

    I have a problem with the some of the hyperlinks in my
    WebHelp Pro project not functioning correctly once the project is
    compiled. What happens is that when I click on a hyperlink the text
    doesn't change from blue to purple. Not all the hyperlinks on a
    page are affected; some may work while others do not.
    When I look at the HTML code, I see two different things
    happening, and both things may not occur in the same code:
    1) In some documents the code reads "a visited=0000ff." The
    value should be 800080.
    2) In other documents "font color=blue" is being added to the
    HTML code for a particular hyperlink. Other hyperlink code in the
    same document may be unaffected.
    I have checked the font color in the editor to make sure it
    was set to "automatic" before I created the hyperlink. I removed
    the hyperlinks altogether, recompiled, then opened the document
    back up and recreated the hyperlinks. The problem still exists.
    Every document in my project is using the default.css style sheet.
    I use the same paragraph style throughout the project, both on the
    links that work correctly and those that do not.
    Has anyone ever experienced this problem? And if so, do you
    know the fix? I could manually edit the HTML code before publishing
    my project, but that is just a bandaid fix.

    The hyperlink color is controlled by the style sheet. I edit
    my style sheets in a text editor. Make sure you clear your browser
    history before testing the color changes.
    FWIW, I like my links to stay blue--I usually have the color
    change to purple in hover just to indicate that what is moused is
    indeed a viable link.

  • Spry Menu Issues - Not functioning correctly in Microsoft IE

    Hi there,
    I am fairly new to web design and dreamweaver.
    I have constructed a simple page that I am happy with complete with Spry Menu which again I am happy with.  However this spry menu works perfectly in firefox but for some reason on IE my spry menu does not function correctly and goes all over my page!
    CORRECT VERTICAL MENU - FIREFOX -
    INCORRECT MENU FUNCTION! - IE -
    See my CSS Code below for the spry menu in questions - if this helps -
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: 0;
        padding: 0;
        list-style-type: inherit;
        font-size: 100%;
        cursor: default;
        width: 1000px;
        height: 47px;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: medium;
        position: relative;
        text-align: center;
        cursor: pointer;
        width: 318px;
        float: left;
        height: auto;
        background-color: #000000;
        border: 2px solid #FFF;
        font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        z-index: auto;
        cursor: default;
        width: auto;
        position: absolute;
        left: -1000em;
        font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        width: 318px;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin-top: -5%;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0px;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border: 1px solid #FFFFFF;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        background-color: #bcbdb9;
        padding: 0.5em 0.75em;
        color: #FFF;
        text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-color: #000;
        color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        background-color: #000;
        color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarDown.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarDownHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
        display: inherit;
        f\loat: left;
        background: #FFF;
    ** I am also using Windows 8 and Dreamweaver CS6 If this helps.**
    Any help with this would be fantastic as I need this to be resolved before the end of the week. 
    Any further information required please message me to find out.
    Thanks,
    Jamie

    THE CONFLICT IS BETWEEN YOUR DOCUMENT CSS AND THE SPRY CSS.
    It is because the <li> and <a> TAGS have been styled and therefore OVERRIDDEN THE SPRY CSS.
    Use CLASS TAGS e.g.  <li class="anyclass"> and <a class="anyclass">
    and STOP USING THE <a> TAGS.
    N.b. you may need to unstyle any <a> or other TAGS that conflict with the SPRY CSS.  (However it's best to start over knowing that styling basic tags may affect the SPRY CSS).

  • I have Creative Suite 6 Design & Web Premium installed on my HP Windows 7 laptop. All of a sudden Acrobat Pro will not open and I cannot reinstall. Get errors 2203, & Error-Install MSI payload failed with error 1603. Help.

    I have not been able to reinstall Acrobat Pro on my laptop. I have Suite 6 Design & Web Premium on my HP laptop. I have Windows 7 operating system. All of a sudden Acrobat Pro will not open so I uninstalled and tried to reinstall the program.
    The error messages I get are:
    ERROR: Error 2203.Database: C:\Windows\Installer\12102c.ipi. Cannot open database file. System error -2147287035.
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 2203.atabase: C:\Windows\Installer\12102c.ipi. Cannot open database file. System error - 2147287035.
    ERROR: Third party payload installer AcroPro.msi failed with exit code: 1603
    Help PLEASE!

    Hi Patricia ,
    For error 2203 ,please refer to the following link.
    https://helpx.adobe.com/creative-suite/kb/error-2203-install-creative-suite.html
    For error 1603 ,refer to this link.
    https://helpx.adobe.com/creative-suite/kb/error-1603-install-cs3-cs4.html
    Let us know if this solves the issue .If required ,we"ll surely assist you further.
    Regards
    Sukrit Dhingra

  • I am backing up to my time capsule for the first time. It has been stuck on 348mb of 20.1 gb for days. Is this normal or is the machine not functioning correctly?

    I am backing up to my time capsule for the first time. It has been stuck on 348mb of 20.1 gb for days. Is this normal or is the machine not functioning correctly?

    That seems to be OK via WLAN!
    It ist better to do the first backup via LAN-cable.

  • I cannot activate my phone because my keyboard is not functioning correctly.  How do I bypass my password to activate my phone

    I cannot activate my phone because my keyboard is not functioning correctly.  How do I bypass my password to activate my phone

    Are you being asked for your Apple ID and password in order to activate the phone?
    ~Lyssa

  • Acrobat Pro XI not working at all in Windows7 64bit - tried everything

    I am using Acrobat Pro XI not working at all in Windows7 64bit - tried everything. About a month ago I built new computer. Acrobat worked fine. In last week it started not producing PDFs using Save As and would crash when processing scanned document. So I redownloaded exe file, used the acrocleaner to erase existing program, and reloaded Acrobat Pro XI.
    No the program will not start at all. Freezes when opening by clicking PDF file or by opening program icon.
    plz help

    Hi dufflebag123,
    Please try the following basic troubleshooting steps:
    > Enable the hidden Admin Account on Windows 7 ( Ref :  http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-administrator-account-on-wi ndows-vista/ )
    > Disable all Non-Microsoft Startup Services. (Ref : http://helpx.adobe.com/x-productkb/global/disable-startup-items-services-windows.html )
    > Disable all the Antivirus softwares like CA, Norton,Mc Afee etc. temporarily from the computer.
    Reboot and try installing in the new enabled Admin user account and check.
    Regards,
    Rave

  • Acrobat/Indesign does not export correct into the selected output intention (eci_iso_coated_v2_300)

    I use the CS6 suite with Acrobat XI at windows platform.
    When I want to save a file from InDesign as .pdf with output intention eci_iso_coated_v2_300 the result is a .pdf with more than 300% ink coverage.
    I tried to transform the result in Acrobat XI into this standard output intention, but also the result has more than 300 % ink coverage.
    What is the reason of this bug?
    Before with Acrobat X this worked without problems

    Hi Rob,
    I was told the new way to work would be to draw files via Bridge direct into the InDesign file
    and I thought automatically the color would not be changed.
    my colourmanagement setting in bridge for the whole CS6 was  ECI isocoated_V2_300
    The Illustrator file was saved without color profile.
    In this test file I used 3 kinds of black: background of pirate in cmyk 79,34 / 72,78 / 59,38 / 79,88 = ink coverage 291 %
    DÜSSELPIRATEN in “black” (if you would convert this in the file with the cmyk button it would be the same ink-percentage as before
    “e.V.” was set to 100 % k
    I set the preferences for Acrobat from InDesign CS6 as pdf X4 with profile eci isocoatedV2_300 in three ways:
    no color conversion
    convert to profile
    convert to profile keeping existing values
    in all tree files the pirates background has 322 % ink coverage instead of 291 %
    Why does Acrobat convert “black” in the wrong way?  If I click in Illustrator on the 4c button to convert the “black” into 4c it is 291% ink
    Acrobat should come to the same result with all profiles: iso coated V2 and iso coated V2_300
    The same happens also by saving as .pdf X3 or .X1
    The minimum what I expect is, that Acrobat reduces ink coverage for black to 300 %
    I also made test with the new ECI profiles for laminated prints from 2012.
    And with newspaper profiles
    In this case the ink coverage comes below 300 %, but only when I choose convert to profile.
    And then the 100 % k converts to cmyk, what I don’t want to have with text.
    Is there no way to reduce ink coverage below a special percentage without changing Text 100% k
    And is there a bug in Acrobat XI with the ECI IsoCoated_V2_300 Profile? For there is no color reduction below 300 % in all conversion settings.
    I can’t test this with Acrobat X or IX, for my computers with this software don’t run with CS6 64 bit.
    enclosed you find my files
    Kind regards
    Lutz Hanbueckers
    Hanbueckers Werbung GmbH
    Brandsackerstr. 5
    40764 Langenfeld
    P.O. Box 40 02 01
    40242 Düsseldorf
    Tel. +49 02173 1 09 44 - 0
    Fax +49 02173 1 09 44 - 10
    [email protected] <mailto:[email protected]>
    www.hanbueckers.de
    Visit our site
    Steady attractive offers!!!
    HR Düsseldorf B 26 480
    owner Manager: Lutz Hanbueckers
    Von: Rob Day [email protected]
    Gesendet: Samstag, 2. März 2013 04:26
    An: Hanbueckers Werbung
    Betreff: acrobat/Indesign does not export correct into the selected output intention (eci_iso_coated_v2_300)
    Re: acrobat/Indesign does not export correct into the selected output intention (eci_iso_coated_v2_300)
    created by Rob Day <http://forums.adobe.com/people/rob+day> in InDesign - View the full discussion <http://forums.adobe.com/message/5115613#5115613

  • My MacBook Pro keyboard not working correctly after Win7 bootcamp installation. In OSx boot it keep Win keyboard. How can I have Mac keyboard in OS boot and Win keyboard in Win boot?

    My MacBook Pro keyboard not working correctly after Win7 bootcamp installation.
    Installation went well but when I boot either with OSx or Win it always keeps Windows keyboard.
    How can I have Mac keyboard in OS boot and Win keyboard in Win boot?

    Hi - I have the exact same model as your MacBook and had a few questions as mine is acting up. I upgraded the ram to 8gb (2x 4GB ram) and ever since then my computer has not been running as smoothly and the start up time is horrendous. Have you encountered this problem? And if so how did you fix? What would you advise me do?
    I was thinking of reverting back to the original factory 4GB then rebooting the entire computer. Any suggestions?
    Thanks in advance!
    Allen

  • Widgets not functioning correctly on tablet layout

    I've noticed that my new ipad is showing my tablet layout of muse website, but some of the widgets are not functioning correctly. I have tried a few widgets for the tablet layout and it has resulted in problems.
    Please take a look at www.littlesouth.com for an example of the current error.

    Hi
    I tried to check the site in tablet and it works fine.
    Can you please elaborate as which specific widgets are not working ? and are they on home page or any particular page within the site.
    Thanks,
    Sanjit

  • ICal not functioning correctly

    First of all, I have been using Entourage which I sync with iCal so that I can sync my calendar with my iPhone. I would like to discontinue using Entourage but for some reason, iCal is not functioning correctly. First, the calendars do not appear in the left hand window and I cannot seem to figure out how to get them to appear.
    Second, when iCal opens off of the dock, there is nothing showing on the calendar at all. When I change the view (i.e., month, to week) then all of my scheduled events appear. When I go back to the original view, everything appears. When I attempt to sync with MobileMe, I get a message at the website that "a script is not responding." I don't know whether the two are related or not.
    Any help?????

    I have the same problems. Also, I can't enter a "multi day' event, the system tells me there is a fault and it cannot synch. I was automatically updated to MobileMe, but the system isn't performing as promised.

  • Touchpad not functioning correctly

    I have an Envy 17,(Windows 7) and the touch pad is not functioning correctly.  I have had it do similar things in the past but they seemed to fix themselves after a few minutes, but this time it just keeps messing up. I CAN click on programs to open them but once in a program, I cannot click on anything. I CAN click on links when online, but they always open in a new tab and when I attempt to click on a new tab, the tab completely closes out. Once a program is opened, I cannot close/minimize/maximize it using the touchpad, nor can I access File/Edit/other menu options.  I also cannot click in a typing field. (I'm using a different computer to do this post)I can barely move the curser around.  It jumps or freezes up.  I move it up about an inch and as soon as I take my finger off the touchpad the curser goes back to where it originally was.  I've tried restarting the computer but that hasn't worked.  I've attempted tried some other things as well, but since I cannot click on anything with the touchpad and can barely move the curser, I am at a loss for what to even try.  Everything was working fine this morning.  I literally got up from the computer, made breakfast and sat back down and it was all glitched up.  No one had touched it...  I had not recently downloaded anything nor have I made any updates to the computer.  Thank you, Neyephe

    Hello there, It sounds like there is a hardware issue with your touchpad, which you need to replace. As stated in the warranty, the touchpad may only be replaced by an Authorized Service Provider. If you cannot find any places that are authorized, you may contact the HP Support Center via phone and arrange a date for your touchpad to be replaced. In the meantime, you can buy a USB mouse to navigate your laptop. Best wishes getting your issue fixed! Best Regards,Shawn

  • I believe my firefox is viewing some websites on my laptop in formats that are used for cellular devices. Sites like facebook, sports illustrated, yahoo are not functioning correctly but certain sites work fine.

    sits such as facebook, yahoo, and sports illustrated do not function correctly on firefox but they do on my internet explorer. I believes its somehow set itself into the same format used for cellular devices... My JSU.edu page says somethin about it being in (portal mode). It is also a different format now that normal.

    Hi @TheBigGiggle ,
    Thank you for visiting the HP Support Forums and Welcome. I have read your thread on your HP ENVY TouchSmart 17 Notebook PC and a keys not functioning correctly. Here is a document on cleaning the keyboard.
    I would start with air on the keys as sometimes debris can cause this issue.
    Here is a link to uninstall the keyboard. In the device manager have you uninstall all that is listed in keyboards, restart the computer after uninstalling, it should reinstall automatically and resolve any issues with the keyboard.
    Here is a link to keyboard troubleshooting.
    Here is a fix from Microsoft that might help.
    Let me know how this goes.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • N96 Telephone Service Not Functioning Correctly

    Good evening folks,
    Now, I've had this problem for as long as I've had an N96. TWO N96's in fact, as my first was replaced by Nokia due to the screen-slide connection malfunctioning. Both have been fully firmware updated and restored on multiple occasions in an attempt to fix the problem.
    The telephone service on the handset has the habit of not functioning correctly, like the service has hanged or just doesn't respond.
    For example, I find a contacts name in contacts, press the green key to show their contact numbers, and green again on the number I wish to call- nothing happens, other than the available numbers disappear and you return to the regular contacts view. This is what would normally happen anyway, only you'd have an outgoing call happening over it and showing the "telephone" screen.
    Or, example two, in a text message I chose Options > Call > Voice Call and press the select or middle button to initiate the call- No call, instead the options dialogue disappears and I return to the standard message view. Again, I should be in an outgoing call, not viewing my text message.
    Example three, to really show the telephone service isn't working;
    I'm in full signal, text messages are functioning correctly and the mobile web is working flawlessly. A friend sat next to me rings me and is immediately directed to my voicemail, not a single indication from the handset that I may have been receiving a call.
    Seconds later I receive a text message from my operator to let me know about a new voicemail my friend just left me.
    So, the telephone service isn't functioning as it should be.
    A quick restart fixes the problem in 4 out of 5 cases, however usually within 24 hours the problem is persisting again.
    Not being able to make outgoing calls isn't a problem, because at least then I know the telephone service has failed on me and I can restart.
    A potentially important incoming call about anything being directed immediately to my voicemail? Problematic, especially if they don't leave a message and instead just keep trying me, as I receive no notification from my operator about missed calls and there is no way other than to try and make an outgoing call as to determine whether the service is still functioning.
    It isn't shown as a regular application whilst not in a call and I don't believe I should even have to check if it's still running as this function is the main function implied in the device category 'smartphone'.
    Rant over, so if there's anyone out there who could shed some light onto this situation, please do.
    Also, kind of off topic- but in the case that this is a universal problem (which I'm assuming it is, having had two completely different handsets with the same symptoms), do I go after Nokia to provide me with a different model of handset, or the supplier (The Carphone Warehouse) since my handset isn't properly providing a function that is advertised?
    Somehow I presume I'm rightfully entitled to a reimbursement or different model. Hopefully.
    Thanks in advance people

    You're so right....   I managed to get over the problems, never upgraded the firmware...  Once I got all the apps I use and needed, never touched it....  Still the phone is a mess, worst ever...   I came from an Iphone, fleeing from lock OS and stuff, and found myself in a Symbian hell.....    Definitely Windows Mobile...  I'm so down on this phone, I spent 650 dollars, one year ago....  The worst investment ever...  Never again a Nokia or a Symbian smartphone, for cheap ones apparently are the best.  I'll wait another year, to feel less pain when buying a new one for 600-1000 dollars.
    Solution: Buy another phone...  Better if it is a Windows Mobile.... As HTC for example.
    Regards,

  • Bluetooth not functioning correctly.

    Bluetooth not functioning correctly. I have version 10.10.2. How can I get it to connect and be stable?

    OK. Spooky. Minutes.... Minutes after I posted, my Mac connected...

Maybe you are looking for

  • How to keep the save-button active all the time?

    Hi! I'm using mobile sales 4.0. On a tile i've only fixed questions and combo boxes with yes and no ... When i write manually a "yes" in the combo box field the save button is active - When i use the combo box with a mouse click the save-button isn't

  • MacBook Pro doesn't see hard drive

    My MacBook Pro doesn't see it's hard drive. It doesn't show up when I press the Option key or in Disk Utility on the Snow Leopard disc. It was working for a while and then the computer started freezing, mainly when I was using Xcode. I thought it was

  • Language conversion IS Oil and Gas Menu

    Hi Gurus, Can anyone help me to understand how to get LANGUAGE SPECIFIC IS oil and Gas menu when we log in a specific language other than english. Right now i am able to view ECC 6.0 Menu in other SPECIFIC LOGIN LANGUAGE but IS Oil and Gas related me

  • Seeking an alternative to the Mac Address Book

    I had a post on this forum recently looking for away to synchronise the Mac Address Book. As I have had no response I assume there is non. This is what I asked. I have the address book for our company on a server. I would like to synchronise the addr

  • Problem loading & displaying images from URL

    hi, I can't manage to display an image into a component from a url... here is what my code looks like : public class ImageComponent extends JComponent{     private ImageIcon imageIcon;     public void paint(Graphics g){         if(imageIcon!=null){