I have a MS Word document that implements a form people can fill in. It is mostly just table cells that represent text fields people can type in and checkbox controls that allow them to check the box to select an option. I then save the document as a PDF document.
When I test the PDF form by selecting the "fill and sign" option, I've found that some checkboxes are "checkable", but others are not. They were all added to the form the same way, so I'm at a loss as to why some work and others do not.
I've looked at the properties of the control, but am not seeing anything different from a working checkbox vs a non-working checkbox.
Has anyone run into this? Any ideas on what could be wrong? Is there a MS forum that might be a better place for this question?
Related
I have an Access 2010 application, with SQL tables linked in. One table has a field for "details". It is NVARCHAR(MAX). On the Access form, I have the textbox control formatted as Rich Text. When I am on the form, and go into that control, the Text Formatting part of the Home ribbon doesn't become enabled like it should.
I have to type text into the control, select the text and right click. I will get that hover-formatting block, but the formatting buttons on the ribbon will also then work. Why isn't the ribbon getting enabled when I go into the control, automatically?
Has anyone else experienced this? I did a fair amount of searching and googling, but haven't seen this issue reported by other people, so wasn't sure if I was missing something.
Thanks!
I hope this is correct forum since it may have to do with programming, otherwise tell me where to post
I am filling out this application, which must be typed. Software is Adobe Acrobat Reader DC, Version 15.009.20069.28170
http://www.nyc.gov/html/dcas/downloads/pdf/misc/mgsp_application_2016.pdf
When I select Checkbox, it automatically selects ALL options, i.e.
and
How to fix this? Thank you.
With Reader, you can't do anything on the form. And the software to view it is innocent.
What you can do is contacting the issuer of the form, and let them know that the form is messed up.
I had a look at this form, and it is a disgrace as a fillable form (you may quote me on that… credentials on answers.acrobatusers.com).
Obviously, the creator of the form made a nice layout in InDesign, created a PDF and then let the automatic field recognition run over it. With the checkboxes, it looks as if that person added a checkbox, and then drag-copied (or copy/pasted) it (more likely the latter, because the checkbox fields are not aligned, just slapped over the checkbox symbol in the base document) — and did not adjust their export values.
Obviously, this form has not been tested at all, because if so, this would have been noticed. Also, as an electronic form, it is useless, because of the field naming caused by the automatic field recognition.
…just a "nice" example: for phone numbers, the area code is visually separated from the number, and appears between parentheses. That lead to two fields. The field for the area code is named "Phone", the field for the number is named "undefined 1".
Rant mode off…
If you have Acrobat at hand, you can open the form, go to the Prepare Form tool, and change the export values of the checkboxes.
My company creates workbooks for clients that contain ActiveX controls (in most cases we need the extra functionality as compared to Form Controls). When we create them, they work fine on our end, but when we zip them up and send them to our clients, they open the WB and the ActiveX controls are no longer ActiveX controls, if you right click it, it behaves like a picture.
I feel like this is due to the MS ActiveX debacle. I have had them run the Fix It and making sure all the MS Office components were closed, and had them reboot, but still nothing.
I am pulling out my hair, and have asked on other forums if anyone else has had this issue, and what they have done to fix it. Thanks in advance.
Could you please check in client system whether macros and active x controls are enabled in Trust center setting?
https://support.office.microsoft.com/en-us/article/Enable-or-disable-macros-in-Office-documents-7b4fdd2e-174f-47e2-9611-9efe4f860b12?CorrelationId=fe6a4d24-f4d9-4c6b-afa0-40d2828ad22e&ui=en-US&rs=en-US&ad=US
use above link if needed.
Try closing excel and deleting the .EXD files from your computer.
Source: http://www.mrexcel.com/forum/excel-questions/296750-command-button-turned-into-image.html
While saving the Excel document, save it as "Macro enabled workbook".xlsm
In my case, the worksheet prompts a non responsive error sometimes. When I reopen it, Excel repairs it and turns all active X check boxes (sometimes drop down list and command buttons) into images. It happened many times and I had to spend a lot of my time recreating them and liking to cells.
I experienced a similar problem when Excel repaired a file; this may be similar to what's happening with the Zipped file. FormControl Buttons don't appear to have the same problems but I see you want to keep the additional functionality of the ActiveX Control.
You may be able to make use of the code I created by inserting one Form Control button that runs the Sub RepairMissingButtons() that your clients can press to restore the images to CommandButtons. This currently fixes buttons for any selected sheets, so you'd want to first identify which sheets need to be selected (or add a form control button on each sheet that needs the repair done).
You'd need to modify the Sub CreateButton() to meet your needs (currently requires hard-coding the Caption, BackColor and any other ActiveX properties that may have been lost by the button being converted to an image):
Reverse Excel ActiveX command buttons erroneously converted to images after corrupted file repair
Having this problem, activex controls sometimes change to pictures.
Many places around the internet the answer is: Use form controls, well as far as I can tell form controls don't actually do anything useful.
Even Microsoft's support site says, recommend using form controls, how can that be the answer. being able to interact with VBA is as far as I can tell the only reason to use Microsoft applications instead of free ones.
I wondering if its possible to use Microsoft Word as a text editor in a VB.Net project?
My project currently uses a Rich Text Box to allow the user to right a report which is then saved and a report generated. I was wondering if i could switch to Word for better formatting and layout options, be it embedded in the actual form or in another form thats called (if that makes it easier to assign the control).
I have worked on opening Word itself via a button click but would like to have it incorporated in the project. All users that would actually use the program would have one of the more recent versions of word installed.
Any pointers to websites would be great as i'm constantly searching but not getting very far
Thanks
I'm sure this question has an easy answer, but I have a short timeline and need to get it resolved ASAP.
I'd like to have a content control drop down that when the user makes a selection, will update a legacy text box formField with the selected value.
I have no trouble selecting form fields and setting them using VBA code:
ActiveDocument.FormFields("MyFieldName").Result
But I'm having trouble selecting the value from the content control, and also figuring out how to execute the macro "onExit" like I can with legacy fields / drop downs.
Any suggestions?
Google "vba content control events".
For example, see the last post by Greg Maxey at how-to-catch-custom-control-events-with-vba-macro and towards the bottom of his page http://gregmaxey.mvps.org/word_tip_pages/content_controls.html