Outlook plugin which required user input while installing - c#

I am trying to create an Outlook plugin which will ask the user couple of Question like URL/Username etc when they try to install the plugin. Then want to save those data in a text file which can be access later on when needed.
Can someone please help me with this. I am very new in Plugin development.
Thanks

If your adddin is not configured on startup, display the necessary prompts when it is used for the very first time.

Related

How to remotely set multiple calendar entries of an Outlook calendar?

We have a shared excel file at work that we use as our shift planning roster, I would like to make a C# application that would query the file and depending on a selection, it would somehow send several entries/events to that particular users's outlook calendar.
I haven't had too much luck searching for how to do this, could someone please point me in the right direction? I can figure out the excel part but I have no idea how to make that work seamlessly with Outlook.
Thanks in advance :)
Use Application.CreateItem to create entries in the user's default Calendar. You can obtain their default Calendar by getting a Folder object reference from NameSpace.GetDefaultFolder.
See also: "Create an Appointment as a Meeting on the Calendar"

How to display user submitted data in Back Office of Umbraco 7?

I want to Display the User submitted Data in Umbraco 7 Back office.
I have created a page to fetch some data from User. And now I want to display the submitted items in the admin panel. So that Admin can approve or Delete from the submitted list.
I want to display the submitted data in a Back Office with an Approve or Delete option for each entry.
Can anyone recommend a proper way to do this.
Any Help would be appreciated.
Thank You Chris For the sudden help.
The following links also helped me.
http://our.umbraco.org/forum/developers/extending-umbraco/49324-How-can-I-create-Form-in-Admin(Back-office)-to-take-input-by-admin-and-store-it-to-data-base?p=0#comment176152
http://our.umbraco.org/wiki/reference/files-and-folders/dashboardconfig
If you need to list your contents simply using a plugin Content Search Tool is a perfect option for Umbraco 7
http://our.umbraco.org/projects/backoffice-extensions/content-search-tool
For Umbraco 6.* or lower(based on the documentation) you may use(not tested) Content Maintenance Dashboard Package
link: http://our.umbraco.org/projects/developer-tools/content-maintenance-dashboard-package
Hopes this may help someone
Use the dashboard under /config/dashboard.config
It basically just points to a standard .net user control which allows you to manage data in whichever way you find easy.

Ms Word save to Web Functionality in the Office 2010

I want to write a code in c# for adding save to web(custom url) for saving word documents, for this microsoft has explained some registry editing here
http://msdn.microsoft.com/en-us/library/office/ff709802%28v=office.14%29.aspx
first thing i want to know is, i am not able to know where these files would be saved after editing registry, means where is the url i am giving to save files, i have edited registry directly without any code, i am able to see save to gmail option,in ms word, but not able to sign in, so what went wrong with me in that
second thing i want to know, how to create web service for the saving word document, i am totally new to web service.
if anyone can help me with the code of web service and explaining the details of first question, please help
thank you

open outlook client with attachment

I want to open outlook client with files attached to it.
The requirement is that i want to remove some properties of the document and after properties are removed want to attach this files to outlook client.
Can anyone suggest me how to achieve this using C#.
Thanks in advance.
If I understand you,
you want to open a new email, whcih could be send by the user?
I implemented this one, and it looked like this code:
http://www.codeproject.com/Tips/165548/C-Code-snippet-to-send-an-Email-with-attachment-fr

Office Addin problem

I'm currently developing an add-in aimed to edit office documents stored in a codendi forge.
First problem was the read only flag on my file. A simple ‘save as’ solved that problem.
This solution was ok until I removed codendi’s cookie then instead of my file I received an error page.
What I want to do is to be able to catch an event triggered by office before it starts downloading the file. Then I can prompt the user for authentication and recreate a cookie by myself without the need for the user to open internet explorer and sign in.
Is there a way to catch an event indicating that word, excel and powerpoint are about to start a download?
Thanks in advance
I'm not sure I really understand what you want to do.
I don't think any office application actually downloads the wanted file, it is downloaded by your browser in a temporary file and therefrom opened by it.
I think that if you want to edit the file from you client, the best way would be to use the soap interface, which is part of Codendi. Have a look to
[yourforgehostname]/soap
[yourforgehostname]/soap/codendi.wsdl.php?wsdl
If you want to see the wsdl in a more readable form consider using
http://tomi.vanek.sk/index.php?page=wsdl-viewer
One of the supported API is login
Hope it helps

Categories