Problem sharing pdf insertions from PC Windows 7 to mac

Hello, I've been working on editing a document a client is sharing with me via dropbox. She uses a Mac; I have a PC with Windows 7. I've entered a number of edits--insertions, comments, deletions. Now, when she opens the dropbox document, the locations where the insertions are are still marked in blue, but the inserted text has disappeared. The yellow comments are still viewable. Now when I open the document, I can't see my own insertions any more either. (I have a backup, thank goodness.) Any idea how to get a file to her such that she can see the inserted text? (And to keep inserted text from disappearing if I open the document after she has?)

If she's using "Preview" on the Mac to open it. It will most likely be "broken" when saving after edits. Preview does that with forms and fillable PDFs.

Similar Messages

  • How to add entire new row at the top of table in pdf report from c# windows forms using iTextSharp

    Hi for past 3 days i was thinking and breaking my head on how to add entire new at top table created in pdf report from c# windows forms with iTextSharp.
    First: I was able to create/export sql server data in form of table in pdf report from c# windows forms. Given below is the code in c#.
    using System;
    using System.Collections.Generic;
    using System.Configuration;
    using System.Text;
    using System.Data;
    using System.IO;
    using System.Data.SqlClient;
    using System.Windows.Forms;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    namespace DRRS_CSharp
    public partial class frmPDFTechnician : Form
    public frmPDFTechnician()
    InitializeComponent();
    private void btnExport_Click(object sender, EventArgs e)
    Document doc = new Document(PageSize.A4.Rotate());
    var writer= PdfWriter.GetInstance(doc, new FileStream("Technician22.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(7);
    table.TotalWidth=585f;
    table.LockedWidth = true;
    PdfPTable inner = new PdfPTable(1);
    inner.WidthPercentage = 115;
    PdfPCell celt=new PdfPCell(new Phrase(new Paragraph("Institute/Hospital:AIIMS,NEW DELHI",FontFactory.GetFont("Arial",14,iTextSharp.text.Font.BOLD,BaseColor.BLACK))));
    inner.AddCell(celt);
    Paragraph para = new Paragraph("DCS Clinical Report-Technician wise", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK));
    para.Alignment = iTextSharp.text.Element.TITLE;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(95f, 95f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn=new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select t.technician_id,td.Technician_first_name,td.Technician_middle_name,td.Technician_last_name,t.technician_dob,t.technician_sex,td.technician_type from Techniciandetail td,Technician t where td.technician_id=t.technician_id and td.status=1", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("ID");
    table.AddCell("First Name");
    table.AddCell("Middle Name");
    table.AddCell("Last Name");
    table.AddCell("DOB" );
    table.AddCell("Gender");
    table.AddCell("Designation");
    while (dr.Read())
    table.AddCell(dr[0].ToString());
    table.AddCell(dr[1].ToString());
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString());
    table.AddCell(dr[4].ToString());
    table.AddCell(dr[5].ToString());
    table.AddCell(dr[6].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(inner);
    doc.Add(table);
    doc.Close();
    The code executes well with no problem and get all datas from tables into table in PDF report from c# windows forms.
    But here is my problem how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    As the problem i am facing is my title or Header(DCS Clinical Report-Technician wise) is at top of my image named:logo5.png and not coming to it's center position of my image.
    Second the problem i am facing is how to add new entire row to top of existing table in pdf report from c# windows form using iTextSharp?.
    given in below is the row and it's data . So how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    as you can see how i create my columns in table in pdf report and populate it with sql server data. Given the code below:
    Document doc = new Document(PageSize.A4.Rotate());
    var writer= PdfWriter.GetInstance(doc, new FileStream("Technician22.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(7);
    table.TotalWidth=585f;
    table.LockedWidth = true;
    Paragraph para = new Paragraph("DCS Clinical Report-Technician wise", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK));
    para.Alignment = iTextSharp.text.Element.TITLE;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(95f, 95f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn=new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select t.technician_id,td.Technician_first_name,td.Technician_middle_name,td.Technician_last_name,t.technician_dob,t.technician_sex,td.technician_type from Techniciandetail td,Technician t where td.technician_id=t.technician_id and td.status=1", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("ID");
    table.AddCell("First Name");
    table.AddCell("Middle Name");
    table.AddCell("Last Name");
    table.AddCell("DOB" );
    table.AddCell("Gender");
    table.AddCell("Designation");
    while (dr.Read())
    table.AddCell(dr[0].ToString());
    table.AddCell(dr[1].ToString());
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString());
    table.AddCell(dr[4].ToString());
    table.AddCell(dr[5].ToString());
    table.AddCell(dr[6].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(table);
    doc.Close();
    So my question is how to make my column headers in bold?
    So these are my questions.
    1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?
    I know that i have to do some modifications to my code but i dont know how to do it. Can anyone help me please.
    Any help or guidance in solving this problem would be greatly appreciated.
    vishal

    Hi,
    >>1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?<<
    I’m sorry for the issue that you are hitting now.
    This itextsharp is third party control, for this issue, I recommended to consult the control provider directly, I think they can give more precise troubleshooting.
    http://sourceforge.net/projects/itextsharp/
    Thanks for your understanding.
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to copy a pdf file from a windows PC to an iPad?

    how to copy a pdf file from a windows PC to an iPad?

    You can use iTunes to sync the file to the iPad using File Sharing.
    About File Sharing
    http://support.apple.com/kb/ht4094

  • Problems opening .pdf files created in Windows in MAC

    My clients that are using Macs are having problems opening password protected PDFs that I created in Windows. Any suggestions?

    Are your clients using Adobe Reader on Mac, or the built-in Mac OS Preview?  Preview does NOT support the full PDF standard :(.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Mon, 26 Sep 2011 15:04:18 -0700
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Problems opening .pdf files created in Windows in MAC
    Problems opening .pdf files created in Windows in MAC
    created by Hollcy<http://forums.adobe.com/people/Hollcy> in PDF Language and Specifications - View the full discussion<http://forums.adobe.com/message/3939175#3939175

  • Adobe Acrobat Pro XI problems printing PDFs created from AutoCAD.

    Just installed Adobe Acrobat Pro XI and am having problems printing PDFs created from AutoCAD.  Printing other PDF created by MS Word works well.  Had a similar problem in an earlier version of Pro.  The fix I figure out then was to print the PDF file as another PDF.  Using the second PDF to print to a plotter typically worked.  It does not work for Adoabe Acrobat Pro XI.

    Hi presottom
    Please refer ; http://helpx.adobe.com/acrobat/kb/troubleshoot-pdf-printing-acrobat-reader.html
    or
    Let us know more details about it to help you better ?
    What is the OS ?
    is there any error message , etc .. ?

  • Problem opening pdf file from an app built by Flash Builder 4.5

    problem opening pdf file from an app built by Flash Builder 4.5

    The iPad and iPhone have NEVER supported Flash and never will. In fact, Adobe is no longer distributing Flash builds to mobile devices.
    Time to move on...

  • How do I change my iPod Touch from a Windows to a Mac?

    I recently bought a Mac, to replace my PC.  I have a 2nd generation iPod running the latest (4.3.3 I think).  I have transfered all my files from my Windows to my Mac through USB, and all the files are also sitting on my Mac.  However, when I insert my iPod to the Mac, it can't sync apps without erasing the data on my iPod.  How do I do it without erasing it?  I have it backed up on my Mac and PC.  I also have a brother with a 4th generation iPod.  I assume the soliution would be the same?  THanks!!

    Sorry didn't mean to make this the correct answer
    What do you mean?  This is what I get:
    "Are you sure you want to sync apps? All existing apps and their data on the iPod “Connor’s iPod Touch” will be replaced with apps from this iTunes library."

  • I shifted from a windows to a mac.. I want to add songs to my ipod tpuch 4th gen.. but if i try to sync with itunes it says my songs will be replaced by the new songs.. Is there any way that i can have my previous data safe??

    i shifted from a windows to a mac.. I want to add songs to my ipod tpuch 4th gen.. but if i try to sync with itunes it says my songs will be replaced by the new songs.. Is there any way that i can have my previous data safe??

    Your iPod can only be synced with one computer at a time.  If you try to sync it with a new computer/iTunes library, it will replace the contents of the iPod with whatever is in the new library. You should probably disable the autosync functionality first by going to Edit -> Preferences, clicking the Devices tab, and enabling the prevent iPods,iPhones, and iPads from automatically syncing option.
    Before doing anything else,  authorize the new computer with your iTunes Account.  In iTunes, choose Store -> Authorize This Computer and enter in the correct credentials. Either copy a backup file from your old computer to your new one or create a new backup of your iPod in iTunes before letting it sync.
    Then right->click on your iPod Touch from under the Devices section in the left hand pane of iTunes and choose Backup. You might also want to take a look at this article to see what it all included in the backup.
    iOS: How to back up
    Now onto synced content such as music, videos, photos, etc.  For iTunes purchases you can copy them back into iTunes by choosing File -> Transfer Purchases.  For all other nonpurchased iTunes content, see this excellent user tip from another forum member turingtest2 outlining the different methods and software available to help you copy content from your iPod back to your PC and into iTunes.
    Recovering your iTunes library from your iPod or iOS device
    Once the backup has been made and all other synced content such as music, videos, and photos are back in your iTunes library, restore your iPod from that backup you made earlier.  Here is more on backing up and restoring your iPod.
    iTunes: Backing up, updating, and restoring iOS software
    If you do happen to lose any purchased content, you can always redownload it from the iTunes Store again at no cost via iCloud.  See this article for information.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    B-rock

  • How do I enable the "fn  + enter" key to work as an "insert" function for windows on my mac laptop?

    how do I enable the "fn  + enter" key to work as an "insert" function for windows on my mac laptop?

    enable /disable function within the Bootcamp control panel within Windows Vista or 7

  • I own Windows Photoshop CS and I am now working on a Mac can I upgrade from CS Windows  to CS6 Mac? or do I have to purchase the full version?

    I own Windows Photoshop CS and I am now working on a Mac can I upgrade from CS Windows  to CS6 Mac? or do I have to purchase the full version?

    BleuStarz wrote:
    So, just so I have this straight; would CS upgrade to CS5 or did you mean I would have to purchase CS5 to upgrade to CS6? And If so, does CS upgrade any further? i.e. CS 3 or 4? Thanks for your reply --
    CS will not upgrade to CS5. Historically, only CS2-CS4 ever qualified for upgrade to CS5. Those versions are all long superseded and no longer available from Adobe.
    Adobe currently only sells CS6 (for outright purchase) and the Cloud (by subscription only). Cloud members have access to both CS6 and CC.
    The only way to upgrade to CS6 is from CS5. Adobe no longer sells CS5. Unless you purchase the full version of CS5 from elsewhere (I don't see any point in that in this case) you would not be able to upgrade to CS6. You'd have to buy the full version of CS6. Or subscribe to one of the Cloud plans. PS+LR is an excellent deal if you use those products.

  • What is the best way to use wi-fi to transfer pdf files from an ipad to a mac mini, not using an internet, just wi-fi.

    What is the best way to use wi-fi to transfer pdf files from an ipad to a mac mini, not using an internet, just wi-fi?

    If the Mac use Lion (10.7) you can use Airdrop for that.
    With Mac's not using Lion you may set up a computer to computer (ad hoc) connection.
    How to --> http://docs.info.apple.com/article.html?path=Mac/10.6/en/8339.html
    Lupunus

  • Problem downloading pdf's from Adobe site

    Hello:
    First of all, thank you very much for your time and help in troubleshooting this issue. The issue is as follows: I downloaded Acrobat Reader 9 and it is successfully installed in my applications folder on my Mac. I am trying to download some pdf's from Adobe's Visual Design curriculum. Every time I attempt to click on these links, I get a redirect to install Acrobat Reader 9. It is already installed. I should be able to directly view the pdf but I keep getting this window to download Acrobat 9. I am not sure why I cannot access these documents. I did successfully read one but I haven't been able to read the other five that I tried. If anyone has any ideas or suggestions on how I can troubleshoot this issue, I would greatly appreciate it. Thanks for your support.

    I also had problems with Adobe Reader 933 on my Mac. I found this info (below).
    I deleted and re-installed the Adobe PDF Viewer plugin several
    times...eventually something connected. Reader now works, even with the Adobe
    plugin installed.
    I don't know why or how, but that's OK with me.
    ...hope this helps,
    Don
    Configuring Acrobat to display PDF files in Safari
    Drag the Acrobat application folder from the CD (or disk image) to the
    Applications folder to install Acrobat. The first time you start Acrobat you
    will be prompted to accept the end user licence agreement (EULA) and register
    Acrobat. After you accept the EULA, Acrobat runs a Self-healing procedure which
    checks for any Acrobat components that need to be installed in other
    applications. The self-healing process installs the Adobe PDFViewer plug-in
    file. The AdobePDFViewer.plugin file is the main file used by Acrobat to view
    PDF files in the Safari browser on Mac OS X is the Adobe PDFViewer.plugin; this
    file is installed in the Library/Internet Plug-Ins folder.
    If you updated or reinstalled your copy of Safari in order to view PDF files,
    then do the following:
         1. Completely remove the old version of Safari.
         2. Install the latest version of Safari.
         3. Remove the Adobe PDFViewer.plugin from the Library/Internet Plug-Ins folder.
         4. In Acrobat run Help > Detect And Repair and choose Adobe PDFViewer.
    The first time you start Acrobat or Adobe Reader 8 on Mac OS X, it will
    automatically install itself as the default PDF viewer for Safari. In order to
    turn this off, start Acrobat or Adobe Reader, go to Preferences > Internet and
    uncheck the "Display PDF in Browser" option. This will cause the PDF to display
    inside the Safari window using its native PDF viewer.
    Known issues
    The following issues have been noted:
    When you upgrade from Adobe Reader or Acrobat from 7 to 8 on a Mactel
    machine, PDF files no longer show in the Safari window. Instead a large Acrobat
    or Adobe Reader icon displays in the middle of the Safari window. This is caused
    by running Safari under Rosetta; Acrobat and Adobe Reader 8 will not show PDF
    files in Safari run under Rosetta, whereas Acrobat and Adobe Reader 7 shows PDFs
    in Safari only under Rosetta. To work around this, you have to turn off Rosetta
    for Safari, or start Acrobat or Acrobat Reader and go to Preferences > Internet
    and turn off Display PDF In Browser; PDF files will be viewed in Safari using
    the Mac OS X native PDF viewing engine after this.
    When you upgrade Adobe Reader or Acrobat from 7 to 8, PDF files no longer
    show in other non-Safari browser windows. Instead a large Acrobat or Reader icon
    displays in the middle of the browser window. This is because the PDF viewing is
    not supported for any WebKit-based applications other than Safari. Work around
    this by starting Acrobat or Adobe Reader, and choosing Preferences > Internet
    and turning off Display PDF In Browser.
    Self-healing
    If the AdobePDFViewer files are deleted, then they will be self-healed after you
    start Acrobat again after the files were deleted. You can also fix Safari
    manually by choosing Help > Repair Acrobat Installation.

  • Custom RH9 WebHelp skin: Problem opening PDF file from custom button

    Hi, I've been troubleshooting and checking forums trying to figure out how to get a PDF file to open from a custom button on my WebHelp skin. It worked for me once upon a time, but I changed something in the document and tried to upload the new version and it has errored out ever since.
    I want to have the ability to open the PDF in a new window from the custom button (called 'Printable PDF' on my skin), so I am using the following custom JavaScript in the 'Click On' field of the the custom button's components: window.open('print_test.pdf','printWindow','menubar=0,resizable=0,width=900,height=500,scr ollbars=1');  I know the script is good because I have the same script for the Support custom button and it works great. The only difference between those scripts is the Support script calls an .html file instead of a PDF and the window names says 'supportWindow' instead of 'printWindow'.
    I've tried deleting and recreating the custom button, changing the JavaScript with a developer's help, generating the help on another machine thinking it was a glitch with my browser (using IE8) or RoboHelp license, and combing the help files numerous times. I've also ensured that the PDF file is stored in the skin and project folders along with the other project files/folders. I've used previous versions of RoboHelp and had no problems attaching a Word document and PDF, so I'm wondering if this is a bug in RH9?? Especially since it worked for me initially. Any assistance and/or fresh ideas are welcomed! Thank you!

    Hello again
    Happy I was able to help.
    MOTW is only present and affects things when you are running content off your local C drive. It's value is in preventing that Yellow Information Bar and all that from appearing when you are using IE. Once you publish content to a server and access it that way you are in a different security zone and MOTW has no influence either way. So there would be no adantage to enabling it before publishing to a server. The only reason you might want to consider enabling it would be if you were copying the WebHelp to everyone's hard drive and having them run it from their hard drives.
    Make sense?
    Hope so... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Problem importing PDF file from Word to Pages on IPad 2

    I am trying to import a PDF file from Word 2007 to Pages on my iPad 2 using the file sharing function in iTunes.
    I am able to import it, however when Pages saves it, I get the following message:
    "Pages doesn't support some od the original document.
    Objects in headers, footers, shapes, text boxes and table cells were removed.
    Merged table cells were unmerged.
    Objects were removed from table cells."
    The document is a PDF form which needs to be filled in. The document was downloaded from a website and saved as a Word document where I have been able to enter in information and print it.
    I would like to be able to fill in the form and print it from Pages as there are other documents that accompany this PDF file. (these are plain text Word documents which I have succesfully imported and can edit and print.)
    Is there any way for me to achieve this?
    Cheers,
    Jules

    I don't think Pages can do this - you'll need a dedicated iPad PDF program that can fill in and edit PDF files. And even then, reports are that different readers work or dont' work with different PDF's... I use Goodreader, which can do some PDF filling in, but you might want to check the app store for others.

  • Problem printing pdfs exported from IDCS3 to hp color laserjet 2550L

    Since upgradingn to IDCS3, whenever I print a pdf exported from ID to my hp color laserjet 2550L, the graphics print with a red overlay and other colors change as well (black type prints brown, blue prints maroon). If I print the file to a .ps file, then distill it, I don't have the problem. If possible, I prefer to export because it's quicker. Is there a fix to this?
    Thanks in advance!

    Check the HP site for a newer driver for your printer.

Maybe you are looking for

  • What is the limit size for a datafile

    Hello, I want to create a tablespace that is going to be 500 gigs large. I want to create two datafiles for this tablespace. I am thinking 250 gigs each. What is the max size a datafile can be? Can I have 2 datafiles (250+250=500)? Thanks.

  • Itunes 9.2 wont recognize iphone4

    i have been battling itunes since I bought the iphone4 a few days ago. First, as soon as it noticed the new iphone, it requested i upgraded to 9.2, which I did. The iphone4 then disappeared - not recognized by itunes, not detected in My Computer. I f

  • Office 365 Settings

    I have just received my Sony Xperia Z  Tablet. I have been trying for hours to get it to sync with my Office 365 account but can not get it to sync. I have lauched the email accounts on my Sony Created a new "Exchange Account" Put in my Email address

  • Question on Scatter Plot, among many

    I'm plotting time vs a voltage level with a scatter chart as the time the data starts with varies. The problem is the chart always start at 0 so the actual plot is **** on the right side of the plot squish up against the border. I can't see any way t

  • AD groups renamed - not resolving correctly in SP 2010

    HI All, a colleague changed a some AD groups and now they are not displayed correctly in SP 2010, rather picks up both names. How do I solve this please?