Word 2013 - check box changes to False

Hello,
Situation: A user clicks New to open a form from SharePoint 2013. User completes all appropriate boxes, closes, and saves the file with an appropriate file name. When the form advances to the next user for review, the
Resubmit check box changes to False.
The XML Mapping Pane was used to insert the check box. Meaning:
Click Developer on the ribbon.
Click XML Mapping Pane.
In the XML Mapping pane, right-click Resubmit > Insert Content Control > Checkbox.
I have used this approach in the past to avoid the issue I'm describing, and it has always worked. When the form is Rejected, the Initiator must then revise the form and resubmit for review by selecting the
Resubmit check box.
Any ideas how to remedy this issue and ensure the check box never changes to False?
Appreciate any feedback.
Thank you,
Gary

Hi Gary,
Welcome to MSDN forum.
This forum is discussing about the Windows forms and the controls in Winform in Visual Studio. Your issue seems more related with customizations in SharePoint, I would move this thread to the more related forum.
Thanks for your understanding.
Best Regards,
Edward
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click HERE to participate the survey.

Similar Messages

  • Changed Agreements Check Box in VBOF

    Dear All,
    Can someone help me to understand the Usage of Check Box "Changed Agreements" at the bottom of the VBOF Transaction.
    I read the documentation and was not able to get the exact meaning of what happens when we Tick or Untick the Check Box "Changed Agreements" in VBOF while running retrospective Rebates.
    The issue we have is that in Our Production System when the Changed Agreements Check Box is checked then VBOF does not shows up any Billing Documents however when we uncheck the Check Box then documents are shown.
    In Our Development System same documents are shown in both the cases.
    Hence can someone explain by giving a example as to what is the difference when we Check or Uncheck the Changed Agreements Check Box. What is the Usage od the same?
    Regards,
    Madhukar

    Hello madhukar,
    Please check the following information available in the Note 105681 regarding the parameter "Changed agreements"
    Normally, you should set this parameter, since an improved runtime is
    achieved with a restriction to changed agreements.
    You should only deactivate the parameter if changes which are relevant
    for rebate occurred outside rebate agreement maintenance. These are, for
    example:
        o  Relevance for rebate
           -  Sales organization
           -  Payer
           -  Document types
        o  Pricing procedure
           -  Add/delete rebate condition types
           -  Formulas/requirements for rebate condition types
           -  Reference step of a volume rebate condition type
        o  Access sequences
           -  Add/change/delete accesses
           -  Requirements
           -  Exclusive indicator
        o  Condition type
    -  Condition exclusion indicator
        o  Condition exclusion groups for rebate conditions
    If parameter 'Changed agreements' is not set, in this case you should
    attempt to restrict the agreements manually as much as possible.
    Also consider that for the above changes you may have to set up the
    rebate index (VBOX) again, no matter if you use the new rebate procedure
    or not. Thus, the previous process has not been changed concerning this
    point.
    Regards,
    Raghavendra

  • Report Parameter Check Box

    Hi alls,
    I have created two check box item in search region of one of my report , i want to restrict user to select either one of the checkbox ,both cannot be unchecked.How can i achieve it ? One more quick question how can i refresh the report data the minute check box changes rather then pressing the button which post the page to refresh,i reckon product build is the version of apex which is 4.1.1.00.23.
    Regards
    Awais

    Hi Awais,
    Your details are a bit vague, can both the checkboxes be checked?  Do you have to use checkboxes if they can't both be checked, I would suggest using a radio group instead.
    You will then need to use an on-change dynamic action based on your radio group and for the true action refresh your report region.
    Thanks
    Paul

  • Word2010 form to PDF - check boxes aren't recognized by Acrobat 10

    Hello fellows!
    I've encountered a weird problem - when converting a form created in Word 2010 to PDF and running the field auto-detection wizard in Acrobat 10, the check boxes originally created in Word are recognized by Acrobat as text fields and not controls. Tried replacing the word 2010 check box with a "legacy" check box - no difference. Any suggestions?
    Thank you in advance!!!

    hey rombanks,
    Did you ever find a satisfactory solution to your problem?  Being a forms newbie, I naively designed a beautifully formatted, complex, multi-page form in Word 2010, with checkboxes everywhere in tables. 
    Then when I imported it into Acrobat X forms wizard, it translated 90% of the checkboxes into text fields, and some into radio buttons.
    I started fixing it in Acrobat, replacing the "text" boxes with checkboxes, but the auto-sizing and alignment commands don't work very well and it's super difficult to get all the new checkboxes to line up perfectly and look professional the way they do in Word.  VERY time-consuming.
    Ugh.  I'd really love it if I didn't have to start over from scratch and could "run a script" as some have suggested..."Another option is to use a script after running the wizard to convert those files to check-boxes." - Gilad D
    Thanks for any suggestions!!

  • Header Billing Plan check box

    Hi,
    Header Billing Plan indicator( check box) functionality and where we can control this check box change mode or display mode.
    Thanks

    Hi,
    If  a billing plan is assigned to Sales Document header and Sales Document Item, When Header Billing Plan indicator( check box) is flagged then billing plan is automatically copied to all the items. I think there is no customisation settings to control this check box.
    How ever at item level, we can uncheck this box and maintain a different billing plan for that item.
    Hope this helps.
    Regards,
    Sharan

  • ShowFieldCodes = false not working as expected in MS Word 2013.

    Hi,
    I am facing an issue with hiding the field codes in Word 2013, the same code works fine in Word 2010.
    I have the below code to insert the field codes,
     Word.Range fldRng = foundRng.Duplicate;
                    object dir = Word.WdCollapseDirection.wdCollapseStart;
                    fldRng.Collapse(ref dir);
                    object type = Word.WdFieldType.wdFieldAddin;
                    object text = "MyMarker";
                    object p = false;
                    Word.Field f = sourceRng.Fields.Add(fldRng, ref type, ref text, ref p);
    At certain point of time in my code i show the field codes and hide the field codes as shown in below code snippet, this works absolutely fine in Word 2010 but in Word 2013 sometimes it works as expected and some times field codes are not hidden,
    _docWindow.View.ShowFieldCodes = true;
    _docWindow.View.ShowFieldCodes = false;
    Please help me out to solve this issue. Thanks in advance .
    Regards,
    Chetan Rajakumar

    Hi Cindy,
    I checked and confirmed that 'Alt+F9' toggles the field codes correctly.
    Yes, whatever the field codes i added from the code all of them are not hidden. when i have below code:
    _docWindow.View.ShowFieldCodes = true;
    _docWindow.View.ShowFieldCodes = false;
    because of project reqquirement we had the above code.
    But if i comment the above bolded line and i dont show the field codes, After executing i found out that still the field codes are visible at some lines(not in all the lines) in the  document. I am not making any changes in the settings/options/etc
    after i execute the code. I am confused whether any other code is making the fieldcodes visible. Do we have any other syntax/codes that can make the fieldcodes visible ? Thanks in advance.
    Regards,
    Chetan Rajakumar

  • Acrobat 9 want to change check box selection to a Tick or a X

    I have created a pdf form (from word)
    I used the "form field recognition"
    Everything went ok but the check boxes when selected
    only left a black square dot.
    I would like a X or a Tick. I have read the help file below.
    but nathing I try will get it to work, I must be missing somthing.
    realy need help( step by step) preferably.
    TIA Tony
    ========================
    Set a status
    Select the comment in the Comments list, click the Set Status button , and choose an option.
    The review status appears in the comment along with the name of who set the review status. If another reviewer sets the review status for that comment, both reviewers names and review statuses appear in the Comments list.
    To view a comments history of changes, right-click the note icon, markup, or title bar of a pop-up note, and then choose Properties. Click the Review History tab.
    Flag comments with a check mark
    In the Comments list, click the check box next to a comment so that the check mark icon appears.
    ==============================

    FWIW, the help text you posted does not apply to check box form fields, but rather Comments.
    What you need to do is change the Check Box Style, which can be set to Check, Circle, Cross, Diamond, Square, or Star.
    To do so manually, open the DPF, select "Forms > Add or Edit Fields", select one or more of the check boxes, right-click and select Properties, go to the Options tab, and select the style you want from the Check Box Style drop-down.
    George

  • Apex 4.0: Change the Search Field to a Multi Value Check Box IR

    I am new here, but hoping to be active :)
    Well, now I am focusing on Apex 4 and I find really new things here. And even new order to develope needs time to get used.
    Still, I am trying to change the Search Field to a Multi Value Check Box in IR. I have found how to make it in Apex version 3, but not at 4 any more.
    Tutorials for apex v.3 write:
    1.Click Edit Page 1 on the Developer toolbar.
    The Page Definition for page 1 appears.
    2. Under Items, click P1_REPORT_SEARCH.
    3. From Display As, select Checkbox ans so on...
    But I do not find any word "Items" in IR and especially P1_REPORT_SEARCH (I assume this should be by default). Under "Report Atributes" I find "Search bar" region, just there is no option for that. Is here any way to make search with checkboxes in v4?

    Hi,
    Tutorial you have check for APEX 3.x probably works still in APEX 4.x if you use classic report.
    As I understand you have now create interactive report that provide out of box search features.
    There is no option to change IR search text field to multi select item.
    What you can do with IR, is hide/disable search field.
    Then you create multi select item and use it in report query where clause.
    Regards,
    Jari
    My Blog: http://dbswh.webhop.net/htmldb/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Changing Selection Color in Word 2013

    When working with Word 2013, when I want to select a word or sentence, anything really, I often have trouble seeing exactly what I am selecting.  I think this is because the page is, of course white, but the selection is only a very light grey. 
    To be clear, I am not talking about highlighting, that is a different feature.  When I select text in the box I am writing in now, for example, the text is highlighted in blue and the text turns white.  In Word, however, the text remains black and
    the highlight is a light grey.  Even in changing my brightness settings, it remains almost impossible to see.  Is there a way to change the color of the selection?

    Hi,
    Thanks for your post. Unfortunately, the text selection color cannot be changed currently.
    I have collected the information and submitted it through our internal channel, you can also submit a Feature Request by yourself via Microsoft Support
    (Please note that no charges will apply but you might need to supply credit card information to get it registered):
    http://support.microsoft.com/select/default.aspx?target=assistance
    Our developers strive to capture Microsoft users' ideas and are working hard to create a more powerful and easy-to-use product.
    Thanks,
    Ethan Hua CHN
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How to change the check box with the push button in itrator table rows

    Hi all,
    I want to change the check box of the itrator table rows with push button/ some thing better as to give
    the table view more good look and user friendly.
    Does any one has tried any other option in table view in place of check box
    Thanks
    Bhagat

    There are various objects which you can create via iterators. Please see the application SBSPEXT_TABLE for more details.
    DATA: lo_text      TYPE REF TO cl_htmlb_textview,
            lo_ddlb      TYPE REF TO cl_htmlb_dropdownlistbox,
            lo_input     TYPE REF TO cl_htmlb_inputfield,
            lo_button    TYPE REF TO cl_htmlb_button,
            lo_chk_bx    TYPE REF TO cl_htmlb_checkbox.
      row_ref = p_row_data_ref.
      CASE p_column_key.
        WHEN 'EFF_DATE'. " Input field
          CREATE OBJECT lo_input.
          lo_input->id       = p_cell_id.
          lo_input->type     = 'DATE'.
          lo_input->showhelp = 'TRUE'.
          lo_input->width    = '60'.
          lo_input->invalid  = 'true'.
          p_class            = `ao`.
          lo_input->value     = get_column_value( p_column_key ).
          p_replacement_bee = lo_input.
        WHEN   'NEW_LOC'. " Drop down list box
          CREATE OBJECT lo_ddlb.
          GET REFERENCE OF gt_persa INTO lo_ddlb->table.
          lo_ddlb->id                =  p_cell_id.
          lo_ddlb->nameofkeycolumn   = 'NAME'.
          lo_ddlb->nameofvaluecolumn = 'VALUE'.
          lo_ddlb->selection         = get_column_value( p_column_key ).
          lo_ddlb->selection  = 'DUMMY'.
          p_replacement_bee          = lo_ddlb.
        WHEN 'MON' . " Check box
          CREATE OBJECT lo_chk_bx.
          lo_chk_bx->id = p_cell_id.
          lo_chk_bx->checked =  get_column_value( p_column_key ).
          p_replacement_bee  = lo_chk_bx.
        WHEN 'NEW_MGR_SRCH'. " Button
          CREATE OBJECT lo_button.
          lo_button->id            = p_cell_id.
          lo_button->text          = 'Search Mgr'.
          lo_button->onclientclick = 'script'.
          p_replacement_bee = lo_button.
        WHEN OTHERS. " Text
          CREATE OBJECT lo_text.
          lo_text->id       = p_cell_id.
          lo_text->wrapping = 'FALSE'.
          lo_text->text     = get_column_value( p_column_key ).
          lo_text->design   =  'STANDARD'.
          lo_text->textcolor = 'POSITIVE'.
          p_replacement_bee = lo_text.
      ENDCASE.
    Thanks
    A

  • Excluding VBA codes from grammar & Spell checker in word 2013

    hi Guys
    i am learning VBA & i write my notes & my exercises in a word document.
    the problem is Grammar & spell checker shows VBA codes as errors.
    i don't want to completely disable checker. is there any method or Add-on so that we introduce Correct VBA codes as correct sentences to word 2013 so that it doesn't show them as errors ?
    thanks in advanced

    i tested it but i noticed an strange behavior. it sometimes works but sometime doesn't. or sometime partially works.
    for example i have defined a box as a border around the selected Area. this applies but although i have selected "do not check spelling or grammar" , system again shows spelling & grammar errors as you see in the screenshot. it's seen even
    after i reapply style. any further help please?
    Your screenshots have far too little resolution to see anything meaningful. I cannot see what Style you're applying the attributes to, or how you're using that Style. If you're applying the Style to text that's already in the document, you may need to run the
    spell-checker to clear the 'error' underlining that was already there.
    Cheers
    Paul Edstein
    [MS MVP - Word]
    i have created the "NOGrammarSpellCheck" Style correctly.
    yes i had written some VBA codes in my doc, then i created my "NoGrammarCheck" Style & Applied it on the selected Exiting codes. but again errors are shown. i noticed that when i again click on my style to apply, know errors disappear.
    so i found that if codes exit before, we must apply the
    "NoGrammarCheck" Style Twice so that it completely be applied.
    but if we Apply the style on a blank area in word doc & then paste our VBA codes in that Area, now everything is ok & no grammar or spell check is shown.
    am i correct ?

  • How to center Text Box on Web Page? -- Web dev with Word 2013

    I'm trying to assist a user who wants to use Word 2013 for simple web page development.
    There are many tools but they want to use Word 2013.
    Actually have it working by saving the Word 2013 files as web pages... like index.htm, about.htm, etc.
    The problem is when we use the "Insert" tab in Word to create a "Text Box" or a "Shape" ...
    And align it centered on the page... it looks fine in Word but when we open it with a web browser the "Text Box" or "shape" are no longeer centered.
    We thought we had it fixed by making the "Text Box" Layout Options "In Line with Text" but again... looks fine in Word but not in a web browser.
    The question: How can we get a "Text Box" in Word 2013 to appear centered on a web page?
    thanks for any help.

    Hi:
    For webpage design, I would suggest customized form under develop tab on the Ribbon over insert object directly. I tested from my side, using customized form will lock the object position on the
    page.

  • Access 2010 - If Then Else Statement to display text within text box upon Check Box True/False condition

    I have a form called myForm. On this form is a check box called myCheckBox. I also have a text box labeled myTextBox. I have assigned a macro, myMacro, to run upon selection/click of myCheckBox. The macro is an If statement which determines if myCheckBox
    is checked or not checked and spits out a value, "Yes" or "No" for example, into the text box.
    I am not able to get text to display into the text box although I am not receiving any errors when I run the macro. This may be a fault in my logic and would like help resolving where the problem lies. I am fairly new to Access so this could be something
    simple.
    My code is as follows:
    If Forms!myForm =  True Then
      Forms!myForm!myTextBox.Value = "Yes!"
    ElseIf Forms!myForm = False Then
      Forms!myForm!myTextBox.Value = "No!"
    Else
      Forms!myForm!myTextBox.Value = " / ERROR / " 
    End if
    Thanks!

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Office, the issue is more related to coding/programing, you'd better post your question to the MSDN forum for Access
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=accessdev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support

  • How do I change the text in a field with radio buttons or check box?

    Hi All:
    I have a form that has a list of things with check boxes (could be done with radio buttons) at the bottom. The client wants a single field at the top of the form that repeats the text next to the checkboxes. For example if a user checks the box next to the words "You did thing 1 wrong" the client wants "You did thing 1 wrong" to appear in this text box at the top of the form. If the user checks the box next to the words "You did thing 2 wrong" the client wants the words "You did thing 2 wrong" to appear in the magic box at the top of the page. There are 10 different check box options, so the box at the top would need to be able to have 10 different things in it.
    Client is not interested in a drop down menu. I asked.
    I am in a bit over my head here, so my question is twofold.
    1. Can you do this in Acrobat Pro 10 on a Mac?
    2. Can you supply me with code?
    Thanks in Advance,
    Amy W.

    Create a text field and make this script its custom calculation script :
         var a ="";
         if (this.getField("Check1").value == "Yes"){
         a="You did thing 1 wrong";
         event.value = a;
    Also, replace "Check1" with the name of your check box or radio button, and give it an export value of "Yes".

  • How do I change text size in a check box in CS3

    How do I change text size in a check box in CS3?

    While I've never done it myself for a checkbox, components
    have a textField property which is essentially the texfield inside
    the component. You probably need to apply a TextFormat to it to
    change the size.
    But if this involves the same problem you had yesterday,
    where you couldn't change the width of the checkbox, I doubt you'll
    have much luck changing the text size

Maybe you are looking for