Error -108, Cannot close the message box

HI,
If this error message appear, I couldn't close it.
If I click "OK", message box disappears and appears again.
Not only previewing, The error which include "-108".
(saving, opening and ETC....)
How do I close this error message box?    

Which version of Illustrator are you using?
Also, are you working with very complex documents?

Similar Messages

  • Is possible to close a message box (message or alert) programatically ??

    Let's say I display and alert or message on screen that says "please wait while the process works"...
    as soon as what it's doing finishes, I want to close the message box or the alert (without using the mouse or keyboard).
    do_key('ENTER'); wont work

    You actually don't need an alert.
    You should have a stacked canvas that you will display using
    show_canvas(x_canvas);
    synchronize;
    To make the canvas disappear after the processing ends, use hide_canvas(x_canvas)

  • I cannot open my firefox broswer. The message box appeared that said a problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available. Under that there are debug and close program buttons.

    I cannot open my firefox broswer. The message box appeared that said a problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available. Under that there are debug and close program buttons.

    JackieMars71 I would recommend reviewing your installation log files to determine if there are any errors during the installation process.  You can find information on how to locate and interpret your installation log files at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  You are welcome to post any specific errors you discover to this discussion.

  • Error Message Every Time I Close the Prefs Box

    Since I upgraded to iTunes 5 (now on 5.0.1) I get an error message every time I close the Preferences box: "An error occurred while updating the default player for audio file types. You do not have enough access privileges for this operation."
    I am the administrator of my computer; in fact, mine is the only user account so I have to be the administrator.
    I get this error message even though I am not trying to change the audio file associations. Weird.
    Anyone else run into this problem?
    Any suggestions?
    thanks
    Paul D.

    FWIW, I get the same error message. My audio has gotten incredibly choppy too (after upgrading to 5.x), whenever I have another process running on XP that's doing much of anything, regardless of the encoding bit rate of the song being played! Ugh.

  • Either there is no default mail client of the current mail client cannot fulfill the messaging request-----error Outlook 2010

    I've tried EVERYTHING suggested in this link (http://blog.timolthof.com/outlook-no-default-mail-client-error/) and everything google and bing and still this message keeps popping up.  Now when I do a windows search for email, I'm not able to view
    the email due to this message.
    For the record, I am running W7 Ultimate x64 and connected via Excange Server.  I do have another system that is running Office 2010 with none of these problems so I don't know if it's related to Exchange though the searches I've done don't allude
    to that.
    What's up?

    Hi,
    I understand that when you tried to open Outlook 2010 beta on the Windows 7 64-bit computer, you encountered the following error:
    "Either there is not default mail client of the current mail client cannot fulfill the messaging request. Please run Microsoft Outlook and
    set it as the default mail client."
    You have checked the settings under the registry subkey: HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Clients\Mail\Microsoft Outlook
    I understand the inconvenience you have encountered and appreciate the time and effort you spent on this issue. Please be assured that I
    will try my best to help you.
    Now let’s troubleshoot the issue by the suggestions below. Please check the results after each suggestion until the problem is resolved.
    Suggestion 1: manually set Outlook 2010 as the default e-mail client on Windows 7:
    ===================
    1.      
    Click Start.
    2.      
    Type "default programs" in the
    Search box.
    3.      
    Click Default Programs under
    Programs in the search results.
    4.      
    Now click Set your default programs.
    5.      
    Highlight Microsoft Outlook on the left.
    6.      
    Click Set this program as default.
    7.      
    Click OK.
    Suggestion 2: Start the Outlook program in safe mode
    ==============
    1.      
    Click Start, point to All Programs, and then point to
    Microsoft Office.
    2.      
     Press and hold the CTRL key, and then click the Outlook program you want to start.
    If the problem does not occur in the safe mode, this issue might be related to some third-party add-ins in the Outlook program, we can try
    to disable them. Normally, you could do the following to disable the conflict add-ins in your Outlook program:
    Disable add-ins
    Click
    File menu, click Options > 
    Add-in, click Go button in the Manage:
    Com-in Add.
    Check if there are any add-ins,
    clear the checkbox to disable them.
    Close the Office program and
    restart it.
    Add one check back each time to the list of Add-In,
    restart the Office program, and repeat the above procedure. Once the issue reappears again, we can determine which add-in causes this problem and then disable it.
    Suggestion 3: Test the issue with a new Windows user account
    ==============
    We can follow the steps in the articles to create a new user account to test the issue. If the problem does not occur in the new user account, some settings
    in the old account are corrupted. We can copy the main user files from the old account to the new account, delete the old account, and then continue using the new account.
    For the detailed steps on how to create a new user account and copy data from the old account to the new account, you can refer to the following articles:
    For Windows Vista/Windows 7:
    http://windows.microsoft.com/en-us/windows-vista/Create-a-user-account
    http://windows.microsoft.com/en-us/windows-vista/Fix-a-corrupted-user-profile
    Please take your time to try the suggestions and let me know the results at your earliest convenience. . If anything is unclear or if there
    is anything I can do for you, please feel free to let me know.
    Sally Tang

  • Applescript to open the Choose Folder dialog box and close the message after moving it

    I've been trying to figure out how to get the same functionality as the Windows version of Outlook has so that the open message gets closed when it's moved to another folder.
    It seems pretty simple to move a message to a pre-defined folder, but I can't find a way to open the Choose Folder dialog so I could choose the destination folder. I've looked through the dictionary, but couldn't find any direct way to activate the Choose Folder dialog. So I decided to use keystrokes for the job. Here's what I came up with:
    on run {}
        tell application "Microsoft Outlook"
            try
                set theMessage to first item of (get current messages)
                set folderID to the folder of theMessage
            on error errMsg number errNum
                set dialogReply to display dialog "Please select one or more messages to file away before running this script." buttons {"Abort"} default button 1
                return
            end try
            -- open the Choose Folder dialog
            tell application "System Events" to keystroke "m" using {command down, shift down}
            repeat
                delay 2
                set currentID to the folder of theMessage
                if currentID is not folderID then exit repeat
            end repeat
            -- Close the active message
            tell application "System Events" to keystroke "w" using command down
        end tell
    end run
    This is my first attempt to do anything with AppleScript..
    Now in addition to using keystrokes instead of Outlook built-in commands to open the Choose Folder dialog and to close the message, I also have another problem. Everytime I run the script from AppleScript Editor, everything runs fine, the message gets moved to the folder I choose and the message also gets closed. When I move the script to "~/Library/Application Support/Microsoft/Office/Outlook Script Menu Items" and start it from inside Outlook, Outlook  gets stuck after opening the Choose Folder dialog and I have to force quit Outlook. I added some debuggin to the script and found out that the script keeps running, but I'm unable to select the folder from Outlook and cannot continue.
    Anybody have an idea why this is happening?
    Regard,
    Kris

    (For the record)
    Unchecking "Submit crash reports" in the Firefox [[Options window - Advanced panel]] General tab simply toggles the default of the "Tell Mozilla about this crash so they can fix it" check box in the Mozilla Crash Reporter dialog (upon crash). It does not turn off the Crash Reporter itself.
    Related bug report:
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=577221 Bug 577221 - Firefox doesn't remember "submit crash report" check box]
    The above information has been added to
    http://kb.mozillazine.org/Breakpad#Can_I_disable_Crash_Reporter.3F

  • Either there is no default mail client or the current mail client cannot fulfill the messaging request" error message when you send e-mail from Office 2010 in Outlook

    Hi,
    If save and send as attachment used in MS Office 2010 then outlook 2010 displays error "Either
    there is no default mail client of the current mail client cannot fulfill the messaging request-----error Outlook 2010"
    Windows 7 32 bit Enterprise edition and Offoce Professional plus 2010 32 bit is installed in the machine.
    I have followed the below troubleshooting steps but still getting the same error.
    Method 1:
    Followed the  Microsoft fix
    http://support.microsoft.com/kb/813745
    1. On the Windows taskbar, click
    Start > Run.
    2. In the Open box, type the following text:
    3. regedit
    4. Press Enter.
    5. Go to the following registry key:
    6. HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail
    7. In the right pane, right-click
    the following registry value:
    8. PreFirstRun
    9. Click Delete
    10. Click Start, and then click Run.
    11. In the Open box, type regedit, and then pressENTER.
    12. InRegistry Editor, locate the followingsubkey in the registry:
    13. HKEY_LOCAL_MACHINE\Software\Clients\Mail\Microsoft Outlook
    14. Select thesubkey, and then pressDELETE.
    15. Click
    Yes.
    Method 2:
    Repaired Office
    Method 3:
    fixmapi.exe. Mapi32.dll
    Method 4:
    Created the below registry key HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Offlce\15.0\Outlook
    Create the following String value if it does not exist: Bitness Set the String value for Bitness to the following if it is not already set to x86
    Method 5:
    Compared the installed applications
    Uninstalled the below program :Microsfot Visuall C++ 2008 Redistributable - x86 - KB2467175" and installed "Microsfot Visuall C++ 2008 Redistributable - x86  - 9.0.21022"
    Please help to solve the issue.
    Regards,
    Boopathi S

    Hi,
    Do you mean Send as Attachment button under File>Save & Send>Sending Using E-mail
    in Office applications, like Excel or Word?
    Is this an issue that come up recently? Have you ever made any changes to your system?
    If you have installed multiple e-mail programs on the same computer, please try to make Outlook the default mail client and then try again:
    http://office.microsoft.com/en-us/outlook-help/make-outlook-the-default-program-for-email-messages-contacts-and-calendar-HP010355552.aspx
    http://support.microsoft.com/kb/223877
    Regards,
    Ethan Hua
    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.

  • I cannot remove the dialog box from my ipad. It says 'not enough storage' I click on settings and close, but still there. I need help. thx

    I cannot remove the dialog box from my ipad. it says 'not enough storage'. I click on settings and close but still there. How can i remove this message? Thnx

    Try this.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • How do i sort out error r6034 on my windows vista when i try to start itunes, the message box is from microsoft visual c++runtime library, it says an application has made an attempt to load the C runtime library incorrectly,

    how do i sort out error r6034 on my windows vista when i try to start itunes ???
    the message box is from microsoft visual c++runtime library, it says an application has made an attempt to load the C runtime library incorrectly, P;ease contact the application's support team for more information.

    Hey deepakmenonfrompune,
    Thanks for the question. I understand that you are experiencing issues with iTunes for Windows. The following article outlines the error message you are receiving and a potential resolution:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Some Windows customers may experience installation issues while trying to install or open iTunes 11.1.4.
    Symptoms may include:
    "The program can't start because MSVCR80.dll is missing from your computer"
    "iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows Error 126)”
    "Runtime Error: R6034 - An application has made an attempt to load the C runtime library incorrectly"
    "Entry point not found: videoTracks@QTMovie@@QBE?AV?$Vector@V?$RefPtr@VQTTrack@@@***@@$0A@VCrashOnOverf low@@***@@XZ could not be located in the dynamic link library C:\Program Files(x86)\Common Files\Apple\Apple Application Support\WebKit.dll”
    Resolution
    Follow these steps to resolve the issue:
    Check for .dll files
    1. Go to C:\Program Files (x86)\iTunes and C:\Program Files\iTunes and look for .dll files.
    2. If you find QTMovie.DLL, or any other .dll files, move them to the desktop.
    3. Reboot your computer.
    Note: Depending on your operating system, you may only have one of the listed paths.
    Uninstall and reinstall iTunes
    1. Uninstall iTunes and all of its related components.
    2. Reboot your computer. If you can't uninstall a piece of Apple software, try using theMicrosoft Program Install and Uninstall Utility.
    3. Re-download and reinstall iTunes 11.1.4.
    Thanks,
    Matt M.

  • Adobe reader XI gives error "mail client cannot fulfill the messaging request".

    I keep receiving warnings that I need to update Adobe Reader. I currently have the latest version of Adobe Reaxer X (10.1.7). When I click on "Check for Updates" I am told no updates are available.
    I have tried installing Adobe Reader XI but, when I launch it, I receive an error message stating that "mail client cannot fulfill the messaging request".
    I do not want to use Microsoft Outlook (or any other Mail Client). How do I install Adobe Reader XI without a default Mail Client being required?

    Hi,
    Do you mean Send as Attachment button under File>Save & Send>Sending Using E-mail
    in Office applications, like Excel or Word?
    Is this an issue that come up recently? Have you ever made any changes to your system?
    If you have installed multiple e-mail programs on the same computer, please try to make Outlook the default mail client and then try again:
    http://office.microsoft.com/en-us/outlook-help/make-outlook-the-default-program-for-email-messages-contacts-and-calendar-HP010355552.aspx
    http://support.microsoft.com/kb/223877
    Regards,
    Ethan Hua
    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.

  • My ipod is telling me there is not enough storage and I cannot back it up as there is not enough icloud storage. I am unable to close the message or go onto settings.

    my ipod is telling me there is not enough storage and I cannot back it up as there is not enough icloud storage. I am unable to close the message or go onto settings.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Then delete some stuff

  • On the inbox screen on the right is the up down scroll, at the top there is rapid scroll which is too close to the Messaging box so when i select scroll up

    when on the inbox screen if i need to scroll up when i place the cursor on the rapid up > the messaging symbol is also highlighted so when i click on the > up the Messaging box opens.
    How can i move the > up symbol or the Messaging symbol ?

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • I successfully deleted a user from my MacBook through the Users and Groups window in System Preferences.  But now I cannot close the lock in the bottom left corner of the box.  When I click on it, I briefly see a word that I think says "reauthorizing" but

    I successfully deleted a user from my MacBook through the Users and Groups window in System Preferences.  But now I cannot close the lock in the bottom left corner of the box.  When I click on it, I briefly see a word that I think says "reauthorizing" but the word flashes too quickly to tell for sure.

    If you are admin.
    Try restarting your Mac.

  • Photoshop CS5.1: The message box reads: Could not print "________.jpg" because of a disk error. Fix?

    Photoshop CS5.1: The message box reads: Could not print “________.jpg” because of a disk error. Fix?

    How To Get Help Quickly!
    Is the printer driver up-to-date?
    Could your disk actually be faulty?
    Boilerplate-text:
    Are Photoshop and OS fully updated?
    As with all unexplainable Photoshop-problems you might try trashing the prefs (after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences you’ve changed) by pressing command-alt-shift on starting the program or starting from a new user-account.
    System Maintenance (repairing permissions, purging PRAM, running cron-scripts, cleaning caches, etc.) might also be beneficial, Onyx has been recommended for such tasks.
    http://www.apple.com/downloads/macosx/system_disk_utilities/onyx.html
    Weeding out bad fonts never seems to be a bad idea, either. (Validate your fonts in Font Book and remove the bad ones.)
    If 3rd party plug-ins are installed try disabling them to verify if one of those may be responsible for the problem.

  • I cannot close the icloud backup message and I cannot even shut down the iPad to use any of the apps

    I cannot close the icloud backup message and I cannot even shut down the iPad to use any of the apps. Any tips or help would be appreciated

    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

Maybe you are looking for

  • Mini DP Port to HDMI

    Hi, I have an imac with the ATI Radeon HD 4850 graphics card, I wish to connect it to my new TV, I have read that some imac's will output video and sound from the mini DP port if you go mini dp to HDMI. Does anyone know whether this will work from wi

  • Pb of resizing panels with GridBagLayout

    Hi ! I've got three panels one under each other (A, B and C) and use GridBagLayout as layout. I'd like to resize only the center one (B) and conserve the height of other ones (A, B). When I fix the size, the preferred, minimum and maximum sizes to th

  • How do I get a replacement CD for Acrobat purchased 8/15/12, I have my serial #

    I purchased my Adobe Acrobat on 8/15/2012.  My computer crashed and I cannot find my disk. How can I get another disk.  I have my serial number.  Thank you Don Arsenault

  • Deactivate monitoring for a certain scenario

    Hello experts, we want to deactivate the monitoring for a certain scenario for security reasons. Is it possible to create a (sync) XI scenario without saving any message data on the XI-System? Best regards, David

  • I would like to export a video with 500 frames as a GIF

    I would like to export a video with > 500 frames as a GIF - can the upper limit be adjusted?  i'm using photoshop cs6