Create a dynamic dropdown menu in Microsoft Form - microsoft-forms

I'm trying to make a Microsoft Form and want to have a dropdown menu for one of the questions. I was wondering if it was possible to have an add feature where recipients could add an answer to the drop down menu if they don't see what they're looking for?

Related

Add a quick field in quick create form in Microsoft CRM

I am learning how to use Microsoft Dynamics CRM and I have a question according to the Quick Create form. So I have built a Quick Create Form for Contacts but I want to add a quick field(Quick View form) into that form. Seems like because it is already a Quick Create form, there are no options for Quick View form in the insert area except from Spacer and Timer. Do you have any idea if that could be done actually and if yes, how? Do I have to create it from another section?
Unfortunately, you cannot add a Quick View Form to a Quick Create form:
While quick create forms support form scripts and business rules, their purpose is different from main forms and they don’t support all the capabilities of main forms. Quick create forms always have one section with three columns. You can’t add additional sections or columns.
The following controls cannot be added to quick create forms:
Sub-grids
Quick View Forms
Web resources
IFRAMEs
Notes
Bing Maps
If you add a composite field to a quick create form, it will be displayed as separate fields.
More information

Is it possible to add a combobox as column in a listbox in VBA?

Using a VBA form, is it possible to add a Listbox control that has columns which contain Combo box controls?
No not possible with Standard VBA; Standard VBA will not allow this! You may be able to create a custom ActivX control or load another 3rd party control as suggested elsewhere but a standard ListBox cannot hold a ComboBox.
Other Workarounds may be usable if you can provide more details...
If you insist in doing that using User Forms, the only way is that when you click a list item, it should pop a different form containing the combo box, it will be too much work to create and difficult to maintain.
I am sure with spreadsheet itself you can come up with better solutions. I am still not sure what ultimately you want to achieve, but to me this is just a dependent list so you can use sth like this in the spreadsheet itself:
http://www.contextures.com/xlDataVal02.html

Is there any possible to create a custom menu in moodle

I am new to moodle. and i am using moodle 1.9.19+ what i want is to add a custom menu into the sidebare above the Courses Menu.
Is there any possible to do this.

Word 2007: Dynamic Summary List of Checkboxes

I am currently writing a User Guide using Word 2007 where each section has some validation checkboxes to help the consumer implement the solution and track his progress.
I have been able to create Word Checkboxes that can be clicked on using Developper>Legacy Tools>Checkboxes and then Protecting the Document to only allow "Filling in forms".
The next problem is that we want to provide a summary of all the checkboxes in the document in one aggregate list and that it be dynamic (ie: when a checkbox is checked, it also checks it in the summary list).
Is this possible to accomplish ?
TL;DR:
How do I create a summary list of all checkboxes?
How do I control one document from another with ActiveX Controls?

MOSS 2007 - Customize Send To Menu

We currently have a need to add a custom menu item to the Send To menu within our document libraries that would allow a user to create a link to the currently selected list item within another library. When the user clicks on the new "Send Link to..." menu item, they should be prompted to browse to the library in which the link should be added. Once the user chooses a destination, the link, along with the metadata from the list item, should magically appear in the selected desitnation library. Once again, we only want a link, not a copy of the file. Is this possible to do? Code examples would be much appreciated.
Does it have to be in the send to menu? Can it also be directly in the context menu (say at the bottom)? If so, you can create a feature that deploys a CustomAction to the site. If it really, REALLY needs to be under the "send to" menu, you are going to have to use javascript (since that is how the out of the box context menu is created) to "hijack" the menu and insert your own item.
IMHO this is rarely needed, a CustomAction is the preferred way of doing this. It is the easiest and most "maintainable" (all it is is a feature + customaction definition with maybe some code, all of which are deployed using a solution).
More info on CustomActions here.
P.S. if you do decide to go with javascript, don't go editing the out of the box sharepoint js files in SharePoint's 12 Hive, but add a ContentEditorWebPart to the page and insert your Javascript in there.
P.P.S. While assigning a method from an assembly as the action for a CustomAction is allowed in most cases, it is not for the ListEdit (item) context menu.
What they say is that "Sharepoint server 2010 will have it out of the box", i.e. documents may stay where they were created and links go to the Records center (named "In Place Records Management, see http://www.cmswire.com/cms/document-management/the-scoop-sharepoint-2010-records-management-005948.php).
MOSS 2007 requires the actual document to be copied to the Records repository to be registered.