Segmented Form Fills - Different Users

I have been tasked with creating forms for our departments.  As an example, there is a contract template where the sales person fills in some data, then it gets sent to the potential client to fill in.
I do not see how to restrict data entry between the two groups. I don't want to allow the clients to adjust the sales data which is mostly pricing.
Could someone be so kind as to either provide an answer or point me to where I can find more info on accomplishing this (using XI Pro)? 

There are two ways to prevent the second group from altering the information entered by the first. You can either set the relevant fields to read-only and save, or flatten the fields. Flattening select fields can be done with JavaScript, but it requires Acrobat. Setting fields to read-only can be done with JavaScript and works with Reader.
With a contract, I would suggest flattening, since setting the fields to read-only would not prevent someone from easily altering the fields. It's not so easy that it can happen accidentally or casually, but someone who is motivated could.

Similar Messages

  • ORA-04062 error when running forms with different users

    ORA-04062 error when running forms with different users
    I have a form that has a block that should display some data from another users tables. (The other user's name is dynamic, it's selected from a list box)
    I wrote a stored procedure to get the data from other user's tables.
    When I compile the form and run it with the same user I compiled, it works without any error. But when I run the compiled form with another user I get the ORA-04062 (signature of procedure has been changed) error.
    I tried setting REMOTE_DEPENDENCIES_MODE to SIGNATURE in init.ora but it didn't help.
    My Forms version is 6i with Patch 15.
    Database version is 9.
    Here is my stored procedure:
    TYPE Scenario_Tab IS TABLE OF NUMBER(34) INDEX BY BINARY INTEGER;
    TYPE Open_Curs IS REF CURSOR;
    PROCEDURE Get_Scenarios(User_Name IN VARCHAR2, Scen_Table OUT Scenario_Tab) IS
    Curs Open_Curs;
    i NUMBER;
    BEGIN
    OPEN Curs FOR
    'SELECT Seq_No FROM '|| User_Name ||'.scenario';
    i := 1;
    LOOP
    FETCH Curs INTO Scen_Table(i);
    EXIT WHEN Curs%NOTFOUND;
    i := i + 1;
    END LOOP;
    END Get_Senarios;
    I would be happy to solve this problem. It's really important.
    Maybe somebody can tell me another way to do what I want to do. (getting a list of values from another users tables)

    I think it should be a better solution to create a package,
    and put your own TYPES and procedure into it.
    CREATE OR REPLACE PACKAGE PKG_XXX IS
    TYPE TYP_TAB_CHAR IS TABLE OF .... ;
    PROCEDURE P_XX ( Var1 IN VARCHAR2, var2 IN OUT TYP_TAB_CHAR );
    END ;
    Then in your Form :
    Declare
    var PKG_XXX.TYP_TAB_CHAR ;
    Begin
    PKG_XXX.P_XX( 'user_name', var ) ;
    End ;

  • A form  have different  user  group only alter their comment

    Dear all:
    i have a table (called main_tab) with these columns,
    WORK_DATE DATE
    work_USER_ID NUMBER
    work_USER_NAME VARCHAR2(50)
    DEPT VARCHAR2(30)
    SHIFT VARCHAR2(3)
    CONTRACT_MANAGER VARCHAR2(50)
    CONTRACT_HOURS NUMBER
    OP_MANAGER VARCHAR2(50)
    OP_HOURS NUMBER
    HR_MANAGER VARCHAR2(50)
    HR_HOURS NUMBER
    SIGH_HOURS NUMBER
    OP_REMARK VARCHAR2(100)
    HR_REMARK VARCHAR2(100)
    another table called USER
    user_id NUMBER
    USER_NAME VARCHAR2(50)
    USER_GROUP VARCHAR2(50)
    i want to do a form like this ( CONTRACT_MANAGER can add rows)
    eg:
    work_date is a date type can be selected(do not input manually)
    work_USER_ID ,work_USER_NAME ,dept,shift need user input manually
    contract_manager, op_manager,hr_manager is different user group
    when these different user login application,they can only alter their own comments(CONTRACT_HOURS ,OP_HOURS ,HR_HOURS )
    I think this may be a form, but i am not sure how to
    please teach me how i can achieve this
    many thanks. step by step will be best.
    saven

    Hi,
    The first thing you need to do is define some Authentication Schemes. Have a read of this: http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/sec.htm#BABEDFGB
    You should create one scheme for each type of user - how the schemes are defined depends on how you define those users, typically, though, it would be some form of SQL statement.
    Then, create a form (or, more likely, a report with a form so the user can see the data and click a link to edit it or click a button to create a new record). On that form, for any item except the hidden Primary Key item (which you haven't listed on the table structure?), you can select the Authorization Scheme in the Security section of the page item, report column or button etc. Once an Authorization Scheme has been applied to an object, only users that are in that Scheme can interact with that object.
    For the WORK_DATE item, just use a Datepicker page item - if you create a form using a wizard, this is usually done for you, but you should check the date format used
    Andy

  • How do I create a form that enables the user to save the form filled in?

    When I create the form, save it and open it later, I get the message that the form can only be saved empty - without whatever the user filled into the text fields. Why is this and how can I enable the form to be saved including the content of the fields?

    It should only say that when used with Reader versions prior to version 11. If you have Acrobat, you can Reader-enable the form, allowing it to be saved in versions prior to 11, and 11 as well. Exactly how you do this depends on what version of Acrobat you're using:
    A9: Advanced > Extend Features in Adobe Reader
    A10: File > Save As > Reader Extended PDF > Enable Additional Features
    A11: File > Save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)

  • VBA inserting form fields, different positions result for different users.

    I'm certianly at a loss for wrapping my head around this.
    Adobe Acrobat 9 Standard (v 9.5.4)
    Excel 2010  (VBA)
    The problem:  When I create the PDF document from Excel, I search for a string of text in order to capture the Quads for the containing rectangle.  Then I use the quads to insert a control with numeric offsets.  The problem that I am facing is that the offsets seem to be causing the controls to be in different locations for different users.  For example, when I send (-26, -2, 100, 10) {x-offset, y-offset, width, height}; the control aligns exactly where I want it.  But when another user user runs the exact same routine, or opens the PDF that I created, the fields are no longer positioned correctly.
    Is there some setting that I am missing? EDIT, SOLVED:  My Acrobat had a custom point to pixel setting.  (Preferences > Page Display > Resolution)
    Private Function makePdfControl(ByVal pdfPage As Integer, keyTerm As String, Optional ByVal keyTermLookAhead As Integer = 0, Optional ctrlType As String = "text", Optional cCoords As Variant = 0)
        'pdfPage is the target page of the document
        'keyTerm is the assembled search term: "Date Shipped >> DATESHIPPED"
        'keyTermLookAhead is the number of words assembed into KeyTerm, zero based: "Date Shipped" >>  "DATESHIPPED" >> "DATE" = 0, "SHIPPED" = 1
        'ctrlType determines the type of control to place on the form; default is text
        'cCoords carries an array of integers: x-offset, y-offset, width, and height
        txt = ""
        Dim fkt As Integer 'counter for keyTermLookAhead
        Dim matchFound As Boolean 'flag that a match has been found
        Dim maxWords As Integer 'the maximum number of words in pdfPage
        Dim coord(3) As Integer 'local array container to provide interface for cCoords
        p = 0
        matchFound = False
        maxWords = jso.getPageNumWords(pdfPage)
        Do While p + keyTermLookAhead <= maxWords 'search all words in the target page; break if not found
            p = p + 1
            For fkt = 0 To keyTermLookAhead
                txt = txt & jso.getPageNthWord(pdfPage, p + fkt)
            Next fkt
            If UCase(txt) <> UCase(keyTerm) Then 'the assembly of terms is complete, check if match
                txt = "" 'prepare "txt" for next assembly
                matchFound = False
            Else
                matchFound = True 'we've struck gold, exit the loop preserving val of "p" as the first word in the assembly
                Exit Do
            End If
        Loop
        If matchFound = True Then
            Dim qtmp() As Variant
            Dim q(7) As Double
            qtmp = jso.getPageNthWordQuads(pdfPage, p)(0) 'collect the rectangle containing the first word of the search; output is a base-0x7 array
            For a = 0 To 7
                q(a) = qtmp(a) 'collect the data
            Next a
            If VarType(cCoords) <> 8204 Then '8204 means that we've inserted an array into the Varient type var cCoords
                coord(0) = 0
                coord(1) = 0
                coord(2) = 100
                coord(3) = 15
            Else
                coord(0) = cCoords(0) 'x-offset value
                coord(1) = cCoords(1) 'y-offset value
                coord(2) = cCoords(2) 'width value
                coord(3) = cCoords(3) 'height value
            End If
            x0 = coord(0) 'x-offset var
            y0 = coord(1) 'y-offset var
            w = coord(2) 'ctrl width
            h = coord(3) 'ctrl height
            x = q(0) + x0
            y = q(7) - h + y0
            'origin point of doc matrix is lower-left corner
            'origin point of control is lower left corner of the rectangle containing the first word of the search phrase
            'offsets are placed from this point, negative x shifts to the left, negative y shifts down
            'values are in points, not pixels
            Set f = aForm.Fields.Add(keyTerm, ctrlType, pdfPage, x, y, x + w, y + h) '(uplf, lwlf, lwrt, uprt) 'add the control to the form using values passed in
        End If
    End Function
    The above function is used while looping through the pages of the created PDF document.  I am using the following function to create the document from Excel:
    Private Sub exportToPDF()
        DoEvents
        Application.ScreenUpdating = False
        Call showTabs(False)
        ActiveWorkbook.ExportAsFixedFormat Type:=xlTypePDF, _
                                           Filename:=pdfPathData, _
                                           Quality:=xlQualityStandard, _
                                           IncludeDocProperties:=False, _
                                           IgnorePrintAreas:=False, _
                                           OpenAfterPublish:=False
        Call showTabs(True)
        Call locateDoc
        Application.ScreenUpdating = True
    End Sub
    Message was edited by: ilivingston:  solved

    Thanks for the reply, I did spend some time working on this issue...  here is what I found...
    1)  First of all, I did have a custom Points to Inches setting in my Acrobat options...  110 vs 96.   Resetting this allowed for me to see the alignment issue that my colleagues were referencing first hand.
    As it turned out, my results were better, but still had inconsistency among different workstations.  Leading me to..
    2)  The MSFT creator uses the default printer in some way to create the PDF.  Because the different workstations were using different printers, we were getting different results.  If everyone used an HP 1320, nobody would see any difference upon creating / adding fields.
    The final solution was to change the Application.Printer to a common network printer before the export operation, and return the Application.Printer to the user default after the export completed.  This has provided us with a common ground to work upon; we are lucky to have a network printer that can be used for this purpose, as I can see this becoming non-viable in environments where this would be unavailable.

  • Single registeration form to capture different user levels

    Hi there,
    I am currently working on a business catalyst website project and I have a trouble defining different user levels on single registeration form. Here is the detail of what I am looking for.
    I have a registeration form on the site and we have two types of users, one is student and the other is professor. My client wants to just keep one form with tick boxes at bottom of the form i.e Create my account as a Student & Create my account as a Professor. So clicking on any one will process the registeration for the selected user level. (If I select Create my account as a Student, the form should register me as a Student or wise versa)
    I am not sure if business catalyst offers this feature or any possiblity to achieve it. Could anyone pls give me some help on this?
    Thank you in Advance,
    Anand

    Yes , the T-Codes give same results in diff. users when they were being executed seperately.
    When I am executing all those using my program the following things happen
    1-  Those tcode working fine and producing same result as if they were being run independeltly in my user-id.
    2-  The productiong order is getting locked in CO02 and variance are also getting calculated in my user-id.
    3- When  I am running same program in other user-id, I am always getting formatting erros for T-code KGI2 for the fileds
      CODIA-AUFNR and RAKUF-FROM.
    4- I have used  ALFA routine  to convert AUFNR as its being used in that KGI2 screen in similar way.
    5- I have used NUMC format for FROM and condense its value before passing in to KGI2 screen.
    6- While executing BDC  I am passing following options.
      wa_opt-dismode = 'N'.
      wa_opt-updmode = 'A'.
      wa_opt-cattmode = ' '.
      wa_opt-defsize =  ' '.
      wa_opt-racommit = ' '.
    I have tried several combinations for these options, but didnt work.
    SOS.

  • How to create a pdf form allowing Reader user to insert picture - NOT from their local hard drive - but from photos I want them to choose from?

    Is there a way to create a PDF form where a Reader user can insert an image - that's NOT on their local hard drive?
    I have 4 photos available - the users of my form will choose one of them and insert it in the pdf form. The users will NOT have the photos saved on their local hard drives so ideally, they will see thumbnails or a preview of the available photos and then select and insert the photo they want to use.
    Is this possible? If so, how do I go about this? Right now, all I can find are ways to insert a photo located on the users local hard drive.
    Hopefully someone can answer my question.

    George, I'm not sure where the photos would go or how to include them. I'm a complete newbie when it comes to making pdf forms so i'm not sure if it's even possible.
    I'm planning to make a flier. I want the end user to be able to choose the photo displayed on the flier - the photos would be ones that I choose and supply. I know I could just make four different fliers, but I thought it would be more efficient if I had one flier and gave the Reader user the ability to select the photo they like.
    Does this sound possible to you?

  • Multiple form fill-ed's open at one time - crashing

    I have many form fill-ed documents created using Live Cycle.   Issues have been reported regarding adobe shutting down in the middle of filling out a form.  Tow of our employees have this crashing issue.  They both have Windows 7; Adobe Reader XI, and IE X.  I have trouble shooted several different options.  I have used the acrobat_ittools_cleaner to remove old acrobat (recommended by acrobat). 
    I had the Two employees use one form fill at a time to determine the cause of the crashing.  If they use only ONE form at a time, there is not crashing.  The minute they open two forms, and start to fill in the form, it crashes. 
    These forms are not new,  They worked fine with mulitple forms open in the past.  I created these forms in Live Cycle (which came with Acrobat Pro 9).  I figured with the added security in Acrobat XI, I needed to update the forms using Live Cycle Designer ES4.  That did not help either.
    What else can I do to correct this problem?    

    Maggie,
    There are some things you need to consider:
    &lt;script language="JavaScript" type="text/javascript">
    function f_mass_update()
    var counter = 0;
    for (var i = 0; i &lt; document.wwv_flow.f03.length; i++)
    {var curr_id = document.wwv_flow.f03.id;
    if ($x(curr_id).value == 'COMPLETE')
    {$x(curr_id).value = 'CANCELED';
    $x(curr_id).style.color = "darkred";
    $x(curr_id).style.fontWeight = "bold";
    $x(curr_id).style.background = "yellow";
    $x(curr_id).style.width = "103px";
    counter = counter + 1;}}
    if (counter == 0)
    {alert ('There are no more statuses to change!');}
    else {alert(counter + ' Records updated!');}
    &lt;/script>is the correct script if you escape COMPLETE as 'COMPLETE' and CANCELED as 'CANCELED'. The same rules apply for javascript as for the most other programming languagas - numbers do not need to be escaped but character strings do.
    The second thing is the question of your tabular form id. In my case it was f03 but in your case it is probably different. If you created a wizard tabular form and didn't touch it, you could count the columns.
    If your column is the first editable column than it will be f03. The second will be f04 and so on. My recomendation is to use Firefox and download the extension Firebug. With firebug you can do HTML > Inspect and go with the mouse over any element on your page. Click on the actual tabular form cell and it will show you some code like this:
    &lt;input type="text" id="f03_0001" value="10" maxlength="2000" size="16" name="f03"/>so, the name of the element is f03.
    See the same page, now with an image attached of what I just explained:
    http://apex.oracle.com/pls/otn/f?p=31517:213
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Connect from iPad to MacbookPro as a different user?

    Here is, in a nutshell, what I would like to do:
    I would like to log in to my MacbookPro as user "me" from an iPad,
    while someone else is already logged in on the Macbook the conventional way as "he".
    I would like to do my email, using the Mail app on my Macbook, while my kids are watching a movie on it,
    and even if they are logged in under there account.
    IIRC, this used to be possible on Unix/Linux (I grew up under Unix about 15 years ago).
    I have tried screen sharing and a VNC client on the iPad (VNC viewer from RealVNC), but
    1. it seems to work only if the VNC server is running on the Macbook;
    2. I don't see how I can log in as a different user *and* have my own GUI session.
    I read posts on the internet that claim that it is possible to do what I want, and they seem to refer
    to VNC and/or Apple's Screen Sharing, but I didn't find any specific details.
    Yes, I have Screen Sharing on under System Preferences > Sharing.
    Any insights, pointers, and hints will be highly appreciated.
    Best regards,
    Gabriel.
    PS:
    The iPad needs to be registered with my son's Apple ID because he needs it in school.
    PS:
    Yes, I could install a second mail client on the iPad, but then I still would not have access to all the local mail folders on my MacBook.

    Yes, you are right, my logout url is re-directed to the login page.
    However, I tried to add the logout url in authentication scheme as you said, it does not work.
    error msg: No functional attributes may be set when page sentry function is '-DATABASE-'.
    My project is:
    I have a oracle database with tables, functions/procedures/packages. The role privilege to access the database has been granted to a few users. Then, I developed an application in apex to access the database and run procedures.
    I expect the security of apex application log in is: the users who can access the database can use the application.
    So what I did:
    1) I set up the authentication scheme of the application as 'database' scheme, The detail is as following:
    Description: Use database authentication (user identified by DAD).
    Page Session Management: Page sentry function: -DATABASE-
    the left areas are all null.
    2)I developed a home page (page1): the detail is as follows:
    regions: html region with a logo linked to page2
    item: url item, source: pl/sql function get_url(), maintain session state as per session
    computation: get_url(). It only has one command to return database http login address, to ask enter username and password. BeginThis function is expected to require and provoke a database login
    when the application computes the above item using this function.
    branch: after log in branch to page2.
    3) set up a Navigation Bar for logout as :
    wwv_flow_custom_auth_std.logout?p_this_flow=&APP_ID.&p_next_flow_page_sess=&APP_ID.:1
    The purpose of provoking database login has come true.
    However, the problem is: after I logout from the application and it redirected to page1, when I tried to log in again as a different user, it will automatically log in as the former user (without asking username and password). I have to close the IE, and rerun IE, then I can log in as another user.
    I hope I have expained it clearly.
    Cheers.
    Sue

  • Signing Not Allowed after Enable Forms Fill-In & Save in Adobe Reader

    When using Adobe Acrobat X Standard and creating a fillable form that uses digital signature, selecting
    File / Save As / Reader Extended PDF /
    Enable Forms Fill-In & Save in Adobe Reader
    changes the security for Signing to Not Allowed.
    When using Adobe Acrobat X Pro and creating a fillable form that uses digital signature, selecting
    File / Save As / Reader Extended PDF /
    Enable Additional Features
    does not change the security for Signing to Not Allowed.
    Is there a way I can use Standard so users can use digital signatures in Adobe Reader?

    Read this:
    http://forums.adobe.com/message/2421282#2421282

  • I have set form fields as User required and yet the form still prints/save when empty.

    I have set form fields as User required and yet the form still prints/save when empty. I also have an email button on the form but that works correctly by not allowing the user to email the form with the required fields empty.
    What script do I need to additionally restrict both printing and saving if the required fields are empty?
     You would think that just setting that option would restrict those functions the same as it does for the email button. 
    Please be specific with your response if you are gracious enough to offer one. I have been searching the forum all morning for the answer to this and I really didn't understand any of the solutions offered to others enough to use those in my own form.
    The required fields are:
    Social (social security number)
    Name
    Headquarters
    Residence
    The next question I have is if there is a way to make individual signature fields mandatory if they are digital signatures?
     In other words, I don't want the individual to be able to email the form to the next person if he/she hasn't applied their digital signature.

    Saving can always be done, even when mandatory fields are empty.  This is by design.  And that is correct.  Suppose you have a big form and 2 people need to fill it out.  How can you fill out a first part and then send it to the second person without saving.
    Same for printing.  Same for your signature fields.
    What I would do, is to put a "watermark" on the form that you show on preSave and prePrint if the form is incomplete.  Just a static text on your form.  Then the user will see that they need to do more.  Also, on preSave and prePrint, you can show a warning popup to tell the user about the missing fields.  You can then still cancel their action if the user decides not to save/print anyway.

  • Form Filler Yellow Task Bar Link Does Not Open task or do anything SharePoint 2010 InfoPath 2010

    Form Filler Yellow Task Bar Link Does Not Open task or do anything (SharePoint 2010 InfoPath 2010)
    Using a SPD workflow to run a approval process. This is a non-browser form. User receives task notification, opens form in IP Form Filler and sees yellow task bar notification. User Clicks on open task, nothing happens... OS = XP, On Win7
    = We get a never ending download box, and several logon security windows
    Attempted Fixes
    Clear
    InfoPath Cache
    Workflow History Looks good

    Hi,
    I understand that when you click on Edit this task in the message bar in InfoPath 2010, nothing happens. Does this happen when you open the email which contains the ‘Edit this task’ link?
    If so, you can try to check whether this key is in your regedit. If so, you can delete this key and have a test.:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{00000000-0000-0000-0000-000000000000}
    Back up the regedit keys before making any changes. For more information about backup and restore the regedit, please refer to these sites:
    Fix “Edit this task” In Outlook 2007:
    http://vettekerry.wordpress.com/2008/06/11/edit-this-task-in-outlook-2007-doesnt-work/
    How to back up and restore the registry in Windows XP:
    http://support.microsoft.com/kb/322756?wa=wsignin1.0#method1
    Thanks,
    Entan Ming
    Entan Ming
    TechNet Community Support

  • LiveCycle Designer Form Filling on Tablet PC with Stylus

    My org is developing a bunch of forms in LiveCycle Designer to be filled out on a tablet PC using its stylus pen.
    We are using LiveCycle Designer ES 8.2 on a Dell Latitude XT2 tablet. The form is to be viewed in Adobe Reader 9 (but could change that to Acrobat 9 if we had to). We have extended the rights to Adobe Reader to enable the user to fill out and save the form data as needed. The tablet is running Windows XP for Tablet PC.
    The form is working properly on the tablet PC but I can't fill in the form fields with the tablet's stylus. Using the keyboard we can key in the necessary data but one of the primary goals to implementing this solution was to increase mobility in the field and reduce paper usage.  I have tried using EverMap's AutoInk plug in as directed in this Adobe blog (http://blogs.adobe.com/acrolaw/2009/01/using_the_tablet_pc_with_acrobat.html) but it only works with forms created with the Acrobat Forms Wizard. We don't want to create the forms in here as it is too time-consuming to continue to update a Word template and run it through the wizard again.
    I also installed SigPlus Pro for Tablet PC and the Adobe 9 plug-ins created by Topaz Systems to allow for digitally signing the document with the customer's signature image. This piece is working very well.
    Does anyone have any tips on how to enable ink-to-text form filling on a Tablet PC for forms created in LiveCycle Designer? I am all out of ideas and can't find anyone else who has even run into this issue.
    PLEASE HELP!!
    Many thanks,
    FLO

    Hi,
    I don't have an answer for you about the tablet - sorry.
    But a few pointers.
    The AutoInk plugin seems to write "over" the PDF and is flattened as an annotation. The data is unlikely to be "inputted" into the field and therefore may not be recorded as data. You might want to try this out with a test AcroForm. This might be OK with you, as you just want to print out the completed form. If that is the case then you just need to enable the form for commenting.
    In relation to Acroforms, one thing to bear in mind. Once you have brought in the Word template into Acrobat for the first time and inserted all of the form objects that you want. Later if you want to update the form, then you don't need to start from scratch. Just replace the pages in Acrobat with the new ones! Acrobat will slide the new pages under your existing form objects. You may need to move these around or add new ones to suit the new layout - but by no means do you have to start from scratch.
    Sorry couldn't be more help - good luck,
    Niall

  • Designer form displays differently on different similar computer.

    I created an Adobe LiveCycle Designer 7.0 form which contains various text fields and numeric fields. All the form's fields display correctly on my own computer (WINXP Pro) when a user inputs data to the fields. When posting the form to the web those fields continue to display correctly. However, if my wife enters data to the form on the web these same fields do not display (or print) correctly. (Her computer is a WINXP Pro as well and also has Adobe LiveCycle Designer 7.0 installed). The form appears to be "dropping" the bottom of some letters (the descender portion of the letters) and some numbers, though not all. To solve the problem, I redesigned the form using Arial 10 pt instead of "Myriad Pro" 10 pt but it makes no difference. To show you what I mean, I posted 2 screen shots at http://www.lepirtle.com/acrobat using test letters and numbers in some of the fields. The first screen shot is the way it appears on my computer (the way I want it to look) and the second shot is the way it appears on my wife's computer: the descender portions of the letters and some, though not all, of the numbers are "dropped".
    Can anyone offer a solution? Thanks.

    To answer banh29's question: My wife's computer has exactly the same version as me: Acrobat 7.02 Pro. To answer Hubert's question: yes, both her computer and mine are set the same, "Font size Normal".
    However, in the last couple of hours I found the solution to my problem. I set the Layout property of the "Y" dimension to "Expand to fit". This prevented the "bottoms" of the numbers and the letter descenders from disappearing.
    I am still puzzled why the forms appear differently on each of our computers however. I thought that was the great thing about Acrobat in that things appeared the same on all computers.
    Thanks for your help.

  • Locking form when multiple users try saving data

    Hello,
    How can I prevent users from saving data in the same form at the same time? is there anything to lock a form once a user opens it for entering data??
    As if 2 users are having access on the same form, and accidentaly they opened the same form and selected the same combination of dimensions, if both of them saved data. The data will be overwritted by the latest one...and this is not the required scenario......we need to have it only possible for one user to open this form at a time.
    Is it possible?
    Thanks.

    Hi,
    As Kyle said, the issue would be only if both the users update/modify the same cell.
    However said that, is it possible that same cell would have different values, even if two different user enters the data at same time?
    Means data entered would have to be same even if it is entered by different users. (Just asking out of curiosity :) )
    Also process management can be thought off, wherein only current owner can fed data(free form).
    Hope this helps.
    Regards
    -SM

Maybe you are looking for

  • How do I look for a date that corresponds to a particular Week Number in a table?

    Hello, I have a table (Table A) that looks like this (I am only including the first 5 months to keep image size down): The numbers in the table are dates, with custom formatting to just show the day. I have another table with all of the Week Numbers

  • Is there a way to disable tab font smoothing (maybe with userchrome.css)?

    hello everyone I've just switched from chrome to ff and I'm very satisfied. Just one problem, is there a way to disable tab font smoothing (maybe with userchrome.css)? I've changed the colour of tab font (with userchrome.css) to white to improve read

  • SQL Server 2012 in restoring mode

    Hi All, My database is in "restoring" mode and is taking forever to complete the activity. Need some help to get my db back. Regards, Abhinay Tharwal

  • How to increase the size of /opt solaris 10 x86

    Solaris 10 X86, /opt runs out space, would anyone please tell me how to increase the size of /opt? The Solaris is installed on the whole disk, and I believe there are still some free hard disk space available somewhere. I need step by step guidance p

  • Restore a MACRO in dev system

    hello Experts, I have a macro in development (DEV) system which is transported to the production ( PROD). Someone has changed it in dev so its has stopped working in DEV, but works perfectly in PROD. I am not able to find who / what has been changed