![]() |
|
Contact Program
actually, lets not close this one just yet.
I have written the code for the form I created. However, I do not know how to run the from using a rule. and I don't know how to save a script that would open the form. Advice? Please and thankyou, Brian |
Contact Program
The "run a script" rule action in the Rules Wizard will give you an underlined link to click to choose the "script," which is actually the procedure you wrote in VBA, not a separate file.
-- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "BrianL" wrote in message ... actually, lets not close this one just yet. I have written the code for the form I created. However, I do not know how to run the from using a rule. and I don't know how to save a script that would open the form. Advice? Please and thankyou, Brian |
Contact Program
actually, I just posted a problem I found.
I have successfully written the code for my form. However, I do not know how to write a script or custom action that will open the form. I think the bigger problem is that I do not know how to save the script or action for use in a rule. "Sue Mosher [MVP-Outlook]" wrote: We'll be here if you get stumped, Brian. Have fun. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 |
Contact Program
Hi, I need to fetch my outlook contacts in a csv file using c#. I am able to do it by writing all the fields one by one in my data.csv. e.g. for (int i = 1; i = contactFld.Items.Count ; i++) { Outlook.ContactItem contact = (Outlook.ContactItem)contactFld.ItemsIdea; if (contact.Email1Address != null || contact.Email2Address != null || contact.Email3Address != null) { try { sw.Write(contact.FirstName); sw.Write("',"); sw.Write(contact.LastName); sw.Write("',"); sw.WriteLine(contact.Email1Address); } catch (Exception e1) { MessageBox.Show("Error"); } } } Now, instead of creating this .csv file, I want to fetch the .csv file diretly. Is there any method to fetch it directly from MAPIFolder element? Or any other way.. "BrianL" wrote: Thanks for all of your help here guys. The code that Eric gave me and the new approach Sue contributed will help me greatly. I would sit here and ask you to hold my hand through writing this code, but where's the accomplishment in that? haha Thanks again, Brian L (the 16 year old programmer :-P ) "Sue Mosher [MVP-Outlook]" wrote: Right, if you use those rule condition/exceptions, you won't have to do Step #2 at all. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 |
Contact Program
No, there aren't any built-in methods for importing (or exporting) to a CSV
file, you have to write your own code for that. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "satishsuman" wrote in message ... Hi, I need to fetch my outlook contacts in a csv file using c#. I am able to do it by writing all the fields one by one in my data.csv. e.g. for (int i = 1; i = contactFld.Items.Count ; i++) { Outlook.ContactItem contact = (Outlook.ContactItem)contactFld.ItemsIdea; if (contact.Email1Address != null || contact.Email2Address != null || contact.Email3Address != null) { try { sw.Write(contact.FirstName); sw.Write("',"); sw.Write(contact.LastName); sw.Write("',"); sw.WriteLine(contact.Email1Address); } catch (Exception e1) { MessageBox.Show("Error"); } } } Now, instead of creating this .csv file, I want to fetch the .csv file diretly. Is there any method to fetch it directly from MAPIFolder element? Or any other way.. |
All times are GMT +1. The time now is 07:08 AM. |
|
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com