Outlook controls in custom form region created in Visual Stdio 2010

Hi,
Is it possible to use all the outlook controls (e.g. Body control, Send button) in custom form region created in Visual studio. 
Thanks & Regards,
Vijay

Hi Vijay,
Which control you are not able to use? Based on my understanding, there are two ways to custom the form region in Outlook.
First is creating a new form region by using the wizard. The second is importing a form region designed in Outlook.
In the second secnario, we can use add native Outlook controls to the form region. Native Outlook controls enable you to bind to Outlook data at design time. However, you cannot then use the form region designer to add managed controls or change the design
of the form region.
You can get more detail about this topic form link below:
Creating Outlook Form Regions
Regards & Fei
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

  • Outlook Calendar Appointment Custom Form Finding Contacts

    I have an Outlook Calendar appointment custom form with a button to enter contacts. When the user presses the button, it brings up a window that starts in the user's own contact folder. Since the user of this application is supposed to use contacts in
    a designated public folder instead of their own personal contacts, they have to drill down through public folders to get to the right place. Is there a way to have the window open up pointing to the folder I want them to use, so they don't have to drill down
    each time? Thank you in advance to anyone who can help.

    Hi Linda,
    I cannot find a way to achieve this. However, if you just want to click the Contacts button to select the attendee, we can just add the Address Book button to the Quick Access Toolbar. To do this, go to File > Options > Quick Access Toolbar, select
    All Commands and find out Address Book, then click Add button.
    Now, when you create an appointment, you can just click the Address Book button from the QAT to open the contacts. (First, please make sure you have adjusted the display order as my first reply)
    Regards,
    Steve Fan
    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.

  • Outlook 2007 error The form region DPOfcX

    Hi Guys,
    When I open Outlook 2007 or open an e-mail I am getting the following error.
    The form region “DPOfcX” cannot be opened.  The form region manifest specifies an add-in that is not installed. 
    I have check in the add-in there is no add-ins at all. I have check the exchange client extensions in there the add-in of nod32, exchange and SAP callender. in the disable add-in there is nothing. 
    When I start Outlook in safe mode the error don't show at all. What else I have done was to scan the computer with Spybot for malware. Nothing found. the computer is brand new got it on Saterday. When I search
    the computer for the  DPOfcx do not get any results. I have check in system 32 files and syswow64
    Any help I will be greatfull!
    regards,
    Gerrit 

    Hi Gerrit,
    HKCU\Software\Microsoft\Office\Outlook\FormRegions. Delete the registration for your entry for the MessageClass you are handling.
    Removing an addin that way does not unregister it or its dependencies. You should uninstall or remove from Add/Remove Programs or Programs and Features in the Control Panel, or by re-running the installer
    and selecting to remove the addin.
    If the form region registration is created as part of the installation it should be removed by uninstalling. If it is created later after installation, say by code, you need code such as an installer custom
    action to unregister the form region.
    Hope that helps. 

  • I am trying to integrate my mailing list with a custom form to create an e ticket for my membership

    I am trying to integrate my mailing list with a custom form, in order to create an E ticket for my membership.
    Is there a way of doing this with the Adobe Custom Forms? Thank you NAK

    Integration of a mailing list is not a supported function of Formscentral. Additionally it might be difficult to authenticate and properly transmit e-tickets to your groups using Formscentral alone. For this type of transaction workflow I would suggest you look to our Livecycle product for a solution.
    Andrew

  • Can I use a dll created in Visual Basic 2010?

    I am reading up on the new extention system for air 3.0.
    I have successfully (I think) managed to integrate the Air 3.0 prerelease into Flash CS5.5 (I don't use flex or flash builder)
    So now I am trying to read up and learn how to use extentions.
    Now, I don't know C/C++. My experience with it has been very limited over the years. But I know visual basic pretty well as I have been using that since VB4. (back in the programming stone age, heh)
    Right now, I have Visual Studio 2010 and Flash CS5.5.
    I am developing for the iPhone and iPad and up until now I have created a working iOS application that works pretty well.
    Can I create a dll in visual basic (A class library) and then use the extention system to load that into my application to run on the iOS mobile device?

    I thought I'd seen this question asked somewhere before, but I can't find the thread. In theory there should be no problem. However, you'll need to have both the LabVIEW 5.1 and LabVIEW 8.6 run-time engines installed, and I don't know if there are any operating systems on which both of those versions are supported. If the run-time engine is properly installed, then calling a LabVIEW-built DLL is just like calling any other DLL. There might be some special optimization if the calling application and DLL both use the same version of the run-time engine.

  • Error while saving the custom list created in visual studio 2010

    Dear all,
    when I am saving the list; I am getting the following error. I do not know where this could be wrong.
    Any inputs will help. Now I am recreating a new list - thinking that the objects used in the earlier projects might conflict. Also few lists in the list tab - were throwing error of the same type - which is not functioning well.
    warm regards,
    sathya

    To give more information on the code
    Registration list
    //Reference this Feature's parent object, which is SPWeb in this case
    SPWeb currentWeb = properties.Feature.Parent as SPWeb;
    //Reference the lists we need to manipulate.
    SPList tList = currentWeb.Lists["TrainingTrainers"];
    SPList rList = currentWeb.Lists["TrainingRegistration"];
    //Reference the fields in the lists
    SPFieldCollection rFields = rList.Fields;
    SPFieldCollection tFields = tList.Fields;
    //changes to the Trainers List
    SPField fullNameField = tList.Fields["Full Name"];
    SPField emailAddressField = tList.Fields["E-mail Address"];
    SPField firstNameField = tList.Fields["First Name"];
    SPField lastNameField = tList.Fields["Last Name"];
    fullNameField.Required = true;
    emailAddressField.Required = true;
    firstNameField.Required = true;
    lastNameField.Required = true;
    fullNameField.Update();
    emailAddressField.Update();
    firstNameField.Update();
    lastNameField.Update();
    //Changes to the Registrations List
    //Change the Display Name of the Title Field
    SPField titleField = rFields["Title"];
    titleField.Title = "RegistrationID";
    titleField.Update();
    //Add additional fields as necessary
    rFields.Add("First Name", SPFieldType.Text, true);
    rFields.Add("Last Name", SPFieldType.Text, true);
    rFields.Add("E-mail Address", SPFieldType.Text, true);
    rFields.Add("Phone Number", SPFieldType.Text, false);
    rFields.Add("ClassID", SPFieldType.Text, false);
    rList.Update();
    //Make the ClassID column read-only because i will set this later
    SPField classIDField = rList.Fields["ClassID"];
    classIDField.ReadOnlyField = true;
    classIDField.Update();
    //Remove the Attachments column from the default view of the Trainers list
    SPView tDefaultView = tList.DefaultView;
    tDefaultView.ViewFields.Delete("Attachments");
    tDefaultView.Update();
    //Add new fields to the default view of the Registrations list
    SPView rDefaultView = rList.DefaultView;
    rDefaultView.ViewFields.Delete("Attachments");
    rDefaultView.ViewFields.Add("First Name");
    rDefaultView.ViewFields.Add("Last Name");
    rDefaultView.ViewFields.Add("E-mail Address");
    rDefaultView.ViewFields.Add("Phone Number");
    rDefaultView.Update();
    Classes list
    //Reference the newly created Classes list and perform the following
    //1. Set the display name of the "Title" column to "ClassID" and hide it from the New and Edit Forms
    //2. Make the "ClassID" column not required
    //3. Set the default value of the Registrations column to 0 and do not display it on the new form
    //4. Add the built-in "Start Date" and "End Date" columns
    //Reference the newly created classes list
    SPWeb currentWeb = properties.Feature.Parent as SPWeb;
    SPList classesList = currentWeb.Lists["Classes-List"];
    //Title column update
    SPField titleField = classesList.Fields["Title"];
    titleField.Required = false;
    titleField.ShowInNewForm = false;
    titleField.ShowInEditForm = false;
    titleField.Title = "ClassID";
    titleField.Update();
    //Registrations column updates
    SPField registrationField = classesList.Fields["Registrations"];
    registrationField.DefaultValue = "0";
    registrationField.ShowInNewForm = false;
    registrationField.Update();
    //Add the Start Date and End Date columns to the list, ensure they both display Date and Time, and add them to the default view of the list
    SPFieldDateTime startDate = currentWeb.Fields["Start Date"] as SPFieldDateTime;
    startDate.DisplayFormat = SPDateTimeFieldFormatType.DateTime;
    SPFieldDateTime endDate = currentWeb.Fields["End Date"] as SPFieldDateTime;
    endDate.DisplayFormat = SPDateTimeFieldFormatType.DateTime;
    classesList.Fields.Add(startDate);
    classesList.Fields.Add(endDate);
    SPView defaultView = classesList.DefaultView;
    defaultView.ViewFields.Add(startDate);
    defaultView.ViewFields.Add(endDate);
    defaultView.Update();
    classesList.Update();
    To my sense - when I add the classes list - the error pops up.
    the classid is tied to both these lists.

  • Organizer name comes in the Recipients list in outlook form region

    Hi,
    I have created a custom form region for a meeting in outlook 2010 and VSTO with the message class IPM.Appointment.MyCompanyName. 1) When we either create a new meeting based on that form region or open the existing meeting created based on that form region
    from the calendar, the Organizer name is showing in the recipients list i.e., in the To field. 2) If I remove the Organizer name from the recipients list and save the appointment, it shows the message that the "The attendees of the meeting has been changed.
    Do you want to save and send update or Close without saving. How to remove the organizer name from the recipients list and save the appointment without asking for this dialog.
    Regards,
    Vijay

    But why would Outlook's behavior change if you have not modified or replaced the To control? Do you see the same behavior if you comment out all of your form region's code?
    Dmitry Streblechenko (MVP)
    http://www.dimastr.com/redemption
    Redemption - what the Outlook
    Object Model should have been
    Version 5.5 is now available!

  • Custom KFF on custom form not querying concatenated data

    Hi ,
    A custom form is created ,which has a custom KFF field(which pops up a form with segment field).Both form field and segment1-n fields are based on same table ,the KFF field is inserting data into table,but unable to query concatenaed segment data into the KFF field fnd_flex.event call are made from pre-query,post-query,pre insert,pre update and when new item instance (form level triggers).pls help
    Thanks,

    The KFF view did not get created in case of custom KFF,Is that the reason?
    Thanks,

  • SRM PO layout : Abode custom form logic and config

    Dear SRM Guru,
    I have a requirement in SRM PO layout.
    I need to create custom PO layout using Abode form instead of Smartform.
    u2022     I have proposed that, copy the standard Adobe form interface IF_BBP_PO_ADB and made it ZIF_BBP_PO_ADB and included my logic for custom form .
    u2022     Created an adobe form and refer the interface as ZIF_BBP_PO_ADB and designed the layout.
    I would be great if you could let me know below my quires.
    u2022     Am I copied correct interface program IF_BBP_PO_ADB for PO layout ?
    u2022     How to define the custom layout into SPRO out put ? do I need to define both Abode form interface and form layout in SPRO?
    Please share me your experience.
    Thanks.
    Regards,
    Preethi.

    Thanks Denis. That was very helpful.
    I put a HTTP breakpoint in LBBP_PO_APPF35. But I was not able to debug. Till sometime back the SRM portal was working fine, but all of a sudden I am getting the error
    "Error when processing your request "
    "The URL http://usushpdba387.nbcuni.ge.com:8000/sap/bc/gui/sap/its/bbpstart was not called due to an error"
    "The termination type was: RABAX_STATE
    In ST22 the error is:
    The termination occurred in the ABAP program "CL_HTTP_EXT_ITS===============CP" 
      in "IF_HTTP_EXTENSION~HANDLE_REQUEST".                                         
    The main program was "SAPMHTTP ".                                               
    Thanks and Regards,
    Jayesh

  • Coding the controls in form region in Outlook 2007

    We are using Outlook 2007. There is a need of adding a drop down control for field "Subject" in the appointment form. I can use a form region for that. Is it true that VB code cannot be used for the form region (in Sue Mosher's book, "Outlook
    2007 programming)? Are there any other options? We also use Visual Studio 2008.   
    Thank you!
    Marilyn

    Hi Eugene,
    I've already created a form region, via form designer in Outlook. And a combobox is bound to Subject field in the default form. But I need to dynamically populate the list in the combobox, according to a folder under which an apportment would be
    made. Which means that I need to reference the form region and its controls in a code where I could assign combobox's data source to a table's field. I read some articles on VSTO. Just wanted to make sure there are no better/easier ways than using
    VSTO.  
    Thanks so much for your help!
    Marilyn

  • Outlook 2013 with Exchange Server - Changed custom form for contacts is not shown

    Hello,
    Our infrastructure:
    Exchange Server 2010
    Outlook 2010
    Outlook 2013
    Windows 7 Pro, Windows 8 Pro and Windows 8.1 Pro
    The situation:
    We've used an old custom form for contacts, worked perfectly fine
    I've updated the form (adding some new custom fields and checkboxes) using Outlook 2013 and publishing the form (with a new name) to the Exchange folder
    I've set the form as default form in our contacts folder
    I've used this Script to set the new form for the existing contacts  and the name of the new form is saved correctly
    BUT if I open a contact in our Exchange contacts folder, Outlook 2013 (Outlook 2010) still shows the old form
    Steps I've taken so far:
    Cleared Outlook forms cache
    Repeated the above steps 1-4 in Outlook 2010
    Switched Cached Exchange Mode off and back on
    Allowed Scripts in Trust Center Settings
    Used a new clean Windows installation with a new Outlook 2013 installation
    Used different Exchange users on different systems, but some behavior when opening contacts
    I'm out of options I can think of, so maybe somebody else has some new view on this problem. 
    Thank you very much in advance!
    Greetings,
    Karl

    Hi,
    Is the Exchange folder in which the custom form is published available to all users?
    From the description, the script used to work for the old custom form, correct? Which version of Outlook did you use with the old custom contact form? Outlook 2010/Outlook 2013 or an earlier version? If you used the script with an earlier version of Outlook,
    we can't make sure it will still work with Outlook 2010/Outlook 2013.
    In addition we may also try creating a new contact form and test the steps to see if it will work.
    Please let me know the result.
    Regards,
    Steve Fan
    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.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to create custom forms in the xml form builder

    Hi all ,
    can anyone give the brief on
    when we creat a project we get defaulty edit ,show and renderlist forms . what are list edit and listshow forms . what is the use of those forms.
    how can we create out own customised forms ? and how can we call the customized and listedit and list show form in the Portal.
    thanks
    Rajeev

    Hi,
    Edit form
    You use this form to create or change individual documents (for example, single news items). Typically, this form contains input fields in which you can create content (for example, the title or text for a news item).
    Show form
    You use this form to display a single document. Typically, the Show form displays all elements of a document (for example, the title, author, and all the text contained in a news item). Do not use entry controls on the Show form.
    RenderListItem form
    You use this form to define the layout of a list entry in a folder in the flexible user interface. Typically, you display some of the elements of a document, such as the title and summary of a news item, on this form. You call up the Show form if you want to display the entire document.
    You do not create pushbuttons or links for creating, changing, or deleting XML documents in the RenderListItem form. You define which commands are to be displayed using command groups of the flexible user interface. You can create several iViews for displaying the same XML documents with different command groups.
    ListEdit form
    You use this form to change a list of documents. Typically, this form contains pushbuttons for creating, changing, and deleting entries. You call up the Edit form if you want to change or create content. You call up the Show form if you want to display all entries.
      ListShow form
    You use this form to display a list of documents. Typically, this form only displays part of a document element (for example, the title of a news item). You call up the Show form if you want to display the entire document.
    Refer this documents
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ee639033-0801-0010-0883-b2c76b18583a
    Regards,
    Kumar

  • Oracle APPS Custom form Calendar Control

         Hello,
    I am working on the custom form for Oracle APPS r12, I have selected the calendar control to select the date, and its working fine as far as date selection is concerned, but, when the user selects the date and press OK, then there is another LOV displayed, which does not have any thing to select from, user has to press the cancel or ESC button, I have set the LOV property"Validate from List" to "No" and this has solved the problem, but I want to know what could be creating the problem and whether setting the Validate from list to No is the correct option or not?
    Regards

    Implementing a Calendar in the Oracle EBS is different than in a non-EBS Forms application.  The EBS has it's own framework for this.  I strongly recommend you check out the Oracle Applications Documentation library to learn the correct way to implement a Calendar in your form.  Select your EBS version and then scroll to the *Standards* section and review the following documents:
    Oracle Applications Developer's Guide
    Oracle Applications User Interface Standards for Forms-Based Products
    Oracle Application Framework Personalization Guide
    Craig...

  • Creating a contractor custom form and workflow associated with it OIM11g

    we are using OIM 11.1.1.5 we need to implement a scenario where, A Manager or user in admin role creates the contractor using customized form and manager gets the contractor gets the creadentials of contractor and then contractor logs in OIM self-service console to request for AD account.
    what are the steps that need to be performed to execute this
    Thanks and appreciate your responses

    I have created the request template and HR user who has HR admin role can log-in and access the request tab and request for others.
    how can i achieve the following one
    now the user who has been created by above HR user. the User should be able to log-in and access a link(custom) and (should be able to access only self-service) on request tab like "Request AD Account" this should take him to new form where his profile attributes are pre-populated and a Notes section where he will enter justification then submits the request. the request goes to his manager for approval and once he approves he will be provisioned into AD
    Thanks

  • How to create a Custom form Template..

    Hi Eperts,
    I would like to seek a help from you regarding creating a custom form template on custom BO. could you guide me where i have gone wrong in successfully creating a Print form. I am in dead need of this particular solution for a client. It is hampering my entire scenario......
    1. I had created a Custom BO and I am trying to preview the created form on the OIF screen.
    2. I had created a form on above of the custom BO. This created form and form group is activated and configured as of needed by opening it through ALD (Adobe Life Cycle Designer).
    3. I had created a BAC element with some scoping questions and activated it. After activating it i had deployed the Business configuration.
    4. my solution got updated with the created and deployed BAC elements and i had done scoping for those elements to make my created form available.
    5. I can see my form template in Form Template maitaince under Application user managment WOC. I had made it to be available for all users and published.
    6. All the above steps are done success fully with no errors.
    7. When i accessed my custom BO and tried to preview the created form i am unable to view it and i am seeing the following window.
    Could you help me out in solving this or send me across any detailed document regarding this what you had done previously.
    Thanks in advance for your valuable help...
    Regards...
    Hanu K

    It looks like system didn't identify the form template. So please check if the required configuration for "Preview" modal dialog is done properly. In the SDK documentation, refer to section "8.4.3.4 Create a Preview Button for a Print Form"
    If you have already done the steps mentioned in the section 8.4.3.4, but still facing the issue then let me know.
    Best regards,
    Hari

Maybe you are looking for