Cannot open form in LifeCycle Designer to edit.

I have created two forms using LC Designer 8. I now need to edit both forms and cannot open them back up to edit!
When I try to open both forms Adobe Professional 8 opens. I then open the form in Adobe Pro 8 and click "edit in designer" and it will not open. I have also tried to open the form directly from my documents in LC Designer and it will not open.
When I try to open LC deigner on its own it will not open - just shoots me straight to Adobe Pro 8.
I need to edit these forms - please help! Thank-you :)

I am also having this problem. It is a dynamic form bound to an XML schema. When I try to reopen it, the livecycle banner comes on, but disappears immediately. The pdf opens in acrobat 9 (a 30-day trial copy). From there, it can be distributed and then filled in.

Similar Messages

  • Cannot open form with a button

    Hi folks, I'm new to Developer, so apologies.
    I am opening a form xxx by attaching a smart trigger of WHEN-BUTTON-PRESSED to a button by
    call_form('xxx');
    It compiles fine, but when I evesute the form, it says errer 400010 cannot read form. Any ideas?
    Thx,
    Ken

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Carter:
    Put the called form's fmx file in a directory specified in the FORMS60_PATH key in the registry
    <HR></BLOCKQUOTE>
    More simply, you can pass the parameter with the path. ie call_form('c:\xxx.fmx') and so.
    If you want to pass any other parameters check it in the help for call_form. Tip. You also can use run_form/new_form to call a new form and go_form to navigate b/w forms.

  • Cannot open form - Reader & Acrobat crash

    Hello,
    I am facing a strange issue here on our citrix servers (Win 2008 x64, Citrix PS 4.5)
    We have both Acrobat reader 9.4 and Acrobat Std 9.4 installed on the servers (problem occurs with verson 9.3 also)
    When we try to open some pdf files  (with either the reader or Acrobat), the window launches, and displays a part of the file, then the app crashes..
    Those pdf for which the issue occur all contain forms. I even tried generating a simple pdf form containing one text box, and the problem occurs.
    What is strangest is that if i save the file on disk (from say an email), I cannot open it. Consistently. This is always reproduced.
    If I logoff, then log back on, I can then consistently open it.
    It makes no difference if the file is saved on my desktop (we have roaming profiles), or in my home directory.
    This does not affect all pdfs, but all users for some pdfs..
    I have tried uninstalling one of the 2 products, but the other one keeps on crashing.
    Nothing in the event logs, I tried to procmon, could not spot anything.
    Any help would be VERY appreciated
    Vincent

    Hi
    Please follow this KB doc: http://helpx.adobe.com/acrobat/kb/reader-core-dll-error.html
    Thanks

  • Cannot Open Form Created on Separate Thread After Closing

    My application communicates with a device that has several sensors.  As the sensors collect data, they send messages over the com port.  I have written a class to communicate with the device.  As the messages come in and are processed, the
    class raises events that the application responds to.
    The main window of the application handles the communication with the device and displays several statistics based on the data collected.  When the user presses a button on the device, a specific event is raised.  The main window create a separate
    thread and opens a child window.  When the child window is open, the user opens a valve to dispense the product.  As the product is dispensed, a flow meter connected to the device measures the volume of product dispensed.  The flow meter generates
    messages to indicate the volume dispensed.  I need to be able to send messages from the main window to the child window so that the child window displays the volume.  When the user is done, they close the valve dispensing the product and press the
    "End" button on the child window.  The child window then updates several variables on the main window, makes a couple of database calls to record how much product was dispensed and by whom and then closes.
    I need to run the child window using a separate thread as both windows need to be able to process commands.  If only one window has control the program doesn't work at all.  I have it figured out so that everything is working.  I can open
    the child window, dispense product, se the amount of product dispensed in the child window (the main window processes commands from the device and updates the label on the child window using a delegate), closes the window (using Me.Close()) and updates the
    main display with the updated data.  The problem is that when a user goes to dispense product a second time, I get the following error:
      A first chance exception of type 'System.ObjectDisposedException' occurred in System.Windows.Forms.dll
      Additional information: Cannot access a disposed object.
    I thought that maybe I could hide the window (change Me.Close() to Me.Hide) and then just show it.  When I do that I get this error:
      A first chance exception of type 'System.InvalidOperationException' occurred in System.Windows.Forms.dll
      Additional information: Cross-thread operation not valid: Control 'frmPour' accessed from a thread other than the thread it was created on.
    Both of these errors make sense to me, I just can't figure out how to make it work.
    First I have to declare the child window as a global variable as I need to access the window from a couple of the event handlers in the main form.
    Public frmMeasure As New frmPour
    When the user presses the button on the device to dispense the product, the event handler executes this code to open the child window.
    Private Sub StartPour(sAuthName As String, sAuthToken As String, iStatus As Integer) Handles Device.Pour
    Dim th As System.Threading.Thread = New Threading.Thread(AddressOf Me.OpenDispenseWindow)
    th.SetApartmentState(ApartmentState.STA)
    th.Start()
    End If
    End Sub
    Which executes this code:
    Public Sub OpenDispenseWindow()
    frmMeasure.sNameProperty = sCurrentUserName
    frmMeasure.sAuthTokenIDProperty = sUserToken
    Application.Run(frmMeasure)
    bAuthenticated = False
    bPouring = False
    dSessionVolume += GetTapConversion(sCurrentValve) * iFinalTick
    UpdateDisplayDelegate(iValveID)
    End Sub
    It doesn't matter if I use Me.Close() or Me.Hide(), both methods fail on the Application.Run(frmMeasure) line with the errors shown above. 
    For the Me.Close() method, my thinking is that the global frmMeasure object is getting disposed when I close the child window.  Is there any way that I can re-instantiate it when I go to display the window again?
    For the Me.Hide method, is there any way that I can track the thread that created it in the main window and when I go to call it a second time, detect that it is already available and just Show() it?
    Any hints, tips or suggestions are appreciated.
    Thanks.
    John
    John

    To be honest, I have only grasped < 100% of your message in detail, but...: Windows that have a parent<->child relation must be running in the same thread. In addition, after closing a modeless window, you must not use it anymore. Instead, create
    a new instance.
    What happens if you do not create a new thread but instead open the child in the same thread (which is obligatory)? You wrote it doesn't work, but I don't know why?
    "First I have to declare the child window as a global variable".
    How do you define "global"? Normally this is a variable in a Module declared with the scope Public or Friend. But I guess you mean a field of the Form (a variable at class level in the Form).
    "I need to be able to send messages from the main window to the child window so that the child window displays the volume."
    Why does the main window has to send the messages? Can't the child window handle the device's messages itself?
    "I need to run the child window using a separate thread as both windows need to be able to process commands."
    Process commands from the device, or commands from the user operating the Forms?
    Armin

  • Cannot open Forms in online or desktop application

    When I try to access my form either through the online interface or the Windows desktop application, the message "Loading Form File... " appears breifly (<5 seconds) and then the application freezes.  I saw a similar port earlier today and the Adobe staff replied asking for the form URL.  The URL for my form is:
    https://adobeformscentral.com/?f=wAUrf74fB112*CaqBwseMg
    This form is currently closed.
    Thank you for your help.

    Sorry you're having trouble. I've tweaked the form, so hopefully you should be able to open now. But let me know if you still seeing the problem.
    And we are in progress deploying the update to prevent this happening in the future.
    Thank you,
    Roman

  • Cannot open forms

    Hi, i am calling a form from my menu but when i select the called form, the form opens very, very briefly, probably less than half a second cause the menu of the called form briefly shows then it gets back to the original menu. Why is this happening? Please help. Thanks

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Deepak Rai, Oracle Support Services ([email protected]):
    Hi,
    Try replacing the sqllib18.dll file from the Oracle Developer Release 1.6.1 CD-ROM onto your PC:
    1. On your PC, note the location of the sqllib18.dll file.
    2. On the Oracle Developer Release 1.6.1 CD-ROM, locate the sqllib18.dll file in the following directory:
    \patches\1.6.1\patches\rsf73
    3. Replace the PC's sqllib18.dll file with a copy of the CD-ROM's version of the sqllib18.dll file.
    Best Regards,
    Deepak Rai<HR></BLOCKQUOTE>
    ==========================================
    Hi Deepak,
    Thanks a lot.
    It works now.
    Afrul
    null

  • Problems activating an adobe forms object / lifecycle designer

    Hi everybody,
    our developers are getting more and more problems when they try to activate an adobe forms object in SAP.
    When they click on the activate icon, SAP freezes – and after 3-4 minutes of waiting, SAP displays, that e.g. 105.570 bytes were transferred, but the document remains inactive.
    So by now they need about 5 attempts before it finally gets activated…this is very time consuming and frustrating.
    Does anybody know a solution to this problem?
    Any ideas?
    Thanks in advance
    Regards
    Martin

    Hi everybody,
    our developers are getting more and more problems when they try to activate an adobe forms object in SAP.
    When they click on the activate icon, SAP freezes – and after 3-4 minutes of waiting, SAP displays, that e.g. 105.570 bytes were transferred, but the document remains inactive.
    So by now they need about 5 attempts before it finally gets activated…this is very time consuming and frustrating.
    Does anybody know a solution to this problem?
    Any ideas?
    Thanks in advance
    Regards
    Martin

  • Editing A Form in SharePoint Designer 2010

    I am receiving an error message when I attempting to modify/edit a form in SharePoint Designer 2010:  "EDIT FORM1.asp and New Item Form 1.aspx.  When I attempt to  add a new column to the list in Designer receives error messages
    below.
    The default forms contains the following columns
    Log
    Task Number
    Customer 2
    Open Date
    Priority
    Status
    Task Name
    Executive Status Summary
    Reference Doc
    Spot Light
    Error Message
    ERROR Rendering- Quick Launch Navigation Manager
    ERROR Rendering- True View Manager Manager V4
    ERROR Rendering- IDNavLink recyle bin
    ERROR Rendering- ID NavLinkLInk View all/V4
    ERROR Rendering-Control0ID LINK title
    ERROR Rendering- Control ID Item Property
     Renee Wilson
    Renee W

    Hi Renee,
    No, you do not have to edit the form from the master page. Master pages do not have forms on them. They define the layout and look-n-feel of a Sharepoint Site.
    You said you are adding new column to the list in SPD. Why not in the site itself and then edit the form.?
    http://office.microsoft.com/en-001/sharepoint-designer-help/create-a-custom-list-form-using-sharepoint-designer-HA010378258.aspx
    Also, check if you master page is checked in and published. If there is content approval on it, it should be approved.
    Regards, Kapil ***Please mark answer as Helpful or Answered after consideration***

  • Opening forms in browsers

    I am only able to open the Adobe LifeCycle Designer ES2 forms in the Internet Explorer browser but not in the Mozilla Firefox or Chrome browsers. Why would something like that happen?  They used to work but for the past few months they haven't.

    Hi ShaeHamel,
    I was wondering what you mean by only being able to open a form in Internet Explorer. Are you saying you are able to open a rendered pdf form in internet explorer but not in Firefox and Chrome? If you wouldn't mind providing more information on how you are attempting this I will be able to help as I am having the opposite problem as you I am easily able to open a rendered PDF in firefox and Chrome but not in IE.
    Paul

  • I cannot open my photoshop elements 10. I get an error 400.

    I cannot open my photoshop elements 10 to edit pictures. I get a message saying that it cannot connect, error 400. I was using it last week no problem than I shut down my computer & tried to open photoshop the next day & the program wouldn't open. I've heard that this is the result of photoshop.com no longer existing. What can I do about this? There has to be a way that I can still edit my pictures. I've tried opening some .psd docs but they won't open. I tried chatting with adobe tech support & they said that they cannot help me because this is an older PSE program. Anyone know any way around this? Mahalo nui loa!
    On a side note: I can't figure out how to respond when someone comments on my forum questions. Anyone know what I'm doing wrong? I'm obviously not very tech savvy.

    I responded in your other thread. To reply to a post click the Reply button at its lower right to open up a place where you can type:

  • Cannot open iphoto library in Photoshop

    I have updated to ilife11 and now when i open Photoshop and try to import a picture from iphoto i can see the iphoto library in Pictures but it is not highlighted and i cannot open it. Can anyone help.

    edit: if you were using Bridge as a photo navigation tool, please disregard my previous comments that I have now removed as they are no longer relevant.
    Message was edited by: roam

  • Unable to run Oracle Form Builder from Designer 10g

    I am using Windows XP with Oracle Designer 9.0.4.5. From Design Editor, I select Run -> Oracle Forms, nothing happen. I am able to open Form Builder manually (C:\ORACLE\904\bin\ifbld90.exe). After I generated a module (form) from Designer, I have to open the FMB manually from Form Builder. In Designer 9i, I am able to open Form Builder from Designer. Is this a bug for Designer 10g?
    Thanks,
    Jim

    Thanks for the response, Suresh,
    I believe this is an installation/configuration issue.
    I installed Oracle Developer Suite 9.0.4, which includes Form Builder, Report Builder, and Designer. System Path contains the ORACLE_HOME (c:\oracle\904\bin). I am able to start Form Builder from DOS command (ifbld90.exe). I am also able to start Report Builder (rwbuilder.exe) and Designer (des2k61.exe) from DOS. I am able to Run Oracle Report Builder from Designer, but just not Form Builder. I also checked the Windows registry settings and they seem alright to me.
    thanks,
    Jim

  • Cannot open beta files in IDCS4 - VERY FRUSTRATED

    I just installed the full version of IDCS4 and receive the following error when trying to open files I created while part of the InDesign CS4 Beta test.
    Cannot open "document name"
    The document was edited by a pre-release version of InDesign.
    Is there ANY way to open these files in CS4? Or are these files complete garbage now?
    I created cross-references that will not hold if I export to CS3.inx

    If you were a an authorized member of the beta program you would have
    received directions on how to convert those files. If you weren't
    monitoring those announcements (which you certainly should have been)
    then contact your beta administrator.
    Bob

  • Cannot open jpeg in camera raw format

    In Elements 9 I have the option to "open as..." camera raw but the camera raw window does not open up when I pick the photo and choose that option.  Any help would be much appreciated!

    akarony2
    In accord with what has been written already in this thread, I suspect that you intended your question for Photoshop Elements and not Premiere Elements Forum since the Open As route to JPEG in the Camera Dialog is one of the features of the Photoshop Elements Full Editor.
    Just in case, I wanted to contribute the following thoughts on the use of Camera Raw in the "Elements" environment:
    1. Your camera supplying the raw images needs to be supported by the version of Camera Raw and that version needs to be supported by the Photoshop Elements version that you are using (two separate and needed thoughts).
    2. On the Premiere Elements side of things, you can import raw and dng images into Premiere Elements but you have to have an appropriate version of Camera Raw plugin installed for Premiere Elements. In earlier versions of Premiere Elements and Photoshop Elements, these programs did not share the same program files location for the Camera Raw Plugin. In more recent ones, they do.
    3. You cannot open the Camera Raw dialog for editing purposes (raw or otherwise) from Premiere Elements. The Camera Raw plugin in Photoshop Elements will get you the Camera Raw dialog for editing purposes.
    4. Also in later versions, one can now use an automatic process for updating Camera Raw to the latest version for your particular version of Premiere Elements. Best, use the program's Help Menu/Updates.
    Hope the information will be helpful.
    ATR

  • Crash opening form because of wrong trigger order

    Hello.
    Have you met somebody with this:
    User with privileges set on open form cannot open form.
    When user open form from menu...
    - first start up menu there set role command executed and all is OK.
    But in some cases trigger WHEN-CREATE-RECORD fired first
    and if there is select statement then trigger crashed becase set role didn't executed and user have not privileges to select.
    I must write statements for testing if WHEN-NEW-FORM-INSTANCE fired and don't execute select statements while WNFI ended up.
    <<<????>>>

    Scott,
    I assume that your PhaseListener doesn'tdistinguish between the actual navigation and the JSF postback that is issued to the same page. In your case I assume that the PhaseListener is invoked on postback and thus ADF Faces points to the "old pagedef" file.
    Frank

Maybe you are looking for