<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Marco's .NET Blog &#187; VBA</title>
	<atom:link href="http://www.fulda-west.de/blog/category/vba/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fulda-west.de/blog</link>
	<description>just about my work on .NET</description>
	<lastBuildDate>Thu, 10 Jun 2010 19:56:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>VBA :: Termin in Outlook anlegen</title>
		<link>http://www.fulda-west.de/blog/2008/12/vba-termin-in-outlook-anlegen/</link>
		<comments>http://www.fulda-west.de/blog/2008/12/vba-termin-in-outlook-anlegen/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 13:00:27 +0000</pubDate>
		<dc:creator>mherbert</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[Calender]]></category>
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://www.fulda-west.de/blog/?p=106</guid>
		<description><![CDATA[Jetzt habe ich einen Webkalender erstellt und der Ruf nach der Übernahme nach Outlook wird lauter.
Also hier der erste Code-Schnippsel, um in Outlook (per VBA) einen Termin anzulegen:
Sub CreateEvent()
   Set objOUTL = CreateObject(&#8220;Outlook.Application&#8221;)
   Set appOUTL = objOUTL.CreateItem(1)
   With appOUTL
      .Start = &#8220;01.01.2009 10:00&#8243;
      .Duration = 30
      .Subject = &#8220;Das ist ein Testtermin&#8221;
      .AllDayEvent = False
      .Save
   End [...]]]></description>
		<wfw:commentRss>http://www.fulda-west.de/blog/2008/12/vba-termin-in-outlook-anlegen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
