Why do I get a warning triangle error alert on my project in the time frame area. And how do I remove it

Why do I get a yellow triangle looks like warning or alert symbol in my timeframe area. And what do I need to do to delete it?

What is the "Timeframe" area?
A clip in an Event, or a whole Event has lost track of it's originals.
Did you delete anything in an Event that you were using in a Timeilne?

Similar Messages

  • APAgent.exe error dnssd.dll on startup with the suggestion to reinstall. How do I remove the error?

    I am giving away my windows XP laptop to my 80 year old Mom and deleted itunes and ipod software.
    Now getting APAgent.exe error dnssd.dll with the suggestion to reinstall. How do I remove the error? I don't want to reinstall on this laptop.

    Did you uninstall Bonjour from the PC? Airport software uses Bonjour, and it looks like your Airport base station agent is complaining about the missing Bonjour (dnssd.dll is a Bonjour file).
    Is your Mom going to be using the Airport capabilities of the laptop? If not, it might be easiest just to uninstall the Airport utility and/or other related Airport software.

  • Needs to know why firefox did not send a request for appcache manifest file declared in the html manifest="url" and how to fix it?

    I created an HTML5 appcache app as follow:
    <!DOCTYPE html>
    <html manifest="url.manifest">
    <head>
    </head>
    <body>
    </body>
    Upon onload() event, I made several AJAX calls (POST) to the servers to load the data for the first time and they all done via HTTPS. I've inspected the servers' access log and I did not see the request for url.manifest and the loading of the appcache fails with an error (no details provided).
    Chrome is working fine with current setup and here is the content of my manifest:
    CACHE MANIFEST
    CACHE:
    /images/flower.gif

    This forum answers many webdev questions, but I think yours calls for a higher level of expertise. You may want to try the [http://forums.mozillazine.org/viewforum.php?f=25 mozillaZine Web Development board]. It is an unofficial forum with separate registration.

  • I'm trying to open a 900kb Word doc (240pages) in Pages but get this error message:  Import Warning - A table was too big. Only the first 40 columns and 1,000 rows were imported.

    I'm trying to open a 900kb Word doc (240pages) in Pages but get this error message:  Import Warning - A table was too big. Only the first 40 columns and 1,000 rows were imported.

    Julian,
    Pages simply won't support a table with that many rows. If you need that many, you must use another application.
    Perhaps the originator could use a tabbed list rather than a table. That's the only way you will be able to contain a list that long in Pages. You can do the conversion yourself if you open the Word document in LibreOffice, Copy the Table, Paste the Table into Numbers, Export the Numbers doc to CSV, and import to Pages. In Pages Find and Replace the Commas with Tabs.
    There are probably other ways, but that's what comes to mind here.
    Jerry

  • Why am I getting an ORA-04052 error when I try to compile a Procedure?

    Hi,
    The following procedure I'm getting an ORA-04052 error when I try to compile the following procedure.
    CREATE OR REPLACE PROCEDURE APPS.Find_String (
    pin_referenced_name IN dba_dependencies.referenced_name%TYPE)
    IS
    cursor cur_get_dependancy
    is
    SELECT distinct owner, name, type
      FROM [email protected]        -- prod.world
    WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d'
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
    order by name;
    v_owner  varchar2(40);
    v_name   varchar2(50);
    v_type   varchar2(40);
        BEGIN
           dbms_output.put_line(upper(pin_referenced_name)||' is found in the following objects.');
           dbms_output.put_line(' ');
           dbms_output.put_line(RPAD('OWNER', 30, ' ')||RPAD('NAME', 60, ' ')||RPAD('OBJECT TYPE', 30, ' '));
           dbms_output.put_line('-------------------------------------------------------------------------------------------------------------------');
            FOR i IN cur_get_dependancy
            LOOP
                v_owner := RPAD(i.owner, 30, ' ');
                v_name  := RPAD(i.name, 45, ' ');
                v_type  := RPAD(i.type, 30, ' ');
                dbms_output.put_line(v_owner ||v_name|| v_type);
            END LOOP;
    END find_string;I'm using the link [email protected]. The procedure compiles for other database links used in the cursor including the one commented to the right of the code 'prod.world'.
    What's even stranger is that I took the SELECT statement
    SELECT distinct owner, name, type
      FROM [email protected]        -- prod.world
    WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d'
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
    order by name;out of the procedure and ran it on the command line using the @pinp.world link, the SQL statement ran just fine. But when I tried to compile the above procedure with that exact same SQL statement with the exact same link I get the following string of errors.
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02068: following severe error from PINP
    ORA-03113: end-of-file on communication channelHow can the link work just fine in a regular SQL statement but then cause an error when its compiled in code that otherwise compile just fine when using any other link or even just a plain database. Does anyone have any suggestions?

    OK Justin,
    Here's the query by itself run in another database using the @pinp.world link and querying the dba_dependencies table in the pinp.world database. As you can see the query using this link works just fine returning the requested rows. I can't figure out why the compiler is having an issue with essentially this same query when I try to compile it in a cursor in TOAD. Also this is the database (dev1.world) that I'm trying to compile this Procedure in.
    By the way I'm in an Oracle 9.2.0.6 database and TOAD v9.2.
    SQL> conn apps/apps1@dev1
    Connected.
    SQL> SELECT distinct owner, name, type
      2    FROM [email protected]
      3   WHERE lower(referenced_name) = lower('ALL_USERS')
      4     AND referenced_type <> 'SYNONYM'
      5     AND owner <> 'SYS'
      6   order by name;
    OWNER                          NAME                           TYPE
    PUBLIC                         ALL_USERS                      SYNONYM
    XDB                            DBMS_XDBUTIL_INT               PACKAGE BODY
    XDB                            DBMS_XDBZ0                     PACKAGE BODY
    SYSTEM                         MVIEW_EVALUATIONS              VIEW
    SYSTEM                         MVIEW_EXCEPTIONS               VIEW
    SYSTEM                         MVIEW_FILTER                   VIEW
    SYSTEM                         MVIEW_LOG                      VIEW
    SYSTEM                         MVIEW_RECOMMENDATIONS          VIEW
    SYSTEM                         MVIEW_WORKLOAD                 VIEW
    ORASSO                         WWCTX_API                      PACKAGE BODY
    PORTAL                         WWCTX_API                      PACKAGE BODY
    ORASSO                         WWEXP_UTL                      PACKAGE BODY
    PORTAL                         WWEXP_UTL                      PACKAGE BODY
    PORTAL                         WWPOB_API_PAGE                 PACKAGE BODY
    PORTAL                         WWPOF                          PACKAGE BODY
    ORASSO                         WWPRO_PROVIDER_VALIDATION      PACKAGE BODY
    PORTAL                         WWPRO_PROVIDER_VALIDATION      PACKAGE BODY
    PORTAL                         WWSBR_EDIT_ATTRIBUTE           PACKAGE BODY
    PORTAL                         WWSBR_FOLDER_PORTLET           PACKAGE BODY
    PORTAL                         WWSBR_USER_PAGES_PORTLET       PACKAGE BODY
    ORASSO                         WWUTL_API_PARSE                PACKAGE BODY
    OWNER                          NAME                           TYPE
    PORTAL                         WWUTL_API_PARSE                PACKAGE BODY
    PORTAL                         WWUTL_EXPORT_IMPORT_LOV        PACKAGE BODY
    ORASSO                         WWUTL_LOV                      PACKAGE BODY
    PORTAL                         WWUTL_LOV                      PACKAGE BODY
    PORTAL                         WWV_CONTEXT                    PACKAGE BODY
    PORTAL                         WWV_CONTEXT_UTIL               PACKAGE BODY
    PORTAL                         WWV_DDL                        PACKAGE BODY
    PORTAL                         WWV_GENERATE_UTL               PACKAGE BODY
    PORTAL                         WWV_GLOBAL                     PACKAGE
    PORTAL                         WWV_MONITOR_DATABASE           PACKAGE BODY
    PORTAL                         WWV_PARSE_AS_SPECIFIC_USER     PACKAGE BODY
    PORTAL                         WWV_PARSE_AS_USER              PACKAGE BODY
    PORTAL                         WWV_SYS_DML                    PACKAGE BODY
    PORTAL                         WWV_SYS_RENDER_HIERARCHY       PACKAGE BODY
    PORTAL                         WWV_THINGSAVE                  PACKAGE BODY
    PORTAL                         WWV_UTIL                       PACKAGE BODY
    PORTAL                         WWV_UTLVALID                   PACKAGE BODY
    38 rows selected.
    SQL>Let me know what you think.
    Thanks again.

  • My Apple G5 using operating system 10.6.8 keeps locking up. I get no warning or error message. I do get some intermittent screen distortion. Any ideas as to what could be causing this and how i get rid of this problem? Complete system re - install? N

    My mac keeps locking up it s Power mac G5 Intel using 10.6.8 OS.X. I get no warning or error messages it just locks up and the only way to get it to work again is to depress power button and restart. Its random intermittent and incredibly frustrating. I do get some screen distortion from time to time and wondered whether it may be a graphics card issue or whether it could be solved with a complete system re-install and OS upgrade?

    According to everymac.com, your Mac came with Tiger, 10.4.x and can't go any higher than Lion, 10.7.x.
    It would have come with gray, machine specific disks. Since there's no reason to install 10.4.x first, and then Snow Leopard over that, just purchase a retail copy of Snow Leopard for $20. What you won't get with the retail version of SL is the iLife suite (Garage Band, iDVD, etc.) that were on the original bundled disks, but you can purchase iLife on Amazon pretty cheap, and get newer versions besides.
    When you get Snow Leopard, you can boot to the DVD, erase the drive and install everything clean. Hopefully, you issue is only software, and not hardware related.

  • Why am I getting an app store error when trying to download Lion?

    Why am I getting an app store error when trying to download Lion? Any ideas?

    I would complain really bad and get them to give you a Flash card that they just came out with because they've inconvenienced you so much and  you don't have hours to spend at the apple store waiting for the whole thing to load.
    The only thing about the flash cards is that it will change your whole motherboard so it won't allow you to install snow leopard or anything less, ever again. (as what the apple specialist told me over the phone).
    I would also suggest waiting. It really isn't worth the hastle and you may not benefit from installing it on your old computer... just a thought.

  • Not getting email on MAcBook Pro, but receiving on iPhone. Getting message "Warning Recent errors logged" It repeatedly states "The Header From: address postoffice is not authorised - please go to control add PHP" But I only have 1 email address.

    I am suddenly not getting email on my MacBook Pro, but am receiving e-mail on my iPhone. I'm getting message "Warning Recent errors logged" It repeatedly states "The Header From: address <postoffice> is not authorised - please go to control add PHP" But I only have 1 email address. I'm afraid to add anything on since I don't even know what this other e-mail address is. What should I do? And would this definitely be the cause of my not receiving e-mail?

    I pressed check again and here is what appeared:
    CONNECTED Apr 04 19:03:02.511 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:110 -- socket:0x118296830 -- thread:0x10121d6c0
    CONNECTED Apr 04 19:03:02.513 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:587 -- socket:0x1164f4730 -- thread:0x114a5a030
    CONNECTED Apr 04 19:03:02.526 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.elikann.com -- port:2525 -- socket:0x11444a6a0 -- thread:0x11827f160
    READ Apr 04 19:03:02.556 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:110 -- socket:0x118296830 -- thread:0x10121d6c0
    +OK <[email protected]>
    READ Apr 04 19:03:02.563 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:587 -- socket:0x1164f4730 -- thread:0x114a5a030
    220 mail.hostingplatform.com ESMTP
    WROTE Apr 04 19:03:02.566 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:110 -- socket:0x118296830 -- thread:0x10121d6c0
    CAPA
    CONNECTED Apr 04 19:03:02.568 [kCFStreamSocketSecurityLevelNone]  -- host:mail.authsmtp.com -- port:2525 -- socket:0x11824ca00 -- thread:0x1176c1ab0
    READ Apr 04 19:03:02.572 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.elikann.com -- port:2525 -- socket:0x11444a6a0 -- thread:0x11827f160
    220 mail.hostingplatform.com ESMTP
    WROTE Apr 04 19:03:02.585 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:587 -- socket:0x1164f4730 -- thread:0x114a5a030
    EHLO 192.168.1.4
    WROTE Apr 04 19:03:02.592 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.elikann.com -- port:2525 -- socket:0x11444a6a0 -- thread:0x11827f160
    EHLO 192.168.1.4
    READ Apr 04 19:03:02.610 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:110 -- socket:0x118296830 -- thread:0x10121d6c0
    -ERR authorization first
    WROTE Apr 04 19:03:02.628 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:110 -- socket:0x118296830 -- thread:0x10121d6c0
    USER [email protected]
    READ Apr 04 19:03:02.630 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:587 -- socket:0x1164f4730 -- thread:0x114a5a030
    250-mail.hostingplatform.com
    250-STARTTLS
    250-PIPELINING
    250-8BITMIME
    250-SIZE 65000000
    250 AUTH LOGIN PLAIN CRAM-MD5
    READ Apr 04 19:03:02.639 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.elikann.com -- port:2525 -- socket:0x11444a6a0 -- thread:0x11827f160
    250-mail.hostingplatform.com
    250-STARTTLS
    250-PIPELINING
    250-8BITMIME
    250-SIZE 65000000
    250 AUTH LOGIN PLAIN CRAM-MD5
    WROTE Apr 04 19:03:02.648 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:587 -- socket:0x1164f4730 -- thread:0x114a5a030
    AUTH PLAIN  (*** 44 bytes hidden ***)
    WROTE Apr 04 19:03:02.667 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.elikann.com -- port:2525 -- socket:0x11444a6a0 -- thread:0x11827f160
    AUTH PLAIN
    READ Apr 04 19:03:02.670 [kCFStreamSocketSecurityLevelNone]  -- host:mail.authsmtp.com -- port:2525 -- socket:0x11824ca00 -- thread:0x1176c1ab0
    220 mail.authsmtp.com ESMTP Sendmail 8.14.2/8.14.2/; Fri, 5 Apr 2013 00:03:02 +0100 (BST)
    READ Apr 04 19:03:02.671 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:110 -- socket:0x118296830 -- thread:0x10121d6c0
    +OK
    WROTE Apr 04 19:03:02.691 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:110 -- socket:0x118296830 -- thread:0x10121d6c0
    PASS ************
    WROTE Apr 04 19:03:02.698 [kCFStreamSocketSecurityLevelNone]  -- host:mail.authsmtp.com -- port:2525 -- socket:0x11824ca00 -- thread:0x1176c1ab0
    EHLO 192.168.1.4
    READ Apr 04 19:03:02.704 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:587 -- socket:0x1164f4730 -- thread:0x114a5a030
    235 ok, go ahead (#2.0.0)
    READ Apr 04 19:03:02.712 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.elikann.com -- port:2525 -- socket:0x11444a6a0 -- thread:0x11827f160
    334
    WROTE Apr 04 19:03:02.734 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:587 -- socket:0x1164f4730 -- thread:0x114a5a030
    QUIT
    WROTE Apr 04 19:03:02.756 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.elikann.com -- port:2525 -- socket:0x11444a6a0 -- thread:0x11827f160
    QUIT
    READ Apr 04 19:03:02.759 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:110 -- socket:0x118296830 -- thread:0x10121d6c0
    +OK
    WROTE Apr 04 19:03:02.776 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:110 -- socket:0x118296830 -- thread:0x10121d6c0
    QUIT
    READ Apr 04 19:03:02.799 [kCFStreamSocketSecurityLevelNone]  -- host:mail.authsmtp.com -- port:2525 -- socket:0x11824ca00 -- thread:0x1176c1ab0
    250-mail.authsmtp.com Hello pool-72-93-40-57.bstnma.east.verizon.net [72.93.40.57], pleased to meet you
    250-ENHANCEDSTATUSCODES
    250-PIPELINING
    250-8BITMIME
    250-SIZE 52428800
    250-AUTH CRAM-MD5 DIGEST-MD5 LOGIN PLAIN
    250-STARTTLS
    250 HELP
    WROTE Apr 04 19:03:02.808 [kCFStreamSocketSecurityLevelNone]  -- host:mail.authsmtp.com -- port:2525 -- socket:0x11824ca00 -- thread:0x1176c1ab0
    AUTH PLAIN ********************
    READ Apr 04 19:03:02.822 [kCFStreamSocketSecurityLevelNone]  -- host:mail.elikann.com -- port:110 -- socket:0x118296830 -- thread:0x10121d6c0
    +OK
    READ Apr 04 19:03:02.907 [kCFStreamSocketSecurityLevelNone]  -- host:mail.authsmtp.com -- port:2525 -- socket:0x11824ca00 -- thread:0x1176c1ab0
    235 2.0.0 OK Authenticated
    WROTE Apr 04 19:03:02.917 [kCFStreamSocketSecurityLevelNone]  -- host:mail.authsmtp.com -- port:2525 -- socket:0x11824ca00 -- thread:0x1176c1ab0
    QUIT

  • I can not transfer date from one hard drive to another, I keep getting an error because I have two of the same file names and one file name is in caps and I cant change the file name

    can not transfer date from one hard drive to another, I keep getting an error because I have two of the same file names and one file name is in caps and I cant change the file name. My original external has an error and needs to be reformatted but I dont want to lose this informations its my entire Itunes library.

    Sounds like the source drive is formatted as case sensitive and the destination drive is not. The preferred format for OS X is case insensitive unless there is a compelling reason to go case sensitive.
    Why can't you change the filename? Is it because the source drive is having problems?  If so is this happening with only one or two or a few files? If so the best thing would be to copy those over individually and then rename them on the destination drive.
    If it is more then you can do manually and you can't change the name on the source you will have to reformat the destination as case sensitive.
    Btw this group is for discussion of the Support Communities itself, you;d do better posting to Lion group. I'll see if a host will move it.

  • I am trying to listen BBC radio news from BBC App, but on pressing the button I always get the error "there was an error playing this radio feed". What is the source of this error and how can I remove it?

    I am trying to listen BBC radio news from BBC App, but on pressing the button "live radio" I always get the error "there was an error playing this radio feed". What is the source of this error and how can I remove it?

    That is probably just a generic error message and you might not ever know what is causing it. Assuming that you have been able to play live radio with the app in the past (I know nothing about the app) and assuming that all other Internet related functions (Safari, email, etc.) are working properly on your iPad, quit the app completely and reboot your iPad.
    Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    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.
    If that fails to resolve the issue, you might want to reboot your router, unplug it for about 30 seconds and then plug it in again.

  • I am getting this message: An error occurred while sending mail. The mail server responded: 5.3.4 Requested action not taken; To send your message, please sign into your account online first and solve a puzzle. (Sorry for the inconvenience--these puzzles

    I am trying to send a message with an attachment, I get this message: An error occurred while sending mail. The mail server responded: 5.3.4 Requested action not taken; To send your message, please sign into your account online first and solve a puzzle. (Sorry for the inconvenience--these puzzles help us stop spammers.). Please check the message and try again.
    == Today

    Me too (with Thunderbird). EXCEPT it reads
    Requested action not taken; This account is currently blocked from sending messages. If you don't think you've violated the Windows Live Terms of Use, please contact customer support...
    Occasionally the mail "sends", but it is unpredictable. Tech Support at Qwest (for q.com under Windows Live) does not find a problem at their end.
    More suspiciously, the same account accessed from my Mac does not seem to exhibit this problem. Have reloaded T'bird. Recurred again.

  • Why do I get sometimes my macbook to do white noise out of the blue

    Why do I get sometimes my macbook to do white noise out of the blue? It's a new mac so is it faulty?

    Never heard of that problem - seems as if something may be affecting your speakers, somehow.
    If you're still under warranty, you should take your machine to your local Apple Store or an AASP and have them check it out. Even if you're not still under warranty, the diagnosis and estimate for repair will be free.
    Good luck,
    Clinton

  • Trouble uploading to shootproof, keep getting an error that says "internal error, name not unique, color" any idea what this is and how to resolve it?

    trouble uploading to shootproof, keep getting an error that says "internal error, name not unique, color" any idea what this is and how to resolve it?

    Note that you should be cautious when you get the 'untrusted' error message and that you should never create a permanent exception in cases like this without investigating the cause.
    If you have created a permanent exception then best is to remove it in the Server tab in the Certificate Manager.
    *Tools > Options > Advanced > Certificates/Encryption: View Certificates

  • I've spent 6 hours trying to update my iPad, and it doesn't work. It can't get past trying to back up, and just stops and gives an error code. I've deleted the backup, re-synced, and tried again and still no luck. What do I do now?

    I've spent 6 hours trying to update my iPad, and it doesn't work. It can't get past trying to back up, and just stops and gives an error code. I've deleted the backup, re-synced, and tried again and still no luck. What do I do now?

    I am not running any antivirus software on my Mac, and I have the firewall shut off. Any other ideas? I have not problem downloading all other Apple software updates. I downloaded the latest iTunes software before starting the iPad update process.

  • Why do I get a darker printed picture than what I see on the screen of my iMac

    why do I get a darker printed picture than what I see on the screen of my iMac

    Because your screen is calibrated incorrectly? Because you are using an Adobe RGB color profile instead of the recommended sRGB? Because your printer is not working correctly?
    With no information other than "it does not work" guesses are all that one can provide
    What set up do you have? What color profile are you using? How is your screen calibrated?
    What else can you tell us?
    LN

Maybe you are looking for

  • Problem with starting the Web Dynpro Application

    Hello, I have a problem with my web dynpro application, which is in our SAP Portal. We have three different systems (development, test, production). In production always the follewing error message occurs: The URL https://zsil2401.servers.wacker.corp

  • Using DBMS_ALERT package

    Hello, I would like to use DBMS_ALERT package. I have read documentation about this package. It works correctly but I have noticed that sometime the pl/sql block (with dbms_alert) performed quick but sometimes it lasted too long. There is no traffic

  • How i save Buzzword document in my computer?

    dear friedns have create buzzword document,now i wana save that doc in my computer. how to save that? help required? i dont know where it save when i save that doc.

  • 2 DHCP servers, 2 subnets, 1 physical network

    I am trying to add an Airport Extreme to our office network, but would like it to distribute IP addresses on a separate subnet from our primary network. Here is the basic network topology (hope it makes sense): INTERNET -ROUTER (DHCP Server for 192.1

  • Question about error 11

    I'm getting an error message (no. 11) saying I have to uninstall and reinstall InDesign. What will happen to all my files created?