Library Issue with showing Documents.

After a restart of the server I have noticed that some libraries are showing a Correlation ID error message instead of documents. The error is shown below. On some libraries that have InfoPath forms attached, if i change the view, all the documents appear. 
So basically on some libraries the All Documents is showing the error message below.
Unable to display this Web Part. To troubleshoot the problem,
open this Web page in a Microsoft SharePoint Foundation-compatible HTML editor
such as Microsoft SharePoint Designer. If the problem persists, contact your Web
server administrator.
dfrancis

resolved. I removed an update and restarted the server.
dfrancis

Similar Messages

  • Issue With Sales Document Type in BW.

    Dear Experts,
    I am facing an Issue with Sales Document Type(Object name is 0DOC_TYPE).
    when i am loading data from R/3 to BW It is converting Sales Document type as follow
    Sales Document Type in R/3                         Sales Document Type in BW
    OR                                                                        TA
    CR                                                                        G2
    DR                                                                        L2
    I check with an ABAPer and he told that there is conversion exit for this Object so that's why it is converting when sending to BW. But the user wants to see in Report same as it is in R/3 like OR, CR DR ... etc.
    I have done some investigation and found that the conversion exit (CONVERSION_EXIT_AUART_INPUT and CONVERSION_EXIT_AUART_OUTPUT) are converting the values based in the table TAUUM
    The staructure of TAUUM is
    MANDT(Client)  SPRAS(Language) AUART(Sales document type (not converted)   AUART_SPR(Language key for sales document type)
    and values are
    100 E TA OR
    100 E G2 CR
    etc....
    The same Conversion exits(CONVERSION_EXIT_AUART_INPUT and CONVERSION_EXIT_AUART_OUTPUT) and table TAUUM are available in BW as well. So i thought I can Use InfoObject 0DOC_TYPE by changing it's conversion Routine as AUART(which runs based on the above mentioned conversion exits).
    but the the problem is table TAUUM(Pool Table) does't have any data in BW.
    So can anyone tell me is there any option to load data into table TAUUM from R/3 or any other option to solve this issue.
    Your ideas will really help's me.
    Thanks in advance,
    Dara.

    Hi Venkat,
    Thanks a lot for your immediate response.
    The InfoObject 0DOC_TYPE was without conversion exit by default. but when data coming from R/3 it is converting and sending to BW So that's why i am planning to use conversion exit "AUART" in the info Object.
    I checked data in R/3 using RSA3 it is showing sales document type as "OR" and for the same transaction data when i checked in PSA it is showing as "TA".
    Could you please let me know if there any other options.
    Thanks in advance,
    Dara.

  • Hi! So I am using a MacBook Pro with Retina Display, and I am having some trouble issues with sharing documents on Google.

    I am part of a 2 person group, who's entering a documentary for the NHD competiton. If you don't know what that is here's a link: http://www.nhd.org. Anyway, that doesn't really matter. What does matter, is that my partner and I, we're using Final Cut Pro X to make the documentary. I downloaded the Final Cut Pro X trial on my MacBook Pro so I could work on our documentary at home. My partner Cecilia, wanted to work on it as well, but using Windows Media Player or something like that. My family uses a lot more Apple than windows. So I come home, work a little on our documentary, go under file ---> share ------> masterfile---> settings-----> Video Codec -----> H.264. A couple seconds/ miniutes (it didn't take very long) later, I see our documentary as a Quick Time file pop up under my documents. I then log into gmail. i click compose, type in my partners e-mail, and then click the little paper clip to attach my new quick time file. Considering that it's 11 minutes long and is filled with media and audio, It's no suprise when I see that it exceeds the limit of ...gigabytes i think. So i send it to her using google drive. However, a couple minutes later, my partner says that she can see the file, but can't seem to download it. I double-check and make sure that I, as the owner, allowed her to edit the file. Then I check to see if i accidently clicked: "Prevent viewer from downloading" which I hadn't. Then i, myself, click on the file and click download and it works fine for me, but apparently doesn't work at all for her windows computer. This means that there's somethig wrong with her computer, or I did something wrong while sharing the file. Any ideas as to why the whole downloading process worked on my Apple Laptop and not her Windows Computer?

    These links might provide some information that may be of help.
    http://support.apple.com/kb/TA20831
    https://discussions.apple.com/message/2035035?messageID=2035035
    I've encountered this error myself upon occasion.  If I remember correctly, it was a permissions/ownership issue with the some of the files I was copying.

  • Issue with showing input forms for update SQL statement

    Hi guys - I'm currently doing a college project and I'm not overly experienced in the area of Java/JSP but I'm having an issue with a project. I have a JSP project inserting, viewing and deleting rows from a database but having an issue getting the update/modify function working in my project.
    If I hardcode values into my variables and launch the project it updates fine, but I believe theres an issue with how I'm calling the existing rows. I wish for the user to be able to view the rows from the database and modify as they wish. Once they submit the modifications, I want the row to be updated. Can anyone see where the problem might exist in my code below? I hope it's something small, but I'm not able to fix it at the moment and would apreciate anyone's help! :)
    The problem I'm facing at the moment is the input boxes for displaying the current rows from the database are not even showing up..
    ModifyNode.jsp:
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <%@page import="suaspackage.NodeManager" %>
    <jsp:useBean id="AddNode" scope="session" class="suaspackage.NodeManager"/>
    <%@ page language="java" %>
    <%@ page import="java.sql.*" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>Suas</title>
        </head>
        <body
        <%! // Class level declarations
            Connection dbCon; // interface type in java SQL
            ResultSet rs; // interface type in java SQL
            String serverName = "localhost";
            String nodeID;
            String valowneremail;
            String valownersms;
            boolean bFirstTime;
            %>
            <%
            bFirstTime = true;
            if(request !=null){
                if(request.getParameter("submit") != null){
                    nodeID = "6";
                    valowneremail = request.getParameter("OwnerEmail");
                    valownersms = request.getParameter("OwnerSms");
                    bFirstTime = false;
                    AddNode.update(nodeID, valowneremail, valownersms);
            %>
            %>
        <%
            try{
            Class.forName("com.mysql.jdbc.Driver"); // SQLServer specifics 1
            dbCon = DriverManager.getConnection( // SQLServer specifics 2
                    "jdbc:mysql://" + serverName + ":3306" + "/suasdb", "root", "9631");
            Statement stmt;
            String sqlString = "select nodeid, node, owneremail, ownersms from nodemanager";
            stmt = dbCon.createStatement();
            rs = stmt.executeQuery(sqlString);
            } catch (ClassNotFoundException e){
                out.write("<B><CENTER><P>");
                out.write("Error loading class for Suas database connection: </P><P>");
                out.write(e.toString());
                out.write("</B></CENTER></P>");
                } catch (SQLException e){
                    out.write("<B><CENTER><P>");
                    out.write("Error accessing Suas database connection: </P><P>");
                    out.write("</B></CENTER></P>");
            if(rs!=null){
        %>
    <jsp:include page="includeheader.jsp" />
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td><img src="images/pagemarker_nodemanager.jpg" alt="Node manager" width="176" height="55"></td>
        </tr>
      </table>
             <jsp:include page="includenodemenu.jsp" />
    <TABLE WIDTH="75% BORDER="0" CELLPADDING="5" ALIGN="CENTER">
    <TR BGCOLOR="#9ddc4f">    </TR>
    <br>
    <TR BGCOLOR="#9ddc4f">
      <TH>Node ID</TH>
      <TH>Node</TH>
      <TH>Owner E-Mail Address</TH>
      <TH>Owner SMS Number</TH>
      <TH></TH>
    </TR>
             <%  } else {
                %>
    <% while (rs.next()){
        %>
    <FORM>
    <TR BGCOLOR="#d7eabf">
        <TD><%=rs.getString("nodeid")%></TD>
        <TD><%=rs.getString("node")%></TD>
        <TD><INPUT size="20" type="text" name="OwnerEmail" value="<%=rs.getString("owneremail")%>"</TD>
        <TD><INPUT size="20" type="text" name="OwnerSms" value="<%=rs.getString("ownersms")%>"</TD>
        <TD><INPUT type="submit" name="submit" value="Save"></TD>
    </TR>
    <% }
        %>
        </body>
    </html>
    {code}
    The relevant part of my NodeManger package:
    {code}
        public void update(String updateNodeId, String valEmail, String valSMS) throws ClassNotFoundException, SQLException{
            try{
                String updateSQL;
                String nodeid = updateNodeId;
                String updateowneremail = valEmail;
                String updateownersms = valSMS;
                Connection dbCon;
                Statement stmt;
                ResultSet rs;
                String serverName = "localhost";
                Class.forName("com.mysql.jdbc.Driver"); // SQLServer specifics 1
                dbCon = DriverManager.getConnection( // SQLServer specifics 2
                 "jdbc:mysql://" + serverName + ":3306" + "/suasdb", "root", "9631");
                updateSQL = "update nodemanager SET owneremail='" + updateowneremail + "', ownersms='" + updateownersms + "' WHERE nodeid='" + nodeid + "'";
                stmt = dbCon.createStatement();
                stmt.execute(updateSQL);
            } catch (ClassNotFoundException e){
                throw(e);
            } catch (SQLException e){
                throw(e);
        }{code}
    Edited by: daveomcgee on Apr 9, 2009 8:03 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    I support what ThomYork suggests. Learn how to properly separate database/business logic from your view logic. Learn how to use servlets and JSPs together. Read abourt DAO classes. Learn how to build a view in JSPs using taglibs (JSTL to begin with).
    You might think it is too much work, but if you learn this stuff the wrong way now, it is going to be that much harder converting to the clean, readable, reusable and maintainable way later on.

  • Library issues with Windows 7 (64 Bit)

    I have just upgraded to a new computer and have had enormous issues with I tunes 64 bit for Windows 7. I had my music on another disc which I have mounted into the new computer. It is the same drive name (D) as on my old computer (Windows XP 32 bit). I Tunes finds my libray and I can see all my songs. However, 1. All of my existing artwork is missing.
    2. When I try to play any song it says file not found?
    I have authorised the new PC, but still no joy.

    Did you download the 64bit version of iTunes? I have Win7 Pro 64 bit and iTunes works on my pc. Just keep in mind that when you upgrade your OS, that doesn't mean that your programs automatically switch to 64 bit too, you may need to do a lot of re-installing of some of your programs

  • DVR issue with show overrun by 1 minute

    New customer to FIOS.  Loving the service so far however, I am encountering a problem with show overrun.
    I am DVRing two shows at 9pm. I am also attempting to DVR two shows at 10pm.
    Show A (records from 9:00-10:01) is scheduled to run until 10:01pm.  Therefore the FIOS DVR will not allow me to record 3 shows, even though Show A is only going over by one minute. 
    Cablevision used to allow me to alter the recording time by changing the recording time by a minute.  Ergo, my 10pm show could be recorded from 10:01 -11:00.  I don't care if I miss the first minute recap of the show.
    Is there anyway for this to happen?  To be able to alter the actual record time, so that it would not completely disregard the entire 10pm show I want to record?
    Thanks in advance!
    Solved!
    Go to Solution.

    Manual recording is not so much a 'solution' as it is a workaround. Come on Verizon even Comcast automatically just clips the 1 minute of off the next show and their DVR is terrible.

  • Issue with New Document in a document library with multiple content types

    Hi,
    I have a created a custom list definition based on a document library. I added 3 content types in this list, one is a document set (lets call it DOCSET), the two others are content types inheriting from Document (DOCA and DOCB).
    I deployed the list definition with a site scoped feature and the list instance with a web scoped feature. After activating the two features, the list is created and the content types are present in the list.
    When I click in the New Document button and choose either the DOCA or DOCB content type, a Word document opens and the DOCA content type is always associated to this Word document.
    With SharePoint Manager 2013 I saw that the template.dotx document was not in the Forms/DOCA or Forms/DOCB folder.
    So I decided to remove all the content types from the list definition and add them by code with the ListAdded event receiver. I used list.ContentTypes.Add to add the content types to the list.
    With this method the templates are correctly copied from the template.dotx in the RootFolder/Forms folder of my list. These templates have the rights content type id, but the New Document button still does not work properly.
    So I looked at the Content Types inside my library and saw that the DocumentTemplateUrl linked to the RootFolder/Forms/template.dotx and not the RootFolder/Forms/DOCA/template.dotx or RootFolder/Forms/DOCB/template.dotx.
    I debugged my code to look closer and see that right after the list.ContentTypes.Add, the DocumentTemplateUrl is correclty set but when my EventReceiver finishes, the DocumentTemplateUrl get back to the RootFolder/Forms/template.dotx.
    Have you any idea why this is not working ?
    Regards

    Hi,
    Per my understanding, there is an issue about the DOCA and DOCB content types which inherits from Document Content Type in your custom list definition.
    By default, if there is a custom content type inherits the OOTB Document Content Type, it will also inherits the template.dotx file from the OOTB Document Content Type.
    The template URL of a custom content type which inherits the OOTB Document Content Type:
    If you want to specify different templates for different content types, the code demo below would be helpful:
    http://www.learningsharepoint.com/2010/07/14/programmatically-create-a-new-content-type-in-sharepoint-2010/
    Thanks
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Issue with corrupted document, need Help !

    Dear all,
    In our company we use daily Indesign 7.5 (cs 5.5 package) and when we export the .ind document to .pdf the system crash.
    Above this the original document (.ind) is corrupted and we're not able to open thedocument.
    We loosed a lot of work and we're not able to restore de document.
    When we try to open the corrupted document this message appear :
    Can somebody help me?
    Thx and have a nice day.

    Thank you, yes, we at Markzware can try to help with your corrupt InDesign documents, for sure.
    From as far as we can see when dealing with the odd corrupt InDesign file from time to time, is that it comes down to three main reasons why these InDesign documents have issues:
    Font(s)
    Image(s)
    PowerOutage or Forced Stopped
    Fonts can indeed be a corrupt font itself, but also corrupt, over-loaded or otherwise odd-balled font caches. Here is a video on how to clear font caches in InDesign and although for a Mac in this video, I think you'll get the idea on how to do that on a PC as well:
    One highly corrupted image can ruin the show for your entire file. Check all images individually till you find the bad one and remove that. Also, more times then I can count, InDesign users drag-and-drop images from a web browser while visiting a web page, right into an InDesign layout. That is a big no-no. Not saying your are doing that, but just covering what can happen in the images category and a bad InDesign file.
    As for the odd power outage, well that is something maybe Tesla could have helped us with, but until a time when we are not dependant on AC/DC currents, it will remain a sore point. Power in your cases is likely not the issue though.
    Always report issues like these to Adobe though. They can also often help and if not right away, at least they may gather important details to help stop that type of corruption in the future.
    If all else fails and as mentioned, we as Markzware can help try and fix your files - Bad InDesign or Quark File Recovery Service
    Friendly Regards,
    David
    Markzware

  • Filtering issue with "Show photos in subfolders" option

    Hi,
    Maybe I missed something but there's a problem I'm unable to solve...
    I have disabled the "Show photos in subfolders" option in the Library module because I don't want LR to systematically display all photos each time I hover the root folder or a folder containing multiple subfolders: this is time consuming and slows down the software very much.
    However, there's an unwanted side effect of this choice: I can no longer do a global search from the filtering panel. The filtering criteria that are available there are related to the photos located in the currently selected folder. Even when selecting the root folder (which actually doesn't contain any photo but only subfolders), I can't select for example all photos from a given camera or captured at a given date. Actually, since the root folder is empty, there's no filtering option at all.
    Even when the "Show photos in subfolders" option is disabled, we should have the possibility to make a global search without having to re-enable this option first and then disabling it when we're done. Again, I may have missed something obvious and I know that solving this problem might not be that easy. Anyway, if a solution exists...
    Thanks in advance.

    Clicking on any folder is a kind of a filter-search already; regardless of whether you are also showing images in subfolders, or not.
    The All Photographs virtual collection will allow you to filter-search the entire Library. Any other use of the filter bar is not really a search; it is a refinement of an existing search. So in the case of viewing a given folder, if you want to view images with given properties even that fall outside this folder, you will first need to abandon that folder view - this seems to me, to be inherent.
    IIRC at or near the "breadcrumbs" display at the left end of the filmstrip, you can get at a little history menu of previously visited collections and folders (sorry, I cannot check the specifics just now). So you could view a folder, then recall a whole-catalog view and filter that for your lens or whatever, then go back to your single-folder view that way - still with that filter active, until you clear it.
    As to using the filtering, I find it handy to make some saved filter presets for commonly used search criteria (like lenses), including also a "no filters" option. Once set up, these can be readily accessed on the fly, at the right end of the filmstrip, without needing to go into Grid or use the filter bar at all. So in combination with a recent history of where you have been, it may be possible to get closer to what the OP has in mind.
    RP

  • Issue with populating documents with data connections

    Hi Guys
    I have two issues one we have set up an infopath document for browser enabled.  But when I upload it, it doesnt work in IE.
    Also how do you get the data connections working to the form?
    Thanks

    Hell,
    Refer this thread to open form in browser by force: (just add "?OpenIn=Browser" in form URL at the end)
    http://stackoverflow.com/questions/7361858/infopath-2010-forms-do-not-open-in-the-browser-using-ie8
    >Also how do you get the data connections working to the form?
    If you are using same site collection data connection then it should work without UDCX file but if there is cross site collection data connection then create UDCX for your data connection.
    http://msdn.microsoft.com/en-us/library/office/ms772101%28v=office.14%29.aspx
    If it does not resolve you problem then provide the error detail
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Permissions issue with Word documents & Server?

    My workgroup is running into an error with OS X Server on a Mavericks Mac mini & Word.
    Word Documents stored in the shared folder accessible by the 5 workgroup computers keep saying they're read-only and can't be saved.
    We check over and over, and the documents aren't opened on any other computers.
    Any ideas why this is happening?  We keep eating up more storage space because we need to duplicate and version all our documents.
    I know, I know.  Use Pages.  Trust me, I do, but there are others in this office that still cling to Word because it's familiar.

    Hi JC,
    I've seen this issue before even with Tiger Server 10.4, it is a problem with Microsoft Word and Office, which uses a "safe" place on the servershare .TemporaryItems where it stores the file based on the user local ID which usually is 501 or 502 when a local administrator is present.
    You can find more info and some solutions here:
    https://discussions.apple.com/message/16250977#16250977
    The issue is explained here and still very much alive:
    http://support.apple.com/kb/TA23804?viewlocale=en_US
    And the solution presented here:
    http://word.mvps.org/mac/cantsavetoserver.html
    This will take some work to change local user ids or just create 2,3,4,5 or 6 new local accounts and transfer their data if necessary that will change their UserID's as well.
    Goodluck!
    Jeffrey

  • ITunes 9.0.2.25 Library Issue with Multiple PCs

    I have been using iTunes for years with minimal issues on multiple PCs on the same network. My iTunes library and all of my music resides on a network-attached drive mapped as drive "Z" on two PCs.
    - One PC is running XP Media Edition and is hard-wired to my Ethernet hub
    - The other PC is running Vista and is connected wirelessly to the network
    Once in a while, when my versions of iTunes got out of sync, I'd get a message saying that the library was created with a different version of iTunes. I'd simply update the PC that had the older version and everything was fine.
    Now, with a recent update to version 9.0.2.25, only the hard-wired PC (the XP machine) will read the library. Both machines have 9.0.2.25 installed, but when I try to use the laptop it says that it appears as if the library is corrupt, renames the library "(Damaged)" and creates a new, empty library. I was able to re-import nearly all of my music, though some purchases are gone.
    Has Apple now somehow eliminated the ability for multiple PCs to access the same library? I find it suspicious that the only machine that can access the library is the one with which I imported the songs to begin with.
    Any advice would be appreciated.

    I don't try to open iTunes on both machines. If memory serves, I think that causes problems.
    Last night I checked for updates and it offered a new version - 9.0.3. I upgraded the laptop (the one that I'm having problems with) and it fixed it. The other machine is still 9.0.2.25 but it doesn't seem to bother it.
    All fixed!
    Thanks!
    Jim

  • Issue with Community Documents..Please Help

    I am deploying 5.0.1 and I have community documents on some of the communities. However in the gadget you cannot see the folder structure, you just see the documents. Anyway to view the folder structure so that you can actually see the folders and drill down to the documents???

    Hmmm, we had the same question of why the Manage Docs button would be available at some times and some times not and someone at Plumtree I believe gave a different answer.
    If you have the Project Selector portlet on the same page as the Comm Docs portlet, the Manage Docs button is removed....I guess this is because the developers figured you could manage the comm docs by using the Project Selector portlet, to do so, you choose the project that has the docs you want to manage in it from the portlet and goto the Documents area of the project. Make sense....I don't know if I explained that plainly or not. When you have the Project Selector portlet chosen, all docs from all the projects showing in the Project Selector portlet will show in the Comm Docs portlet (if after you select the project within the portlet and it is listed in the portlet and the checkbox next to the project name is checked).
    Although, this theory has its little "quirks". One such quirk that I have run across is that this all seems to work when you initially start to add these portlets to a page. Once on the page, the Manage Docs button can appear/re-appear depending on what projects are selected. For example, say I am in the Content Admin Community on the Content Mgmt page, and the Project Selector and Comm Docs portlet are both on the page, if I had ONLY the Content Admin project selected, then the Manage Docs button will appear. IF, I have that project and others selected, then the button does not appear.
    If interested in any other "quirks" I have run across, just give me a call at 480-557-1215.
    Theresa

  • Issue with the Document Viewer for Some Users

    Hi, I have archivelink setup in our system. Users are able to view the documents using this link. But issue is that one user is unable to view the documents while others can view the documents.  The roles for both users are same.
    Searched the forums but found nothing. Acrobat Reader version is 9.

    hi can you help me, im a desktop support engineer we got 2 users who have the exact same problem as in the call ive made here?
    nothing being displayed in Document Viewer for 720 gui user via Webportal
    any ideas, if they log onto other windows 7 machines still dont work

  • Library issue with flash catalyst

    I've taken the suggestion of of a work around the fact that in Flash Catlyst you can't export libraries by making root files read and write with this terminal command:
    So this is todo with it wanting to write a file in / ( or c:\ ) for some reason. Probably should be using $TEMP (%TEMP)
    anyway to fix on a mac OSX and decrease your security from any virus / stupid typo on a command line..
    sudo chmod a+rwx /
    or for those octal fan
    sudo chmod 0777 /
    How can I get back to the default state? I'm running Lion.

    Hi Bear,
    Thanks for the email i have tried to do the whole clipping thing i can see how it would work in certain scenarios but when i did it, it took away all my interactions etc.
    I did the toggle thing which did work for the images but not the writing. 
    My artboard is 900 wide so i moved my wrting all the way over to 1200 on the right to get it off the screen.  my main problem is now when i put into dreamweaver html and play looks fine, but when i upload to internet i have all that extra room on the right and a little on the bottom.
    One thing that confuses me is that i have images on the left and they dont show up at all the artboard only extends to the right and a little on the bottom out of the artboard specified size.
    help kathy

Maybe you are looking for

  • Link to User's MySite on Lync 2013 Contact Card does not work

    Hello, we're running a sharepoint 2010 environment with a configured user profile service application and a mysite host. we're also running lync 2010 clients but are planning to upgrade to lync 2013. the it guys (including me) have already installed

  • Do AI native files in Indesign cause large PDF exports?

    Hello all: I am a novice at InDesign as well as exporting to PDF, but I have a 45 page document I want to save for web viewing only.... it's my design portfolio.  There are a lot of AI graphics I have placed in this document (about 20 AI files) and w

  • No Multi-tasking No motion sensor games this is no...

    I bougt this mobile 3 month ago of 6620 rs only . . . In this range android way is better . . . There is no multi tasking there is a motion sensor but no games available for it NOKIA ASHA 311 PROBLEMS: .No options when sending a message .No groups in

  • Why whenever I turn on an external HD, iPhoto starts up?

    I have an MB Pro, 2.33, with a number of FW and SATA drives. I'm wondering why suddenly when I turn on an external HD, iPhoto starts up? thanks, elmer

  • Convert CD iso to DVD

    Hi, I am wanting to convert a bootable CD iso to create a bootable DVD.  Can I easily do this? Thanks