Forum: C# Apr 22nd, 2009 |
| Replies: 1 Views: 746 I can already install the add in but the Outlook cannot load the add in because of a run time error. |
Forum: C# Apr 22nd, 2009 |
| Replies: 1 Views: 746 Hi,
I've created an Outlook add in to my MS Office Outlook 2003. I've managed to create a Windows installer for it using Windows setup. My problem is, it does not install the add in when I use... |
Forum: C# Feb 12th, 2009 |
| Replies: 1 Views: 361 Hello there, I have here a solution explorer with 3 projects which composed of interfaces with implementation and one wpf project. I'm calling one of the interfaces in my wpf application which I have... |
Forum: C# Jan 13th, 2009 |
| Replies: 3 Views: 720 You've been lucky with google my friend. I found 2 examples that adheres to my issue; one was dragging and dropping a url from a form to the desktop and the other was he gave the example that I'm... |
Forum: C# Jan 12th, 2009 |
| Replies: 3 Views: 720 Hello there, I have created and application where the items in a ListView will be dragged and dropped over the desktop. So far, I was able to implement the drag but cannot drop the item. The function... |
Forum: C# Jan 7th, 2009 |
| Replies: 6 Views: 2,185 Maybe I need a RegisterDragDrop() function but it seems its not available in C#? |
Forum: C# Jan 6th, 2009 |
| Replies: 6 Views: 2,185 I found a resource and tried it but it seems that when I try to drop my file to the desktop, nothing happens. I can drag it already but it cannot drop the file. Here's what I did:
private void... |
Forum: C# Jan 6th, 2009 |
| Replies: 6 Views: 2,185 Hello there, I've been having a hard time lately with implementing the drag and drop functionality outside the windows forms. I have no problem doing drag and drop within and between windows forms... |
Forum: C# Dec 19th, 2008 |
| Replies: 3 Views: 851 Yes, that is exactly what I'm looking for. Do you have a resource or tutorial for it? I found one in MSDN but I'm still having a hard time grasping it. |
Forum: C# Dec 18th, 2008 |
| Replies: 3 Views: 851 Hello there, I have already created an add in for my MS Outlook 2003 and I want to create an installer for it. When I run my code in VS 2008 it automatically installs my add in, but I want to install... |
Forum: C# Dec 17th, 2008 |
| Replies: 3 Views: 1,549 Hello again, it seems it is working. I will try it with more than two text files. Thank you. |
Forum: C# Dec 17th, 2008 |
| Replies: 3 Views: 1,549 Thanks for the reply Ma'am. Will it still append? |
Forum: C# Dec 17th, 2008 |
| Replies: 3 Views: 1,549 Hello there, I've been busy nowadays with file manipulation and I've so far I've encountered a small problem in appending the contents of a file to another file. This is what I did:
string... |
Forum: C# Dec 9th, 2008 |
| Replies: 0 Views: 575 Hello there, been doing some tweaking with Outlook these days and I'm having a hard time with add ins. I'm using VSTO 2005 and I want to add a button to my MS Outlook but I couldn't find a good basis... |
Forum: C# Dec 5th, 2008 |
| Replies: 2 Views: 573 I've already found a way how. The problem left is to update my progress bar tool strip. |
Forum: C# Dec 5th, 2008 |
| Replies: 2 Views: 573 Hello there, I've been working with threads right and I'm kinda stuck with how to implement the BackgroundWorker while I drop a lot of files in my form. I'm having a hard time how to arrange my code,... |
Forum: C# Dec 3rd, 2008 |
| Replies: 7 Views: 485 I tried declaring the variable public but it gave me an error. |
Forum: C# Dec 3rd, 2008 |
| Replies: 7 Views: 485 I'm sorry for the confusion. I consider the Outlook variables as part of my form1 member so I think it is considered as part. I googled but found some and it is a little confusing. |
Forum: C# Dec 3rd, 2008 |
| Replies: 7 Views: 485 How can I access Outlook variables? Because I'm basing my progress form to the values taken from Outlook, like Outlook.Selection. |
Forum: C# Dec 3rd, 2008 |
| Replies: 7 Views: 485 Hello, I've been working with threading these days. I want to put a progress bar which is in a separate form but in the same namespace. My form1 class has all the controls for my drag and drop... |
Forum: C# Nov 27th, 2008 |
| Replies: 16 Views: 2,154 I now understand, thank you. I'm sorry for letting you post a snippet because I cannot understand well what you mean. Thanks again. |
Forum: C# Nov 27th, 2008 |
| Replies: 16 Views: 2,154 Thanks for the reply, can you show a snippet how to implement? |
Forum: C# Nov 27th, 2008 |
| Replies: 16 Views: 2,154 That is what the link exactly did only in VB. I think there is a way in C# but can't just find it. |
Forum: C# Nov 27th, 2008 |
| Replies: 16 Views: 2,154 This is what I meant
Outlook.Application app = new Outlook.Application();
Outlook.Selection oSel;
Outlook.Explorer oEx = app.ActiveExplorer;
oSel = oEx.Selection;
Object oItem; |
Forum: C# Nov 27th, 2008 |
| Replies: 16 Views: 2,154 The line strMessageClass = oItem.MessageClass
seems does not work in C#. oItem is of type Object. It throws an error. |
Forum: C# Nov 27th, 2008 |
| Replies: 16 Views: 2,154 I agree that MessageClass property will confirm which subtype is picked but I'm having a problem how to use it in C#. |
Forum: C# Nov 27th, 2008 |
| Replies: 0 Views: 532 Hello there, I'm having trouble of dropping items that reside on my ListView to the desktop or to any entity outside the form like the in outlook to make it as an attachment. I can now drag it using... |
Forum: C# Nov 26th, 2008 |
| Replies: 16 Views: 2,154 I'm so sorry, I didn't mean it. This is my test program seperated from my application.
private void Form1_Load(object sender, EventArgs e)
{
Outlook.Application app = new... |
Forum: C# Nov 26th, 2008 |
| Replies: 16 Views: 2,154 Thanks for the reply. I'm using VSTO Sir. My only problem right now is to filter the items that I'm dragging (whether it is a MailItem, MeetingItem, AppointmenItem etc.). The sample code in the link... |
Forum: C# Nov 26th, 2008 |
| Replies: 16 Views: 2,154 Hello there, I've been doing some research about the Outlook.Selection interface and made an application out of it. My goal is to get all of the items in my inbox folder. I have already created a way... |
Forum: C# Nov 25th, 2008 |
| Replies: 15 Views: 2,406 I just noticed that the content of the pop up shown in the link that you gave me is kind of different from the pop up in my Outlook. I have attached here the pop up that appears in my Outlook. Are... |
Forum: C# Nov 25th, 2008 |
| Replies: 15 Views: 2,406 Hello there again. I have managed to create the CheckAdminSettings and have its value as 1 but the pop-up is still showing. Any thoughts? |
Forum: C# Nov 24th, 2008 |
| Replies: 2 Views: 823 Thanks, I have already changed it. :) |
Forum: C# Nov 24th, 2008 |
| Replies: 2 Views: 823 Hello there, I've installed VSTO to my pc and I'm trying to make an application using the MS Office in my VS (2008). I've already added the reference to Microsoft.Office.Tools but when I compile it,... |
Forum: C# Nov 24th, 2008 |
| Replies: 15 Views: 2,406 Hello again sir, It seems that in my registry, I can't find the Software\Policies\Microsoft\Security folder. So it has n CheckAdminSettings. Any advice on what to do? I'm not really familiar with the... |
Forum: C# Nov 21st, 2008 |
| Replies: 0 Views: 333 Hello there guys, now that I have completed my drag and drop mail items from the outlook to my windows forms (you've been all very helpful, THANKS!), I am now doing the opposite. Dragging and... |
Forum: C# Nov 19th, 2008 |
| Replies: 15 Views: 2,406 Hello again, I have already changed the settings but the pop up still exists. I placed the editing of the registry on the loading of my form. This is what I did:
RegistryKey theKey =... |
Forum: C# Nov 19th, 2008 |
| Replies: 15 Views: 2,406 From where or what part of my application should I include the editing of the registry? In the drop event function or in a seperate function? Thanks! |
Forum: C# Nov 18th, 2008 |
| Replies: 15 Views: 2,406 Yes I have read it sir, thanks for the info. I'm not really that familiar with the registry work around. Uhmmm, the code snippet found in the article, should I place it in my application? |
Forum: C# Nov 18th, 2008 |
| Replies: 15 Views: 2,406 Yes, this is the message that I'm referring to. |