| Article Discussion: Sending configurable SMTP email from within BizTalk Orchestration |
| BiZTech Know posted at Saturday, February 06, 2010 3:55 PM |
 |
| |
|
| re: Article Discussion: Sending configurable SMTP email from within BizTalk Orchestration |
| sanela replied to BiZTech Know at Friday, February 26, 2010 2:39 AM |
| end of post |
 |
| |
|
| re: Article Discussion: Sending configurable SMTP email from within BizTalk Orchestration |
| sanela replied to BiZTech Know at Friday, February 26, 2010 2:39 AM |
| end of post |
 |
| |
|
| re: Article Discussion: Sending configurable SMTP email from within BizTalk Orch |
| eliza replied to sanela at Friday, April 23, 2010 8:57 AM |
|
Following is the code sample used to display the outlook folder dialog using VB.NET
[VB.NET CODE STARTS]
Dim objOutlook As Object
Dim objOlNamespace As Object
Dim objOlFolder As Object
objOutlook = CreateObject("Outlook.Application") ' create outlook application object at the run time
objOlNamespace = objOutlook.GetNamespace("MAPI")
objOlFolder = objContactsNS.PickFolder ' displays the folder dialog
[VB.NET CODE ENDS]
|
 |
| |
|