I am trying to fill in a form in adobe exportpdf. How can I fill in numbers and symbols? Parenthesis, dollar sign etc.

I am trying to fill in a form in adobe exportpdf. How can I fill in numbers and symbols? Parenthesis, dollar sign etc.

Hi;
Can you provide a little more detail, maybe a screenshot?  ExportPDF only converts PDFs to other file types, what exactly are you using to try to fill out the form?  The two Adobe form filling tools I would recommend would be:
1) Adobe Reader - a free download you can install on your computer and can be used to fill out most any form.  For numbers, symbols etc it can depend on the field you are entering data into, some fields have restrictions, but you would use those keys on your keyboard, if nothing is entered then that field probably has restrictions.
2) Adobe Fill & Sign: https://cloud.acrobat.com/fillsign - using the Fill & Sign tab on the acrobat.com website you can fill out most PDFs.  To enter numbers, symbols, etc you would simply add them using your keyboard.
Thanks,
Josh

Similar Messages

  • PDF form column has dollar amount how can I line up numbers and have auto calculate?

    PDF file has columns that have dollar amounts.  I can not get it to line up or add up automatically.

    Line up: In Form Edit mode, select the fields, then right-click one of them and select Align, Distribute or Center and then one of the Align options.
    Auto-calculate: Again, in Form Edit mode, right-click a field and select Properties. Go to the Calculate tab and you'll see various options. The first one is the easiest to use for simple calculations. The other ones require more detailed instructions.

  • Filling out a form in adobe reader

    Im filling out a form in adobe reader for a scholarship. It was going well until I hit a certain section. Instead of typing the words horizontally, it was typing them vertically. Is there any easy way to fix this? I dont want to have to handwrite the entire thing.
    Thanks
    tutorben

    That's an interesting form. It looks like it started out as an XFA form that was created in LiveCycle Designer, and somehow converted to an acroform on a Mac. Whatever the process was resulted in setting the rotation on some of the field to 90 degrees. As Mike said, there's nothing you can do about it with just Reader.
    If you had Acrobat, you could set the proper rotation for the fields. If you really want to do this and don't have Acrobat, you can install the trial version of Acrobat 10. Or you could try contacting the creator of the form and get them to fix it.

  • How can I fill a pdf form with Excel?

    I have a pdf form and a set of Excel dates. How can I fill the form with this dates?
    Is there any way to transform excel dates into a fdf-File?
    Thank You for helping
    Hans

    I see. That's possible, in theory, but it requires using a complicated custom-made script.
    I would suggest using that Mail Merge option that's available in some versions of Excel to produce multiple single-page files, then flatten all of them (using an Action), and then merge them to a single file, to achieve the same result with much less effort.

  • How can I fill in a form, save the form such that it cannot be further altered, and email it as it was saved?

    How can I fill in a form, save the form such that it cannot be further altered, and email it as it was saved?  I created a form with 5 fields.  It is a form letter that is intended as a receipt for funds received.  I want to fill in the date, name, amount received, etc., save the form with inserted data fields so they can't be further altered, and be able to email it as a complete unalterable PDF document.  What I'm doing now, is filling in the fields, printing it, scanning it, and emailing it as an unalterable document.  The document was created on a Mac using Adobe Acrobat Pro version 10.1.13.  The document is filled in on a PC that only has Adobe reader on it, printed, scanned and emailed as an attachment. There must be a better way! 

    If you have access to a ASP.net Web Server, then the submission could be FLATTENED with FDFToolkit.net and emailed without client-side email software by only using Adobe Reader.
    For more information check out the following websites:
    http://www.pdfemail.net/examples/
    http://www.fdftoolkit.net/examples/

  • How can I fill a pdf form?

    how can I fill a pdf form?

    With Adobe Reader.  If you have any difficulties, please provide some details.

  • How can I fill in the blanks on a lease?

    I found the file, now I'm trying to use the "Tool" to fill in the blanks, and it won't allow me to.

    Hi Atiimkwabena,
    I suppose you are trying to fill the PDF form using Adobe Reader. (Correct me if I'm wrong)
    If yes, then that form might not be reader rights enabled. Adobe Reader being a read only software for PDF is only meant for reading and saving the blank copy of PDF. If you want to edit something in the PDF then the creator has to enable user rights(commonly called as Reader Extend rights) so that you can save the filled PDF. That can be done by Adobe Acrobat.
    I would request you to kindly contact the author of the PDF to enable the user rights and send it again.
    Hope this helps.
    Regards,
    ~Pranav

  • How can i fill the iTunes Connect ITIN?

    Hi,
    i am trying to sell the book on iBookstore but i can't find tge way how can i fill the ITIN on form.
    i am living in istanbul.
    i am non-US person.
    Any idea?
    Any help?
    Thanks.

    You would need to try to contact support for content providers, the standard support system at apple wouldn't be able to help much with this as they pretty much handle the consumer end of support and not the provider/developer, Only support for that I could find is available at http://www.apple.com/itunes/content-providers/

  • How can I fill structure from the line with contetnt of a XML file inside?

    How can I fill structure from the line with contetnt of a XML file inside?
    I have array of lines with XML documents inside. All XML's have the same structure.
    I need to fill array of structures (with the same structure like given XML's) from data of these XML's.
    How can I do this? I am trying Transformation with ora:parseEscapedXML, but receive error: "XPath expression failed to execute.
    Error while processing xpath expression, the expression is "ora:processXSLT("Transformation_1.xsl", bpws:getVariableData("ProcessedFiles"))", the reason is javax.xml.transform.TransformerException: javax.xml.transform.TransformerException: Could not find function: parseEscapedXML.
    Please verify the xpath query."

    Ive posted the new code but now I'm getting a FileAlreadyExistException error. How do I handle this exception error correctly in my code?
    import java.io.IOException;
    import java.nio.file.FileAlreadyExistsException;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.xml.sax.SAXException;
    public class MyDomParser {
      public static void main(String[] args) {
      DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
      try {
      DocumentBuilder builder = factory.newDocumentBuilder();
      Document doc = builder.parse("ENtemplate.xml");
      doc.normalize();
      NodeList rootNodes = doc.getElementsByTagName("templates");
      Node rootNode = rootNodes.item(0);
      Element rootElement = (Element) rootNode;
      NodeList templateList = rootElement.getElementsByTagName("template");
      for(int i=0; i < templateList.getLength(); i++) {
      Node theTemplate = templateList.item(i);
      Element templateElement = (Element) theTemplate;
      System.out.println(templateElement.getAttribute("name")+ ".xml");
      for(int i=0; i < templateList.getLength(); i++) {
      Node theTemplate = templateList.item(i);
      Element templateElement = (Element) theTemplate;
      String fileName = templateElement.getAttribute("name") + ".xml";
      Files.createFile(Paths.get(fileName));
      System.out.println("File" + ":" + fileName + ".xml created");
      } catch (ParserConfigurationException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (SAXException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (IOException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();

  • How can I fill in a default inputText in a Text Box

    How can I fill in a default inputText in a Text Box. Is it possible to create a button and then it should be possible some underlying data fill in the text boxes???
    Please help!

    My coding looks at the moment like that:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ page language="java" %>
    <html>
    <head>
    <title>
    JSF
    </title>
    </head>
    <body>
    <f:view>
    <h:form id="user">
    JSF Application View:<br><br><br>
    Credit Limit:.......
    <h:inputText value="#{User.username}"/><br>
    Currency:...........
    <h:inputText value="#{User.username}"/><br>
    Score:..............
    <h:inputText value="#{User.username}"/><br>
    Valid Date To:......
    <h:inputText value="#{User.username}"/><br><br>
    <h:commandButton value="Receive Data from Background" action="success" /><br>
    </h:form>
    </f:view>
    </body>
    </html>
    Now my question is how it is possible to fill in the inputTextvalue when I click on the Button "Receive Data from Background" Is it possible to define that in that coding above????
    Please help I'm not fit in JSF

  • My laptop had a virus and I am trying to sync my IPHONE 4 to my desktop, how can I sync my phone without losing all my music, apps and contacts?

    my laptop had a virus and I am trying to sync my IPHONE 4 to my desktop, how can I sync my phone without losing all my music, apps and contacts?

    You are talking about the menu bar of Itunes, right?
    Yes. With iTunes open the menu bar is at the top of your screen.
    where exactly is the Store/synck you iphone option?
    After you authorize the computer connect your iPhone then follow the instructions here > iOS: How to transfer or sync content to your computer
    When you are done transferring the data to the desktop, right or control click the iPhone under Devices left side of the iTunes window then click Back Up.
    That way you will have a backup just in case you need to restore your iPhone.

  • I am in Saudi and trying to download navigon middle east. Every time I try to buy the app it will show up, says waiting and disappears. How can I get around it and not get lost on these crazy roads?

    I am in Saudi and trying to download navigon middle east. Every time I try to buy the app it will show up, says waiting and disappears. How can I get around it and not get lost on these crazy roads?

    I recently purchased a second hand new macbook air, although it was second hand to me the previous owner had never actually turned it on.
    Something doesn't make sense here, though I'm not saying the previous owner is lying....
    Time to send your serial # to iTS and let them see what's happening here.
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • How can I fill a table of objects from cursor with select * bulk collect???

    Hi All, I have a TYPE as OBJECT
    create or replace type dept2_o as object (
    deptno NUMBER(2),
    dname VARCHAR2(14),
    loc VARCHAR2(13));
    I can fill a table of objects from cursor with out select * bulk collect...., row by row
    declare
    TYPE dept2_t IS TABLE of dept2_o;
    dept_o_tab dept2_t:=dept2_t();
    i integer;
    begin
    i:=0;
    dept_o_tab.extend(20);
    for rec in (select * from dept) loop
    i:=i+1;
    dept_o_tab(i):=dept2_o(
    deptno => rec.deptno,
    dname => rec.dname,
    loc =>rec.loc
    end loop;
    for k IN 1..i loop
    dbms_output.put_line(dept_o_tab(k).deptno||' '||dept_o_tab(k).dname||' '||dept_o_tab(k).loc);
    end loop;
    end;
    RESULT
    10 ACCOUNTING NEW YORK
    20 RESEARCH DALLAS
    30 SALES CHICAGO
    40 OPERATIONS BOSTON
    But I can't fill a table of objects from cursor with select * bulk collect construction ...
    declare
    TYPE dept2_t IS TABLE of dept2_o;
    dept_o_tab dept2_t:=dept2_t();
    begin
    dept_o_tab.extend(20);
    select * bulk collect into dept_o_tab from dept;
    end;
    RESULT
    ORA-06550: line 6, column 39;
    PL/SQL: ORA-00947: not enough values ....
    How can I fill a table of objects from cursor with select * bulk collect???

    create or replace type dept_ot as object (
    deptno NUMBER(2),
    dname VARCHAR2(14),
    loc VARCHAR2(13));
    create table dept
    (deptno number
    ,dname varchar2(14)
    ,loc varchar2(13)
    insert into dept values (10, 'x', 'xx');
    insert into dept values (20, 'y', 'yy');
    insert into dept values (30, 'z', 'zz');
    select dept_ot (deptno, dname, loc)
      from dept
    create type dept_nt is table of dept_ot
    declare
       l_depts dept_nt;
    begin
       select dept_ot (deptno, dname, loc)
         bulk collect
         into l_depts
         from dept
       for i in l_depts.first .. l_depts.last
       loop
          dbms_output.put_line (l_depts(i).deptno);
          dbms_output.put_line (l_depts(i).dname);
          dbms_output.put_line (l_depts(i).loc);    
       end loop;
    end;
    /

  • I ordered Illustrator for another user.  I received an invitation that was accepted, logged in and tried to change the account to the name and email of the person it was ordered for.  How can I get this changed and the invitation sent to the right person?

    I ordered Illustrator via creative cloud for another user.  I received an invitation that was accepted  and tried to change the account to the name and email of the person it was ordered for.  How can I get this changed and the invitation sent to the right person? 

    Cloud as a Gift https://forums.adobe.com/thread/1665610

  • I thought I upgraded to Pro, but my account shows both Basic and Pro. How can I upgrade to Pro and cancel Basic without losing my forms?

    I thought I upgraded to Pro, but my account shows both Basic and Pro. How can I upgrade to Pro and cancel Basic without losing my forms?

    Hi Rochdr,
    You can use the following article to help you address this issue with your mail account in OS X:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

Maybe you are looking for

  • How to transfer purchase from one iTunes account to another

    For a while I've been buying content through my mom's iTunes account, and just recently set up my own account. However I purchased a season of "Game of Thrones" while I was still using her account, and can only access the season through iCloud if I'm

  • Attendees not showing up in ical when clicking on a date in an email

    Hey When I receive an email with a date and time in it and I click on that date and add it in to ical (using "Create New iCal Event" option), it allows me to give a name of the meeting, change time, set the alarm etc but I cant seem to add the attend

  • Error using PlanType3 only in Planning ver. 11.1.1.3

    Hi, we are implementing Planning ver. 11.1.1.3 and are using all 3 of our PlanTypes. We have accounts which we only want to use with PlanType3, however we are receiving an error when choosing only this PlanType when creating/modifying the account. Th

  • Web Analysis response time is too slow

    Hello I have a problem with Web analysis 9.3.1 because the response time is too slow. We used IBM Websphere 6.1.0.5 to deployment. Anyone have any idea about what is happening and how can I improve performance? Thanks

  • 5GHz no faster than 2.4???

    Hey guys, I have my AEBS configured in 5GHz n only mode... and I see no speed increase compared to 2.4GHz b/g/n mode... why is this?? I went from 54Mb/sec -g to 300Mb/sec -n, and so moving files around on my network between 2 MBPs or between my MBP a