Is there a way to edit a cell?  I need to put some spacing between the check boxes...  I already have the whole form done 60 plus text cells, except 5 check box cells.  Is there a way to edit existing text?

Hi,
I am new to the forum, because I usually don't run into stupid format issues.  I create most of my forms in word or excel then import them into PDF.  I need help with figuring out if I can edit some text without having to redo the entire document.  5 cells are off... really be steamed if I have to do it all over.

Acrobat can make limited edits to the text on a page, but the control you have is limited and may not be sufficient for what you need to do. To access the text editing tool in Acrobat 11, select: Tools > Content Editing > Edit Text & Images
and then click where you want to edit the text, and see what happens when you attempt to make the changes you want.

Similar Messages

  • On the input :   error message if there is no such id in the database to edit?  and out put comments messed up the whole

    The first page (CoGetEditForm.cfm lets you input the co id
    then it get to the next page for you to edit (CoEditForm.cfm). then
    it lets take action and UPDATEs (CoEditAction.cfm) finally, it goes
    to the colist.cfm to query results and outputs it to html format.
    <td>#comm#</td>
    Question is that:
    1. where and what do I do to have an error message if there
    is no such id in the database to edit?
    2. the out put comments messed up the whole query results
    when I added it to the html out put results. What can I do to clean
    this up and where do I put the code?
    <!-------------------------edit
    page----------------------------->
    <html>
    <head>
    <title>Main Title</title>
    <link rel="stylesheet" href="styles.css">
    </head>
    <body>
    <h1>Edit a Co based on co_ID</h1>
    <table>
    <cfform action="CO_EditForm.cfm" method="POST">
    <tr>
    <td>Co_ID</td>
    <td>
    <cfinput type="Text"
    name="Co_ID"
    message="Please enter the Co_ID"
    validate="integer"
    required="Yes"
    size="22"
    maxlength="20">
    </td>
    </tr>
    <tr>
    <td> </td>
    <td>
    <input type="submit" value="GetCo">
    </td>
    </tr>
    </cfform>
    </table>
    </body>
    </html>
    <!------------------------------------------CO_EditForm.cfm
    page------------------------------------->
    <cfquery name="GetCo"
    datasource="#Request.MainDSN#">
    SELECT
    COName,
    ADD,
    City,
    st,
    zip,
    comm
    FROM
    CO
    WHERE
    Co_ID = #Val(Co_ID)#
    </cfquery>
    <html>
    <head>
    <title>Main Title</title>
    <link rel="stylesheet" href="styles.css">
    </head>
    <body>
    <h1>Edit a CO</h1>
    <table>
    <cfform action="COEditAction.cfm" method="POST">
    <cfoutput>
    <input type="hidden" name="COID" value="#Val(COID)#">
    </cfoutput>
    <tr>
    <td>CO Name</td>
    <td>
    <cfinput type="Text"
    name="COName"
    value="#GetCO.COName#"
    message="Please enter a name for this CO."
    required="Yes"
    size="40"
    maxlength="40">
    </td>
    </tr>
    <tr>
    <td>ADD</td>
    <td>
    <cfinput type="Text"
    name="ADD"
    value="#GetCO.ADD#"
    message="Please enter this new CO's ADD."
    required="Yes"
    size="32"
    maxlength="30">
    </td>
    </tr>
    <tr>
    <td>City</td>
    <td>
    <cfinput type="Text"
    name="City"
    value="#GetCO.City#"
    message="Please enter a city."
    required="Yes"
    size="22"
    maxlength="20">
    </td>
    </tr>
    <tr>
    <td>st</td>
    <td>
    <cfinput type="Text"
    name="st"
    value="#GetCO.st#"
    message="Please enter a st."
    required="Yes"
    size="3"
    maxlength="2">
    </td>
    </tr>
    <tr>
    <td>ZIP Code</td>
    <td>
    <cfinput type="Text"
    name="zip"
    value="#GetCO.zip#"
    message="Please enter a valid ZIP Code."
    validate="zip"
    required="Yes"
    size="11"
    maxlength="10">
    </td>
    </tr>
    <tr>
    <td>comm</td>
    <td>
    <textarea cols="40" rows="5"
    name="comm"><cfoutput>#GetCO.comm#</cfoutput></textarea>
    </td>
    </tr>
    <tr>
    <td> </td>
    <td>
    <input type="submit" value="Update Database">
    </td>
    </tr>
    </cfform>
    </table>
    </body>
    </html>
    <cfquery name="UpdateCO"
    datasource="#Request.MainDSN#">
    UPDATE CO
    SET
    COName = '#Trim(Form.COName)#',
    ADD = '#Trim(Form.ADD)#',
    City = '#Trim(Form.City)#',
    st = '#Trim(Form.st)#',
    zip = '#Trim(Form.zip)#',
    comm =
    <cfif Len(Trim(Form.comm)) GT 0>
    '#Trim(Form.comm)#'
    <cfelse>
    NULL
    </cfif>
    WHERE
    COID = #Val(Form.COID)#
    </cfquery>
    <cflocation url="COList.cfm">
    <cfquery name="GetCo"
    datasource="#Request.MainDSN#">
    SELECT
    coID,
    coName,
    ADD,
    City,
    st,
    zip,
    comm
    FROM
    co
    ORDER BY
    coName ASC
    </cfquery>
    <html>
    <head>
    <title>title getco</title>
    <link rel="stylesheet" href="styles.css">
    </head>
    <body>
    <h1>y List</h1>
    <table>
    <tr>
    <td><b>ID</b></td>
    <td><b>Name</b></td>
    <td><b>ADD</b></td>
    <td><b>City</b></td>
    <td><b>st</b></td>
    <td><b>ZIP Code</b></td>
    <td><b>comm</b></td>
    <td> </td>
    </tr>
    <cfoutput query="GetCompanies">
    <tr bgcolor="<cfif currentrow mod
    2>GHOSTWHITE<cfelse>WHITE</cfif>">
    <td>#coID#</td>
    <td>#coName#</td>
    <td>#ADD#</td>
    <td>#City#</td>
    <td>#st#</td>
    <td>#zip#</td>
    <td>#comm#</td>
    <td>
    <a
    href="EmployeeList.cfm?coID=#coID#">Employees</a>
    <a href="coAddForm.cfm">Add</a>
    <a href="coEditForm.cfm?coID=#coID#">Edit</a>
    <a
    href="coDeleteForm.cfm?coID=#coID#">Delete</a>
    </td>
    </tr>
    </cfoutput>
    </table>
    </body>
    </html>

    After your SQL SELECT on CO_EditForm.cfm, you need a
    <CFIF> that checks to see if any records were retrieved. See
    below.

  • Editable form text editing messing up the whole form

    Hi All,
    I've created a fillable form in Acrobat X but at the end, I realized that I left a spelling mistake. Now when I try to fix this mistake using Edit Document Text, it changes the orientation and alignment of other fields around it causing messing up the whole form. Can anyone advise any solution. I can provide the form to you to have a look or correct it for me if someone can kindly. Please advise as this is urgent and this form needs to be delivered ASAP. Please see the screenshot below. I need to correct the spelling of Blocked which is written as BOCKED without changing other formatting of the document. Thanks in anticipation!

    Hi @Gilad,
    Thanks for the suggestion but this file was originally created in Word and after conversion to PDF, I've made a lot of radio buttons, check-boxes in this file which I certainly don't want to redo. Now if I convert this page back to Word and edit this single word, then it means that I would have to create all the radio buttons, check boxes etc again which is time consuming. Any help if I can just correct the spelling of this single word without changing the formatting of the fields besides it?

  • Hi, I'm a bit low on memory and I can't update the iOS. I need to move some photos off the iPad but I don't want to transfer them to a pc, I'd prefer to transfer them to iCloud and leave them there.  Is that possible?

    Hi, I'm a bit low on memory and I can't update the iOS. I need to move some photos off the iPad but I don't want to transfer them to a pc, I'd prefer to transfer them to iCloud and leave them there.  Is that possible?

    Yes, you could, because in this case you would have something like a backup in the cloud. BTW, personally I also like Flickr. Flickr offers you 1 TB (1000 GB) of free storage and automatic upload for photos since iOS 7 (it is a very attractive offer, at least for me)

  • I shared my project and saved it as .mov but when i reopen the fcp the project is one big clip, and now i cant re-edit the video, cant see all the clips, just one big clip,,,pls help, i need to make some changes to the project..thanx

    I shared my project and saved it as .mov but when i reopen the fcp the project is one big clip, and now i cant re-edit the video, cant see all the clips, text's, effects, etc..... just one big clip,,,pls help, i need to make some changes to the project..thanx

    Hi Stephen, thanx...
    Yes, we are talking about FCP X...this is the thing:
    I worked on a project a few days ago and went to share - export movie.
    Today, i opened the FCP again, to make some changes, and when i enter to the project, it shows me as one big clip.....i dont see it says compound clip....and i tried anyways pressing break appart clips...but nothing....could it be that i made it compound before exporting it..? if so how can i recover the un-compound version >?
    I tried to import the saved .mov file, but it opens the same....as one long clip...
    Pls help...thanx.

  • Just upgraded acrobat X Pro to XI Pro (11.0.06) and have LiveCycle ES4 but i can't move between the two programs to edit a form anymore.  What happened?

    For example, prior to the upgrade, I could start a form in Acrobat, finalize it in LC, and go back later and edit the text if necessary  in Acrobat.  Now I get at must be edited in LC, no other option.
    Help.  I have so many forms done this way.  It looks like I'm going to have to redo everything.  There are features I like in Acrobat and features I like in LC. 

    Ask in Adobe LiveCycle or Acrobat
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Is it okay to fill the whole thing up or will it slow it down? Should there be empty space?

    I could easily fill up mu entire Iphone but should I? will it effect the way it runs or the speed? Should I try to leave some empty space?

    Is it possible to have your whole family on one apple id or is it better to have each person have there own?
    Yes, it is possible. 1 apple ID can be associated with up to 10 devices.
    If each has their own does each id have to buy their own music and apps?
    Yes, all purchases are non-transferable.
    How does find my iphone work with one apple id or two?
    Every device associated with one apple ID through Find my iPhone is tied to that Apple ID; Find my iPhone will work in the same way with up to ten devices associated with one apple ID. You cannot enable Find my iPhone for one device across two apple IDs
    I am going to be going off to college soon should I make an itunes id for my self and how will I get all the music from the old id?
    If you have authorized a computer with the old apple ID, you can transfer old media purchased through the old to other devices via iTunes. This doesn't mean the media purchases through the old apple ID it transferred to the new account. If you plan to make future purchases and don't wish to share them with others, make your own apple ID.

  • On occasion the space bar will "click", but there will be nospace between the two words

    At times and only occasionally when I press the space bar it does not perform the spacing between the two words.

    As you probably know, the key is 'seen' by the computer when the two contacts touch. In the case of a key not working or working intermittently, there could be dust, dirt or cookie crumbs between the contacts. With the computer turned off, unplugged and the battery removed, carefully flip the computer upside down and give it a shake and be amazed at the amount of stuff that comes out of the keyboard. Try using a small vacuum cleaner on the keys. Try it again. If that did not fix the problem, you may need to get the keyboard replaced. As a temporary fix, consider using a USB external keyboard until you get the built-in one replaced.

  • Looking for some help with package design (box)

    I'm pretty good with Photoshop, but Illustrator is fairly new to me. I'm helping a friend do his product packages and I already have all of the graphics, I'm just having trouble figuring out how to put it all together in Illustrator.
    We already have the box dimensions and just need to get a vector file that the factory can use to print. My main question is how do I create the actual layout of the box to work on? In the pdf that was sent to us I can pull out the box, but it just sits on a white background.
    My next question is how do I fill the layout with a pattern. I have a carbon fiber look pattern in Photoshop, but I'm having trouble figuring out how to use it to fill in Illustrator.
    Thanks ahead of time for any help.

    Jem,
    Pardon me if I sound rude by suggesting that before you launch into an expensive printing job (which could result in disastrous consequences if you don't do it right) that you actually learn how to use the program first. You may also want to learn something about the offset printing process and how to prepare print jobs.
    Even many Illustrator novices know that there is no such thing as a background in Illustrator, in the sense that there is in Photoshop. You will need to PLACE your Photoshop background as a high resolution CMYK tiff in the provided template. That's the answer to your second question. I don't really understand your first question. Maybe someone else will. Are you simply asking, "where do I begin?" If so, then you REALLY REALLY need to read a book on how to use Illustrator. The Adobe Illustrator Classroom in a Book might be the place to start.
    "I'm pretty good with CPR. I'm helping a friend do his vasectomy and I already have all the equipment (scalpels, thread, etc.) I'm just having trouble figuring out where to cut."

  • I created an iDVD through iMovie on one computer in my home and want to edit the slideshow and delete some videos on the iDVD.  However, I want to work on my own iMac.  Is there a way to "share" the original project through the drop box on my computer?

    I created an iDVD through iMovie on one computer in my home and want to edit the slideshow and delete some videos on the iDVD.  However, I want to work on my own iMac.  Is there a way to "share" the original project through the drop box on my computer?

    Sir Churchill, I tried deleting one of the playlists from my computer (Playlist 130).  The next day I checked my wife's computer and noticed that Playlist 130 was now missing from her computer as well.  Is there a way that I can delete a playlist from my computer without it disappearing from hers as well?

  • I have created a form in InDesign, exported to a pdf, created an editable form and saved.  When I open the form and make changes and save, the reopen the changes are there.  If try to email this form as an attachment after editing, the attachment is alway

    I have created a form in InDesign, exported to a pdf, then created an editable form and saved.  When I open the form and make changes and save, then reopen the changes are there.  If try to email this form as an attachment after editing, the attachment is always minus the edits.   ????

    Hi chuck,
    If you ave created the form and then filling it yourself and saving the form, the filled data should be there when you reopen the same form.
    Can you please send the form to me at [email protected]  so that I can have a look.
    Regards,
    Rave

  • How do I save an edited photo to a usb I export them to desk top but the whole file is exported ther

    How do I save an edited photo to a usb New to LR I have exported some to desktop but I keep getting the whole catalogue there as well

    Exporting will create a new file for every Image you have selected.  It will not overwrite any files.
    Your workflow counters much of the engineering and design that went into Aperture.  Here is a very short guide to getting started with Aperture.
    Fwiw, the Aperture Library is a file system.  The Library is a Finder package.  You can see the contents of the package by right-clicking the Library (in Finder) and selecting "Show package contents".  Additionally, for advanced users, Aperture includes features for manually managing the files you import into the Library (they can be located on any drive directly connected to your machine).

  • For the new iPhone 5s - is there not an option anymore to edit imessages without deleting the whole stream?  There are some things I need to keep within a stream and some not necessary, and it looks as like no editing within a conversation?

    For the new iPhone 5s - is there not an option anymore to edit imessages without deleting the whole stream?  There are some things I need to keep within a stream and some not necessary, and it looks as like no editing within a conversation?

    Now I also know about pulling the message to the left to see the time stamp.  Good to know, although I preferred it being right where I could see it without having to do a swipe or keystroke. 

  • Is there a difference between the nano 5th generation and the nano 5th generation red special edition?

    is there a difference (besides color) between the nano 5th generation (silver, black, purple, pink, etc) and the red 5th generation special edition?

    There is not difference in fetures if that's what you are asking. But it does go to a good cause.
    Proceeds from every iPod nano sold go directly to the Global Fund to fight AIDS in Africa.

  • In keynote - Leather Book theme - is there a way to remove the artwork in the middle of the cover page (between the two text boxes) (the squiggly thing)??

    I am trying to create a poster - in Keynote - transferring it to PDF then to JPEG so I can print it - and while I like the background in this Keynote theme (leather book) I can't seem to remove the artwork that is positioned between the two text boxes. Does anyone know how??? Can it even be done?

    I somehow ended up on creating a new master slide. I can FINALLY access the artwork - it has a box around it of x's - but I can't seem to do anything. Delete doesn't work. Trying to shrink the box doesn't work. I'm not getting a dialog box when I click on it that is specific to the x'ed area. It pertains to the full background page. I'm obviously missing something - the fact that I have never been in Keynote before may have something to do with it! :-)

Maybe you are looking for