InfoPath form, rich text fields, "There was a form postback error" InvalidOperationException, There has been an error while processing the form

Using InfoPath 2013 browser enabled form.
I am getting the above error on ALL Infopath Designed Rich Text fields, where the "Cannot be blank" attribute is set.
To reproduce it, I create a custom list and custom list form with InfoPath 2013. I add 2 Rich Text fields and enable "cannot be blank". To raise the error, I put some data in the RT field. Skip to another field (so focus is changed and a postback
occurs), then back to original field to delete the contents (to raise the validation).
I originally thought it was associated with the HTMLCHKR.DLL not being registered (and I have re-registered it just in case), but the exception I get from the ULS logs reads (it is from a list AFTER I have re-registered the DLL):
There was a form postback error. (User: 0#.w|myDomain\jc, Form Name: Template, IP: , Request: h t t p ://MyWebApp/MySite/Lists/rtAfterHtmlCHkrReg/Item/newifs.aspx?List=2212ff41-77b4-445b-931b-d7e538c9da91&Source=h t t p://MyWebApp/MySite/Lists/rtAfterHtmlCHkrReg/AllItems.aspx&RootFolder=&Web=3db49106-bdca-47bb-b4cd-a549d2d86aa7,
Form ID: urn:schemas-microsoft-com:office:infopath:list:-AutoGen-2015-01-16T21:51:48:853Z, Type: InvalidOperationException, Exception Message: No content generated as the result of the operation.) 8cc5e09c-3665-903b-575a-faaac506c40a
I noticed that errors associated with the HTMLCHKR.DLL not being registered would have some sort of COM exception (example: TYPE_E_LIBNOTREGISTERED or REGDB_E_CLASSNOTREG)
I also should mention that this problem started happening about 3 weeks ago. We have extended the web application to handle HTTPS on the intranet zone (we had a reverse proxy project that did not eventuate) - would that cause something? How can I do further
checking?

Hi,
I have done a test in my SharePoint, and I met the same issue with you.
I created a custom list and custom list form with InfoPath 2013. I added 2 Rich Text fields and enabled "cannot be blank".  I put some content in the RT field, then delete the contents, I got the error message:"there has been an
error while processing the form."
Here is a similar post said that executing the command: regsvr32 "C:\Program Files\Common Files\Microsoft Shared\
OFFICE14\htmlchkr.dll" will solve the issue.
https://social.msdn.microsoft.com/Forums/en-US/eb2e0f6e-c8e4-4e92-ac5e-a09d72759eda/rich-text-field-error-in-webform?forum=sharepointcustomizationprevious
But I just disabled "cannot be blank", and it solved the issue.
Best Regards,
Lisa Chen
Lisa Chen
TechNet Community Support

Similar Messages

  • Is there a way that you can have two different text fields (email, phone) that one at least one of them must be completed before submitting the form? Can it be done using javascript in the validation tab? if so, how?

    Is there a way that you can have two different text fields (email, phone) that one at least one of them must be completed before submitting the form? Can it be done using javascript in the validation tab? if so, how?

    Here is one solution:
    // mouse up action for submit button;
    function GetField(cName) {
    // get field object for cName field with error checking;
    var oField = this.getField(cName);
    if(oField == null) app.alert("Error accessing field named " + cName + "\nPleae verigy field name, spelling and capitalizeation.", 1, 0);
    return oField;
    } // end GetField function;
    var oPhone = GetField("phone");
    oPhone.required = oPhone.value == oPhone.defaultValue;
    var oEmail = GetField("email");
    oEmail.required = oEmail.value == oEmail.defaultValue;
    if(oPhone.required && oEmail.required) {
    app.alert("Missing required fields.", 1, 0);
    } else {
    app.alert("Submitting form", 3, 0);
    // additional code for submission;

  • Error: var g_objCurrentFormData_Error : There has been an error while processing the form

    Hi,.
    I have a InfoPath 2010 form which was published to SharePoint 2010.  I migrated the content db to SQL Server 2012 and I have converted the Sharepoint 2010 (windows based) to the SharePoint 2013 claims based site. I have not fully upgraded the site to
    2013 version (Version upgrade to SP 2013) is not done..
    In the InfoPath 2010 form, which is available in SP 2013. I have a button and on click of it, i have the below code:
    XPathNavigator domNav = MainDataSource.CreateNavigator();
    XPathNavigator fldUserurl = domNav.SelectSingleNode("/my:myFields/my:TaskUrl", this.NamespaceManager);
    if (!string.IsNullOrEmpty(fldUserurl.Value))
    string urlToDecode = HttpUtility.UrlDecode(fldUserurl .Value);
    HttpContext.Current.Response.Write("<script type='text/javascript'>window.open('" + urlToDecode + "','_self','left=20,top=20,width=500,height=500,toolbar=1,resizable=0');</script>");
    HttpContext.Current.Response.Flush();
    HttpContext.Current.Response.End();
    The above code works fine in SharePoint 2010, however after moving the Site to SP 2013 Claims mode, I am getting the error as
    "var g_objCurrentFormData_Error = [[[12,"There has been an error while processing the form.","","","guid"]],[],0,"","",1033,"","",["0","","","","","",0,0,"",0,false],"","0",false,"",0,"","http:\u002f\u002ftest-t1.com\u002fs\u002fTestApplication","ltr","http:\u002f\u002ftest-t1.com\u002fs\u002fTestApplication",6.35202885373882E+17"
    In the SP Logs, i found the below:
    Unhandled exception processing request for PostbackPage Microsoft.Office.InfoPath.Server.Util.InfoPathFatalException: Exception of type 'Microsoft.Office.InfoPath.Server.Util.InfoPathFatalException' was thrown.   
     at Microsoft.Office.InfoPath.Server.Util.GlobalStorage.get_CurrentFormId()   
     at Microsoft.Office.InfoPath.Server.Util.GlobalStorage.get_CurrentContext()   
    How to fix this?
    Thanks

    Hi Venkatzeus,
    please let us know your sharepoint 2013 latest cumulative update, if possible please make sure it is March 2013 update or above.
    as i know, between 2010 infopath and 2013 there are difference, perhaps if you can debug your form it may help.
    most probably there are environment settings difference between 2010 sharepoint and 2013 sharepoint. such as the data connection size/length, that causing it failed, or the form data is NULL.
    http://infopathdebugger.codeplex.com/
    http://www.infopathdev.com/forums/t/26330.aspx
    http://social.technet.microsoft.com/Forums/en-US/5c9d2fce-0fd8-439c-a636-bf856eb76e15/how-to-retrieve-term-store-management-values?forum=sharepointgeneralprevious
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Execption has been thrown during painting of the form

    I am trying to use one open source JTable with itunes look.
    Link: http://www.laurendempster.com/2007/02/06/itunes-style-jtable/
    But i got exception then i try to add it in the JFrame.. I use NetBeans and have added the JAR file to the palette list so i can drag and drop it into my JFrame.. But when i drag and drop it into my frame i can only see text in my jframe wish contains.
    the following execption has been thrown during painting of the form. Use Inspector to fix or remove the problem.
    java.lang.NullPointException
    at.ui.jtunestabe.JTunesTableCellRenderer.getTableCellRendererComponent(Unknown Source)
    at javax.swing.JTable.preperRenderer(JTable.java:5683)
    Duke dollar too the guy how explain and help me fix the problem
    i am confused..

    Ok, thank you very much for your sacrifice.. i will give you some duke dollars for the try... but not all 10 because it still not working..
    now i have try to remove all columns and rows with null values and the exception text did disappeared in my jframe...
    Now i try to add the tableModel in run-time with following code:
    String[] columnNames = { "test1", "test2", "test3","test4"};
                    String[][] data = {
                        { "QQ", "QQ", "QQ","Q" },
                        { "QQ", "QQ", "QQ","Q" },
                        { "QQ", "QQ", "QQ","Q"},
                                    { "QQ", "QQ", "QQ","Q"},
    DefaultTableModel model = new DefaultTableModel(data, columnNames);
    public NewJFrame() {           // constructor
            initComponents();
            jTunesTable1.setModel(model);
        }So now i don�t have any cell with null value.. correct?
    but i get this exception:
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    at ui.jtunestable.JTunesHeaderRenderer.getTableCellRendererComponent(Unknown Source)
    at javax.swing.plaf.basic.BasicTableHeaderUI.getHeaderRenderer(BasicTableHeaderUI.java:657)
    at javax.swing.plaf.basic.BasicTableHeaderUI.getHeaderHeight(BasicTableHeaderUI.java:692)
    at javax.swing.plaf.basic.BasicTableHeaderUI.createHeaderSize(BasicTableHeaderUI.java:721)
    at javax.swing.plaf.basic.BasicTableHeaderUI.getPreferredSize(BasicTableHeaderUI.java:752)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:1627)
    at javax.swing.ViewportLayout.preferredLayoutSize(ViewportLayout.java:78)
    at java.awt.Container.preferredSize(Container.java:1616)
    at java.awt.Container.getPreferredSize(Container.java:1601)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:1629)
    at javax.swing.ScrollPaneLayout.layoutContainer(ScrollPaneLayout.java:702)
    at java.awt.Container.layout(Container.java:1432)
    at java.awt.Container.doLayout(Container.java:1421)
    at java.awt.Container.validateTree(Container.java:1519)
    at java.awt.Container.validateTree(Container.java:1526)
    at java.awt.Container.validateTree(Container.java:1526)
    at java.awt.Container.validateTree(Container.java:1526)
    at java.awt.Container.validateTree(Container.java:1526)
    at java.awt.Container.validate(Container.java:1491)
    at java.awt.Window.show(Window.java:820)
    at java.awt.Component.show(Component.java:1419)
    at java.awt.Component.setVisible(Component.java:1372)
    at java.awt.Window.setVisible(Window.java:801)
    at javaapplication69.NewJFrame$2.run(NewJFrame.java:116)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    at ui.jtunestable.JTunesHeaderRenderer.getTableCellRendererComponent(Unknown Source)
    at javax.swing.plaf.basic.BasicTableHeaderUI.getHeaderRenderer(BasicTableHeaderUI.java:657)
    at javax.swing.plaf.basic.BasicTableHeaderUI.getHeaderHeight(BasicTableHeaderUI.java:692)
    at javax.swing.plaf.basic.BasicTableHeaderUI.createHeaderSize(BasicTableHeaderUI.java:721)
    at javax.swing.plaf.basic.BasicTableHeaderUI.getPreferredSize(BasicTableHeaderUI.java:752)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:1627)
    at javax.swing.ViewportLayout.preferredLayoutSize(ViewportLayout.java:78)
    at java.awt.Container.preferredSize(Container.java:1616)
    at java.awt.Container.getPreferredSize(Container.java:1601)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:1629)
    at javax.swing.ScrollPaneLayout.layoutContainer(ScrollPaneLayout.java:702)
    at java.awt.Container.layout(Container.java:1432)
    at java.awt.Container.doLayout(Container.java:1421)
    at java.awt.Container.validateTree(Container.java:1519)
    at java.awt.Container.validateTree(Container.java:1526)
    at java.awt.Container.validateTree(Container.java:1526)
    at java.awt.Container.validateTree(Container.java:1526)
    at java.awt.Container.validateTree(Container.java:1526)
    at java.awt.Container.validate(Container.java:1491)
    at java.awt.Window.dispatchEventImpl(Window.java:2427)
    at java.awt.Component.dispatchEvent(Component.java:4240)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)

  • Error while determining the form function module

    Hi everyone,
    We are experiencing problems while displaying one adobe form in ESS. It’s the Travel Expense form (PTRV_EXPENSE_FORM). When pressing the button to “Display/Print” the form we get an error message: "Error while determining the form function module", and no form I shown. The ADS server is configured correctly and there are other forms that are actually working, for example the Travel Request form. We are running WAS 7.0 with SP12.
    Anyone has an idea what can cause the problem? Any help is greatly appreciated.
    Thanks in advance!
    Regards,
    Sophie

    Viktor,
    Thank you for your answer, it solved our problem!
    Regards,
    Sophie

  • While running the form-showing JRE error

    Hi,
    here i mentioned below ,what error i am getting it..
    While running the form some notepad files created automatically its showed some error..
    Error -1
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0b7a7fd3, pid=6736, tid=5888
    # Java VM: Java HotSpot(TM) Client VM (11.3-b02 mixed mode windows-x86)
    # Problematic frame:
    # V [jvm.dll+0x57fd3]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x16a84400): JavaThread "Thread-7" [_thread_in_native, id=5888, stack(0x049d0000,0x04bd0000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0xfffffffc
    Registers:
    EAX=0x00000000, EBX=0x00000000, ECX=0x00000000, EDX=0x04bcd09c
    ESP=0x04bcd068, EBP=0x00000000, ESI=0x04bcd09c, EDI=0x00000400
    EIP=0x0b7a7fd3, EFLAGS=0x00010246
    Top of Stack: (sp=0x04bcd068)
    0x04bcd068: 04bcd09c 0b7a87a6 00000000 00000000
    0x04bcd078: 00000000 0b81d855 04bcd09c 16bb5c24
    0x04bcd088: 16bb5c24 04bcd408 04bcd348 000002ba
    0x04bcd098: 00000000 00000000 00000001 00000000
    0x04bcd0a8: 00000000 00000000 00000000 ffffffff
    0x04bcd0b8: 75966ce9 75966d91 00040000 09db66e0
    0x04bcd0c8: 09dbac00 09dbac08 09dbaff4 00000400
    0x04bcd0d8: 09dba828 0d9f1b80 0d9f1b98 0d9f1c28
    Instructions: (pc=0x0b7a7fd3)
    0x0b7a7fc3: 04 56 8b f1 8b 4c 24 0c 89 06 89 46 14 89 4e 10
    0x0b7a7fd3: 8b 40 fc 50 89 46 04 e8 91 09 02 00 83 c4 04 85
    Stack: [0x049d0000,0x04bd0000], sp=0x04bcd068, free space=2036k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x57fd3]
    [error occurred during error reporting (printing native stack), id 0xc0000005]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x16a86000 JavaThread "Flush Queue" [_thread_blocked, id=1184, stack(0x20d60000,0x20e60000)]
    0x16a87000 JavaThread "Busy indicator" daemon [_thread_blocked, id=4152, stack(0x20c30000,0x20d30000)]
    0x16a80400 JavaThread "HeartBeat" [_thread_blocked, id=6308, stack(0x20b00000,0x20c00000)]
    0x16a85c00 JavaThread "Forms-StreamMessageWriter" [_thread_blocked, id=5536, stack(0x1fbb0000,0x1fcb0000)]
    0x16a86c00 JavaThread "Forms-StreamMessageReader" [_thread_blocked, id=6064, stack(0x20890000,0x20990000)]
    0x16a83400 JavaThread "thread applet-oracle.forms.engine.Main" [_thread_blocked, id=5580, stack(0x20210000,0x20310000)]
    0x16a87800 JavaThread "Thread-16" [_thread_in_vm, id=3300, stack(0x1c4e0000,0x1c6e0000)]
    0x16a81c00 JavaThread "AutoScroller" [_thread_blocked, id=2568, stack(0x1bbd0000,0x1bcd0000)]
    0x16a80000 JavaThread "TaskScheduler timer" [_thread_blocked, id=2820, stack(0x1b790000,0x1b890000)]
    0x16a85000 JavaThread "Flush Queue" [_thread_blocked, id=5776, stack(0x1baa0000,0x1bba0000)]
    0x16a82800 JavaThread "CursorIdler" [_thread_blocked, id=4172, stack(0x0b070000,0x0b170000)]
    0x16a80800 JavaThread "Busy indicator" daemon [_thread_blocked, id=2832, stack(0x1b140000,0x1b240000)]
    0x16a83c00 JavaThread "HeartBeat" [_thread_blocked, id=6744, stack(0x099d0000,0x09ad0000)]
    0x16a82c00 JavaThread "Forms-StreamMessageWriter" [_thread_blocked, id=6528, stack(0x1b540000,0x1b640000)]
    0x16a84800 JavaThread "Forms-StreamMessageReader" [_thread_blocked, id=3628, stack(0x19db0000,0x19eb0000)]
    0x16a83800 JavaThread "thread applet-oracle.forms.engine.Main" [_thread_blocked, id=4224, stack(0x19f00000,0x1a000000)]
    0x16a85400 JavaThread "SunToolkit.PostEventQueue-5" [_thread_blocked, id=6892, stack(0x091c0000,0x092c0000)]
    0x16a82000 JavaThread "AWT-EventQueue-5" [_thread_blocked, id=6088, stack(0x09330000,0x09430000)]
    =>0x16a84400 JavaThread "Thread-7" [_thread_in_native, id=5888, stack(0x049d0000,0x04bd0000)]
    0x16a81400 JavaThread "Screen Updater" [_thread_blocked, id=3912, stack(0x1a010000,0x1a110000)]
    0x16a5ac00 JavaThread "TimerQueue" daemon [_thread_blocked, id=1088, stack(0x198f0000,0x199f0000)]
    0x16a51800 JavaThread "JAR Cache Cleanup Thread" [_thread_blocked, id=5472, stack(0x19340000,0x19440000)]
    0x16a46000 JavaThread "Thread-2" [_thread_blocked, id=4932, stack(0x190e0000,0x191e0000)]
    0x16a43800 JavaThread "Thread-1" [_thread_blocked, id=3044, stack(0x181c0000,0x182c0000)]
    0x0a2cb400 JavaThread "Main Console Writer" [_thread_blocked, id=6304, stack(0x18ed0000,0x18fd0000)]
    0x0a2ca000 JavaThread "AWT-Windows" [_thread_in_native, id=5232, stack(0x18080000,0x18180000)]
    0x0a2c9c00 JavaThread "SunToolkit.PostEventQueue-1" [_thread_blocked, id=5912, stack(0x17e00000,0x17f00000)]
    0x0a2c9400 JavaThread "AWT-EventQueue-1" [_thread_blocked, id=6348, stack(0x17bc0000,0x17cc0000)]
    0x0a298800 JavaThread "SunToolkit.PostEventQueue-0" [_thread_blocked, id=5704, stack(0x16d00000,0x16e00000)]
    0x0a298000 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=5464, stack(0x16650000,0x16750000)]
    0x0a24b000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=6856, stack(0x15ea0000,0x15fa0000)]
    0x0a246400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=6852, stack(0x163e0000,0x164e0000)]
    0x0a245800 JavaThread "Attach Listener" daemon [_thread_blocked, id=6804, stack(0x161d0000,0x162d0000)]
    0x0a23b000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=6656, stack(0x16010000,0x16110000)]
    0x0a232800 JavaThread "Finalizer" daemon [_thread_blocked, id=6680, stack(0x15c60000,0x15d60000)]
    0x0a22e000 JavaThread "Reference Handler" daemon [_thread_blocked, id=6676, stack(0x15d80000,0x15e80000)]
    Other Threads:
    0x0a22c000 VMThread [stack: 0x15ab0000,0x15bb0000] [id=6672]
    0x0a24dc00 WatcherThread [stack: 0x16550000,0x16650000] [id=6860]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 1152K, used 328K [0x0d9b0000, 0x0dae0000, 0x0de90000)
    eden space 1088K, 24% used [0x0d9b0000, 0x0d9f2398, 0x0dac0000)
    from space 64K, 100% used [0x0dac0000, 0x0dad0000, 0x0dad0000)
    to space 64K, 0% used [0x0dad0000, 0x0dad0000, 0x0dae0000)
    tenured generation total 12568K, used 8057K [0x0de90000, 0x0ead6000, 0x119b0000)
    the space 12568K, 64% used [0x0de90000, 0x0e66e7c8, 0x0e66e800, 0x0ead6000)
    compacting perm gen total 12288K, used 9180K [0x119b0000, 0x125b0000, 0x159b0000)
    the space 12288K, 74% used [0x119b0000, 0x122a7278, 0x122a7400, 0x125b0000)
    No shared spaces configured.
    Dynamic libraries:
    0x012f0000 - 0x013a8000      C:\Program Files (x86)\Internet Explorer\iexplore.exe
    0x77e00000 - 0x77f80000      C:\Windows\SysWOW64\ntdll.dll
    0x76980000 - 0x76a90000      C:\Windows\syswow64\kernel32.dll
    0x76b10000 - 0x76b56000      C:\Windows\syswow64\KERNELBASE.dll
    0x758b0000 - 0x75950000      C:\Windows\syswow64\ADVAPI32.dll
    0x75b40000 - 0x75bec000      C:\Windows\syswow64\msvcrt.dll
    0x76ec0000 - 0x76ed9000      C:\Windows\SysWOW64\sechost.dll
    0x770d0000 - 0x771c0000      C:\Windows\syswow64\RPCRT4.dll
    0x754e0000 - 0x75540000      C:\Windows\syswow64\SspiCli.dll
    0x754d0000 - 0x754dc000      C:\Windows\syswow64\CRYPTBASE.dll
    0x75950000 - 0x75a50000      C:\Windows\syswow64\USER32.dll
    0x77450000 - 0x774e0000      C:\Windows\syswow64\GDI32.dll
    0x756d0000 - 0x756da000      C:\Windows\syswow64\LPK.dll
    0x77030000 - 0x770cd000      C:\Windows\syswow64\USP10.dll
    0x76e60000 - 0x76eb7000      C:\Windows\syswow64\SHLWAPI.dll
    0x75d30000 - 0x7697a000      C:\Windows\syswow64\SHELL32.dll
    0x76d00000 - 0x76e5c000      C:\Windows\syswow64\ole32.dll
    0x75560000 - 0x75671000      C:\Windows\syswow64\urlmon.dll
    0x756e0000 - 0x7576f000      C:\Windows\syswow64\OLEAUT32.dll
    0x771c0000 - 0x77378000      C:\Windows\syswow64\iertutil.dll
    0x75c10000 - 0x75d2b000      C:\Windows\syswow64\WININET.dll
    0x77dd0000 - 0x77dd3000      C:\Windows\syswow64\Normaliz.dll
    0x75770000 - 0x757d0000      C:\Windows\system32\IMM32.DLL
    0x77380000 - 0x7744c000      C:\Windows\syswow64\MSCTF.dll
    0x6c5a0000 - 0x6cee6000      C:\Windows\system32\IEFRAME.dll
    0x75550000 - 0x75555000      C:\Windows\syswow64\PSAPI.DLL
    0x6dbc0000 - 0x6dbfc000      C:\Windows\system32\OLEACC.dll
    0x71710000 - 0x718ae000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll
    0x76a90000 - 0x76b0b000      C:\Windows\syswow64\comdlg32.dll
    0x6b640000 - 0x6b671000      C:\Program Files (x86)\Internet Explorer\IEShims.dll
    0x73070000 - 0x730f0000      C:\Windows\system32\uxtheme.dll
    0x73870000 - 0x73878000      C:\Windows\system32\Secur32.dll
    0x73c60000 - 0x73c6b000      C:\Windows\system32\profapi.dll
    0x757d0000 - 0x75805000      C:\Windows\syswow64\WS2_32.dll
    0x75540000 - 0x75546000      C:\Windows\syswow64\NSI.dll
    0x73720000 - 0x73764000      C:\Windows\system32\dnsapi.DLL
    0x736c0000 - 0x736dc000      C:\Windows\system32\iphlpapi.DLL
    0x736b0000 - 0x736b7000      C:\Windows\system32\WINNSI.DLL
    0x73c70000 - 0x73c7e000      C:\Windows\system32\RpcRtRemote.dll
    0x70230000 - 0x70243000      C:\Windows\system32\dwmapi.dll
    0x6cef0000 - 0x6daab000      C:\Windows\system32\MSHTML.dll
    0x73d40000 - 0x73d49000      C:\Windows\system32\VERSION.dll
    0x76b60000 - 0x76cfd000      C:\Windows\syswow64\setupapi.dll
    0x75a50000 - 0x75a77000      C:\Windows\syswow64\CFGMGR32.dll
    0x75bf0000 - 0x75c02000      C:\Windows\syswow64\DEVOBJ.dll
    0x6c0a0000 - 0x6c15a000      C:\Windows\system32\d2d1.dll
    0x6ff30000 - 0x7003b000      C:\Windows\system32\DWrite.dll
    0x6c010000 - 0x6c093000      C:\Windows\system32\dxgi.dll
    0x75a80000 - 0x75aad000      C:\Windows\syswow64\WINTRUST.dll
    0x76ee0000 - 0x76ffd000      C:\Windows\syswow64\CRYPT32.dll
    0x75810000 - 0x7581c000      C:\Windows\syswow64\MSASN1.dll
    0x6bfe0000 - 0x6c00c000      C:\Windows\system32\d3d10_1.dll
    0x6bfa0000 - 0x6bfda000      C:\Windows\system32\d3d10_1core.dll
    0x73cc0000 - 0x73cd6000      C:\Windows\system32\CRYPTSP.dll
    0x73c80000 - 0x73cbb000      C:\Windows\system32\rsaenh.dll
    0x75820000 - 0x758a3000      C:\Windows\syswow64\CLBCatQ.DLL
    0x6bf30000 - 0x6bf62000      C:\Program Files (x86)\Internet Explorer\ieproxy.dll
    0x73cf0000 - 0x73d3c000      C:\Windows\system32\apphelp.dll
    0x6db60000 - 0x6db8e000      C:\Windows\system32\MLANG.dll
    0x72910000 - 0x72931000      C:\Windows\system32\ntmarta.dll
    0x75680000 - 0x756c5000      C:\Windows\syswow64\WLDAP32.dll
    0x716b0000 - 0x71702000      C:\Windows\system32\RASAPI32.dll
    0x728f0000 - 0x72905000      C:\Windows\system32\rasman.dll
    0x73d60000 - 0x73d6d000      C:\Windows\system32\rtutils.dll
    0x737a0000 - 0x737a6000      C:\Windows\system32\sensapi.dll
    0x73a70000 - 0x73aac000      C:\Windows\system32\mswsock.dll
    0x73a60000 - 0x73a65000      C:\Windows\System32\wshtcpip.dll
    0x738b0000 - 0x738c0000      C:\Windows\system32\NLAapi.dll
    0x6de50000 - 0x6deaf000      C:\Windows\system32\SXS.DLL
    0x701c0000 - 0x701c7000      C:\Windows\system32\msiltcfg.dll
    0x6f290000 - 0x6f4d0000      C:\Windows\system32\msi.dll
    0x73660000 - 0x73666000      C:\Windows\system32\rasadhlp.dll
    0x73c50000 - 0x73c53000      C:\Windows\SysWOW64\SFC.DLL
    0x73ac0000 - 0x73acd000      C:\Windows\system32\sfc_os.DLL
    0x658b0000 - 0x65a6b000      C:\Windows\SysWOW64\jscript9.dll
    0x6dbb0000 - 0x6dbbb000      C:\Windows\system32\msimtf.dll
    0x6be40000 - 0x6be6b000      C:\Windows\system32\msls31.dll
    0x6c460000 - 0x6c555000      C:\Windows\system32\PROPSYS.dll
    0x6bd30000 - 0x6be32000      C:\Windows\system32\d3d10.dll
    0x6bcf0000 - 0x6bd23000      C:\Windows\system32\d3d10core.dll
    0x728e0000 - 0x728e6000      C:\Windows\System32\wship6.dll
    0x736e0000 - 0x73707000      C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live\WLIDNSP.DLL
    0x6bbf0000 - 0x6bceb000      C:\Windows\system32\windowscodecs.dll
    0x73670000 - 0x736a8000      C:\Windows\System32\fwpuclnt.dll
    0x02970000 - 0x0297d000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\npjinit13122.dll
    0x089c0000 - 0x089eb000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\beans.ocx
    0x73960000 - 0x73967000      C:\Windows\system32\wsock32.dll
    0x73890000 - 0x738a0000      C:\Windows\system32\napinsp.dll
    0x73780000 - 0x73792000      C:\Windows\system32\pnrpnsp.dll
    0x73710000 - 0x73718000      C:\Windows\System32\winrnr.dll
    0x08b40000 - 0x08b56000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\jpishare.dll
    0x0b750000 - 0x0b9a6000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\hotspot\jvm.dll
    0x73ad0000 - 0x73b02000      C:\Windows\system32\WINMM.dll
    0x7c340000 - 0x7c396000      C:\Windows\system32\MSVCR71.dll
    0x08af0000 - 0x08af7000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\hpi.dll
    0x08c70000 - 0x08c7d000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\verify.dll
    0x08f20000 - 0x08f38000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\java.dll
    0x08f40000 - 0x08f4d000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\zip.dll
    0x162d0000 - 0x163db000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\awt.dll
    0x732b0000 - 0x73301000      C:\Windows\system32\WINSPOOL.DRV
    0x09560000 - 0x0959c000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\fontmanager.dll
    0x6b130000 - 0x6b1f8000      C:\Windows\system32\OPENGL32.DLL
    0x6b100000 - 0x6b122000      C:\Windows\system32\GLU32.dll
    0x6fc20000 - 0x6fd07000      C:\Windows\system32\DDRAW.dll
    0x70210000 - 0x70216000      C:\Windows\system32\DCIMAN32.dll
    0x16e00000 - 0x17b61000      C:\Windows\system32\ig4icd32.dll
    0x09080000 - 0x09088000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\net.dll
    0x18e30000 - 0x18ec4000      C:\Windows\system32\igdumdx32.dll
    0x1a110000 - 0x1a72d000      C:\Windows\system32\igdumd32.dll
    0x6b9b0000 - 0x6b9d5000      C:\Windows\system32\PowrProf.dll
    0x095a0000 - 0x095aa000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\packager.dll
    0x09cb0000 - 0x09ccb000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\jpeg.dll
    0x69d90000 - 0x6a9a5000      C:\Windows\system32\igd10umd32.dll
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~2\Oracle\JINITI~1.22\lib\jaws.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\plugprov.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\sunrsasign.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\javax-ssl-1_2.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\jssl-1_2.jar -Xmx64m -Djavaplugin.maxHeapSize=64m -Xverify:remote -Djavaplugin.version=1.3.1.22 -Djavaplugin.nodotversion=13122 -DtrustProxy=true -Dapplication.home=C:\PROGRA~2\Oracle\JINITI~1.22 -Djava.protocol.handler.pkgs=sun.plugin.protocol.jdk12 -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~2\Oracle\JINITI~1.22\lib\applet. -Xbootclasspath/a:C:\PROGRA~2\Oracle\JINITI~1.22\lib\jaws.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\plugprov.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\sunrsasign.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\javax-ssl-1_2.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\jssl-1_2.jar -Xmx64m -Djavaplugin.maxHeapSize=64m -Xverify:remote -Djavaplugin.version=1.3.1.22 -Djavaplugin.nodotversion=13122 -DtrustProxy=true -Dapplication.home=C:\PROGRA~2\Oracle\JINITI~1.22 -Djava.protocol.handler.pkgs=sun.plugin.protocol.jdk12
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    PATH=C:\PROGRA~2\Oracle\JINITI~1.22\bin;C:\PROGRA~2\Oracle\JINITI~1.22\jre\bin;E:\DevSuiteHome_1\jdk\jre\bin\classic;E:\DevSuiteHome_1\jdk\jre\bin;E:\DevSuiteHome_1\jdk\jre\bin\client;E:\DevSuiteHome_1\jlib;E:\DevSuiteHome_1\bin;E:\DevSuiteHome_1\jre\1.4.2\bin\client;E:\DevSuiteHome_1\jre\1.4.2\bin;E:\oracle\product\10.2.0\db_1\bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files\Java\jdk1.6.0_30\jre\bin;;.
    USERNAME=free
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows NT 6.1 Build 7601 Service Pack 1
    CPU:total 4 (8 cores per cpu, 2 threads per core) family 6 model 10 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, ht
    Memory: 4k page, physical 4039108k(2166368k free), swap 4194303k(849928k free)
    vm_info: Java HotSpot(TM) Client VM (11.3-b02) for windows-x86 JRE (1.6.0_13-b03), built on Mar 9 2009 01:15:24 by "java_re" with MS VC++ 7.1
    time: Thu Mar 29 12:31:33 2012
    elapsed time: 4055 seconds
    Error-2
    # An unexpected error has been detected by Java Runtime Environment:
    # Internal Error (safepoint.cpp:583), pid=3512, tid=4932
    # Error: Illegal threadstate encountered: 4
    # Java VM: Java HotSpot(TM) Client VM (11.3-b02 mixed mode windows-x86)
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x16788400): JavaThread "Thread-6" [_thread_in_native, id=4932, stack(0x1d7d0000,0x1d9d0000)]
    Stack: [0x1d7d0000,0x1d9d0000]

    you form is running in the browser with the help of Jinitiator which is nothing but A JavaInitiator.
    as your machine files located in the System32 folder of your windows directory as .DLL. are not able to communicate with the Jinitiator DLL Files being used
    for the JRE.
    The Form is sending the request to the internet explorer to run the object of applet ttype which is nothing but the Oracle Java Applet named as OC4J(Oracle Container for Java)
    if your form is running or trying to run and hangged due to some problems and your machine got abnormal shutdown then at that time the DLL fiels communicating each other may got corrupt
    due to any abmormal shutdown of your machine...
    the problem is there with the Java Side...
    There is no solution other then reloading the JRE and Jinitiator as per the error being thrown by your machine

  • Unable to read the libraries while running the form

    Hi,
    I have a problem while I run my forms9i application.
    I had to change the default path of the libraries for my forms9i.
    I have set the libraries path as c:\9iLibraries in the registry under forms90_path. Also I set the "Start in" Property in the properties of the forms9i builder to c:\9iLibraries.
    With the above settings I am not getting errors at the design time.. but when I run the form it gives me errors saying "frm-40039 cannot attach library while opening the form"
    Then, I set the parameter in the default.env file
    as
    forms90_path=c:\9iLibraries
    But still I continue to get the error.
    Thanks in advance
    Narain

    Thanks for the reply.
    I had set the parameter in the default.env file which was by default commented as
    # FORMS90_PATH=C:\Oracle9iDev/forms90
    to
    FORMS90_PATH=C:\Oracle9iDev/forms90;C:\Libraries9i
    But still I am getting the error
    Also can you please tell me the setting or syntax to set in the formsweb.cfg
    Thanks again
    Sheba

  • Rich text fields, field locking, and form saving/re-opening

    I have a LiveCycle form that has 2 text fields (email and info) and a button. When the button is pressed, the 2 text fields are set readonly and the button is set hidden. A rich text field is populated to provide a mailto link using the email and info text fields:
    form1.firstpage.HyperlinkSF.rtField.value.exData.loadXML(sRichText, false, true);
    This appears to work fine, but when I save the form and re-open it, the readonly fields are now editable and the button has re-appeared. If I remove the functionality associated with the rich text hyperlink, the form correctly re-opens with the readonly fields set readonly and the button is not visible.
    Any idea why populating a rich text field is affecting the form state on saving/re-opening?

    Thank you Bruce for your very helpful links.
    I see that I had incorrectly formed the rich text body tag. I had omitted:
    xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"
    I had also been unable to get the &body= of the mailto working, and see that I should have had &amp; as in:
    var sURL = "mailto:" + sTo + "?subject=" + sSubject + "\&amp;body=" + sBody;
    All appears to work as expected. Great links. Thanks!
    Robin

  • MS SharePoint 2010 Designer Workflow Email - Enhanced Rich Text Field look-up values on HTML email have large spaces

    MS InfoPath 2010 form with RTF (Rich Text Fields)
    MS SharePoint 2010 Custom Library
    MS SharePoint 2010 Designer Workflow Send Email
    http://office.microsoft.com/en-us/sharepoint-designer-help/send-e-mail-in-a-workflow-HA010239042.aspx
    https://www.nothingbutsharepoint.com/sites/eusp/pages/creating-html-emails-with-spd-workflows.aspx
    Hi all of the above work, our question is how to control the RTF (Rich Text Field) look up values to the InfoPath 2010 form in the HTML email?
    How to FORMAT the RTF look up value? in the HTML email
    EXAMPLE
    we have a InfoPath 2010 form published in the SharePoint 2010 custom list library there are 5 RTF fields (Notes1, Notes2, Notes3, Notes4, Notes5) there are other plain text fields, date fields, and other field types in the form
    We use a HTML table to make the email look like the InfoPath form, so when the users fill out the form and they get the email notification everything looks the same.
    Our problem is the EXTRA LINE SPACE in the RTF look up values
    We want to remove any leading spaces, and line spaces between HTML table cells
    Our Workflow has the HTML in a Workflow variable, as you know it does not support remote CSS it has to be in-line style for any formatting we want all cells to have
    valign="top" the email should align at the top of the cell, all field types do except the RTF look up values they make the email look bad and they contain a lot of white space.
    Please test this in your enviroment 
    <table>
    <tr><td>Title:</td><td>[%Current Item:Title%]</td><td>[%Current Item:Notes1%]</td></tr>
    <tr><td>Created by:</td><td>[%Current Item:CreatedBy%]</td><td>[%Current Item:Notes2%]</td></tr>
    <tr><td>Date Created:</td><td>[%Current Item:Created%]</td><td>[%Current Item:Notes3%]</td></tr>
    <tr><td>Modified by:</td><td>[%Current Item:ModifiedBy%]</td><td>[%Current Item:Notes4%]</td></tr>
    <tr><td>Date Modified:</td><td>[%Current Item:Modified%]</td><td>[%Current Item:Notes5%]</td></tr>
    </table>
    I could not update the question below to the proper forum section. that is why i am asking again.
    http://social.technet.microsoft.com/Forums/en-US/a7918bfb-9166-4bdb-828c-132a0c7611e3/ms-sharepoint-2010-designer-workflow-emails-huge-lines-paces-in-rich-text-fields-values-from-ms?forum=sharepointcustomization
    -Isaack

    Hi IssackB,
    perhaps you may try this article:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/f8fa2a11-9f74-4dd2-b277-21ce872fdcb2/can-we-add-rich-text-editor-to-the-sharepoint-designer-2010-workflow?forum=sharepointcustomizationprevious
    there are some notes that perhaps you may check:
    Use the same font for all the controls to ensure consistent spacing between rows.
    Choose Size from the Format menu, and then choose To Fit from the menu that appears. This adjusts the size of each control, depending on the font set for the data that appears
    in the control.
    NOTE: The Print Preview and Output To commands use different algorithms for calculating text width; therefore, the text may occupy more or less
    space in the RTF file.
    Reduce the amount of blank space above and below the report controls. Any vertical
    space between the controls is converted to whole lines
    in the RTF file. For example, a
    space of .02 inches can increase to .1667 inches in the
    RTF file.
    Make sure controls on the same output row are not too close to each other or overlapping. This can cause the Output To command to omit the controls or to align the columns incorrectly
    in the RTF file.
    Use the Align command from the Format menu to ensure that a row of controls is aligned properly on the report. If a row of controls is not aligned properly, the Output To command may place the controls
    in different rows, causing extra blank
    spacein the RTF file. 
    and please have a check there are updates for exchange 2013 and will be available with the upcoming release of CU4 for Exchange 2013, that stated the format rtf was saved instead HTML. http://support.microsoft.com/kb/2862739/en-us
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Rich text field will not show proper font attributes! (Bug? - RTF OTF font handling)

    I created two text form fields (rich text)...
    In Windows 7, Write program (using it to format the rich text content)... I edited my two lines.
    Line one: mix of two font sizes and a few attribute changes... pasted into the first text field perfectly.
    Line two: similar to the above... pasted into the second text field but the font is appearing in bold! It is not bold in the source, nor is it preset in the text field properties! I even pasted it back into Write AND Word and it pastes as I intended it.
    Why is Adobe doing this? I even tried to toggle >Text Style > bold on/off, clear formatting... these functions do not work!
    If I bring up the properties toolbar (Ctrl-E), bold is toggled on but I cannot toggle it off, I can add underline, I can change the font size.
    UPDATE: It seems that Adobe Acrobat is NOT reading the OTF font correctly! If I change to a different font, in the same family, the problem changes from set on bold to set on italics!
    It is specifically related to the font I am using but is ONLY a problem when using Rich Text fields. In other words, the entire font family works perfectly if I inserted a text box or use the font family in any other Adobe product.
    I have submitted a bug report: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&loc=en

    Another possibly revealing clue is that when I go to Text Field Properties > Appearance tab > Text / Font, I see the entire family of this particular font. However, when editing the text in the properties toolbar (Ctrl-E), only a small sub-set of this font family appears and the attributes behave in an odd manner. Example: normal font appears as italics but if I switch on BOLD, the italic attribute is gone... and other strange attribute problems.

  • Rich Text Field in HTML

    I need to design an xdp form that can be rendered in HTML and which allows the user to format text field content. I created a text field control with data format of xhtml. In Adobe Acrobat Professional I can use CNTRL-E to open the "Form Field Text Properties" toolbar. Will this work in the web browser when the form is rendered as HTML?
    Also, is it possible to insert a hyperlink into a rich text field when rendered as HTML or PDF? Are hyperlinks even supported in text fields of forms designed using LiveCycle?

    hi
    another way to do it is to specify RenderFormat property of Content by search web part (it is not available from UI, only programmatically or declaratively):
    <property name="RenderFormat" type="string">&lt;Format Type=&quot;HTML&quot; /&gt;</property>
    Format is very important and it should be exactly like shown above. Check the following post for details:
    Problem with trimmed html content in search index in Sharepoint 2013.
    Blog - http://sadomovalex.blogspot.com
    Dynamic CAML queries via C# - http://camlex.codeplex.com

  • Caml query to retrive keyword from rich text field

    hi friends
    i am using below caml query to retrieve data from title field and Rich text field(Definition) 
    <View>
    <Query>
    <Where>
    <And>
    <Or>
    <Eq>
    <FieldRef Name=\'Title\'/>
    <Value Type=\'Text\'>'+letter+'</Value>
    </Eq>
    <Contains>
    <FieldRef Name=\'Definition\' />
    <Value Type=\'Note\'>'+letter+'</Value>
    </Contains>
    </Or>
    <Neq>
    <FieldRef Name=\'status\' />
    <Value Type=\'Text\'>Not approved</Value>
    </Neq>
    </And>
    </Where>
    <OrderBy><FieldRef Name=\'Title\' /></OrderBy>
    </Query>
    </View>
    this query is working fine. But it is retrieving some extra fields also which doesn't have the queried string. and even it is retrieving keyword from image urls which are present in rich text field. 
    Please help me to retrieve key word from plain text of rich text field.

    Hi,
    According to your post, my understanding is that you want to use caml query to retrive keyword from rich text field
    By design, when specifying a ViewFields clause, values for these fields are returned, together with a few system columns like ID, Created and Modified.
    If you query rich text field, it will return the field with HTML tags.
    To retrieve key word from plain text of rich text field, you need to use regular expression to remove the HTML tags.
    You can use the code below:
    using (SPSite site = new SPSite("http://sitename"))
    using (SPWeb spWeb = site.OpenWeb())
    SPList spList = spWeb.Lists.TryGetList("ListName");
    SPQuery qry = new SPQuery();
    if (spList != null)
    qry.Query =
    @" <Where>
    <Contains>
    <FieldRef Name='Rich_x0020_Text' />
    <Value Type='Note'>caml</Value>
    </Contains>
    </Where>";
    qry.ViewFields = @"<FieldRef Name='Title' /><FieldRef Name='Rich_x0020_Text' />";
    SPListItemCollection listItems = spList.GetItems(qry);
    foreach (SPListItem item in listItems)
    string src = item["Rich_x0020_Text"].ToString();
    Regex htmlReg = new Regex(@"<[^>]+>", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    src = htmlReg.Replace(src, string.Empty);
    Console.WriteLine(src);
    Console.ReadKey();
    The result is as below:
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • I opened Adobe Acrobate XI Standard to create a form.  I then selected From Template, which took me to Adobe FormsCentral Online.  However, I think the form is an HTML web form.  All I wanted was a regular PDF form that I could email my co-workers for an

    I opened Adobe Acrobate XI Standard to create a form.  I then selected From Template, which took me to Adobe FormsCentral Online.  However, I think the form is an HTML web form.  All I wanted was a regular PDF form that I could email my co-workers for an internal project we're colletively working on.  Now I see that FormsCentral is going away and I can't get my doc to save as a PDF without an upgrade?  Help

    You should be able to log into the online Formscentral Acrobat XI air app and see your doc there. From there you would need to save it out as a PDF without a submit button to have it continue to work past July. If you don't see your online form(s) please let me know the adobeID you use to log into the service as well as the form name that is missing and I will look into it for you.
    Andrew

  • HT203200 has anyone ever had this problem? seems to be a problem in itunes, as i am having no problems downloading other files."There was a problem downloading "Outlander / Howard McCain". An unknown error occurred (-50)."

    has anyone ever had this problem? seems to be a problem in itunes, as i am having no problems downloading other files."There was a problem downloading “Outlander / Howard McCain”. An unknown error occurred (-50)."
    kinda suck to pay for something you cant use!..

    Try fixing up the validation issues...
    http://www.feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.stereogol.com%2Faudi o%2Fwimpy_podcast.php
    Not promising it will help, but it's worth a shot.

  • There was a button/plug in that alloyou to search and dowmload MP3 from the tool bar it is no longer there how can I find it?

    There was a button/plug in that alloyou to search and dowmload MP3 from the tool bar it is no longer there how can I find it?

    The add-on you are looking for may no longer be available.
    Do you remember its name?
    Go to the '''[https://addons.mozilla.org/en-US/firefox/ Mozilla Add-ons Web Page]''' {web link}
    (There’s a lot of good stuff here) and search for what you want.

Maybe you are looking for

  • Please advise - new iMac i7, old iMac G5 PPC, and migration assistant

    I just received my new iMac i7 and am getting ready to use Migration Assistant. However, I have some questions: The logic board on my old machine died, so I pulled out the Hard Drive and put it in an enclosure. This is what I will be using to make th

  • Purchase Requisition Origin

    Hello, Is there any table or transaction which indicates the origin of a purchase requisition? Table EBAN provides the relation between purchase requisition & purchase order, but I couldn't localize the original requirement (ex. sales order, safety s

  • Where can I get E60 or E50 + how good with Route 6...

    I want to get an E60 (or E50 if I can't get the E60)? Someone told me I can pick one up for about £80 on PAYG. I've searched: and there aren't many places that sell the phones. E60: nothing out there... and only 3 for sale on eBay. E50: available on

  • Sorting an array based on the value of another array

    Hi Ive got 2 arrys... An Integer[]{11,12,23,24,25}; and another one double[]{60,79,83,54,67}; i wanna sort the first array based on the values of the second array.. ie my result should be double[]{83,79,67,60,54} and Integer[]={23,12,25,11,24}.......

  • How to intergrate customer short profile into employee profile page MSS WDA

    Hi I have created a z version of SAP_MSS_General_profile and amended some the fieids contained within. I can't see where this is referred to in the employee profile application in order to get it to refer to the non-standard version. Can anyone help?