<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title>www.ritlabs.com [Topic: Sending documents from Microsoft Word with the Bat]</title>
		<link>http://www.ritlabs.com</link>
		<description>New posts in Sending documents from Microsoft Word with the Bat of  forum at www.ritlabs.com [www.ritlabs.com]</description>
		<language>en</language>
		<docs>http://backend.userland.com/rss2</docs>
		<lastBuildDateTag>Fri, 06 Nov 2009 13:16:12 +0200</lastBuildDateTag>		<item>
			<title>Sending documents from Microsoft Word with the Bat</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic5990/message30367/">Sending documents from Microsoft Word with the Bat</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			Maybe someone want to try this:<br /><br /> &nbsp; &nbsp;Const wdFormatUnicodeText = 7<br /> &nbsp; &nbsp;tbPath = "D:\The Bat!\thebat.exe"<br /> &nbsp; &nbsp;ActiveDocument.SaveAs "c:\windows\temp\" & Name & ".txt", wdFormatUnicodeText<br /> &nbsp; &nbsp;a = ActiveDocument.FullName<br /> &nbsp; &nbsp;ActiveDocument.Close<br /> &nbsp; &nbsp;tbCMD = "/nologo /MAILU=ACCOUNT;F=Outbox;C=" & Chr(34) & a & Chr(34) & ";EDIT"<br /> &nbsp; &nbsp;Shell Chr(34) & tbPath & Chr(34) & " " & tbCMD, vbNormalFocus<br /><br />This script don't attach the *.doc file, it pastes text in the e-mail body <br />
			<i>06 November 2009 13:16:12, <a href="http://www.ritlabs.com/en/forums/">Dim Rim</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic5990/message30367/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic5990/message30367/</guid>
			<pubDate>Fri, 06 Nov 2009 13:16:12 +0200</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Sending documents from Microsoft Word with the Bat</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic5990/message23512/">Sending documents from Microsoft Word with the Bat</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			there must be single slashes in the line<br />tbPath = ....<br /><br />not sure if I put double slashes, or the board software. <br />Anyway replace double slashes with single, make sure the path is correct, and that ACCOUNT and PASSWORD are replaced with the correct values.<br /><br />Also make sure macro is started. For this purpose you may put as a first line<br /><br />Msgbox "Hello"<br /><br />and see if the message box appears - if not, the macro does not start<br /><br /> <br /> <br />
			<i>05 May 2008 22:57:19, <a href="http://www.ritlabs.com/en/forums/">bigg one</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic5990/message23512/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic5990/message23512/</guid>
			<pubDate>Mon, 05 May 2008 22:57:19 +0300</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Sending documents from Microsoft Word with the Bat</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic5990/message23499/">Sending documents from Microsoft Word with the Bat</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			I really tried this but it is not working. Maybe I'm a bit stupid after all..... <img src="http://www.ritlabs.com/bitrix/images/main/smiles/5/icon_redface.gif" border="0" data-code=":oops:" data-definition="SD" alt=":oops:" style="width:16px;height:16px;" title="" class="bx-smile" /> <br /><br />Thanks anyway! <br />
			<i>04 May 2008 17:56:39, <a href="http://www.ritlabs.com/en/forums/">Dutch Cub</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic5990/message23499/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic5990/message23499/</guid>
			<pubDate>Sun, 04 May 2008 17:56:39 +0300</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Sending documents from Microsoft Word with the Bat</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic5990/message23202/">Sending documents from Microsoft Word with the Bat</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			Here is how to do it with a word macro. File should be already saved.<br /><br />In word click Tools -&gt; Macro -&gt; Record new macro<br />Do some stuff, then stop recording (Tools -&gt; Macro -&gt; Stop recording).<br /><br />Then click Tools -&gt; Macro -&gt; Macros, select the macro and click Edit, this will open the VBA editor. Delete the code between Sub Macro1() and End Sub, and paste this code there (Sub Macro1() and End Sub &nbsp;must remain)<br /><br />
====code====
<pre>
&nbsp;&nbsp;&nbsp;&nbsp;tbPath = "C:&#92;&#92;Program Files&#92;&#92;The Bat!&#92;&#92;thebat.exe"
&nbsp;&nbsp;&nbsp;&nbsp;ActiveDocument.Save
&nbsp;&nbsp;&nbsp;&nbsp;a = ActiveDocument.FullName
&nbsp;&nbsp;&nbsp;&nbsp;tbCMD = "/MAILU=ACCOUNT;P=PASSWORD;F=Outbox;ATTACH=" &#38; Chr(34) &#38; a &#38; Chr(34) &#38; ";EDIT"
&nbsp;&nbsp;&nbsp;&nbsp;Shell Chr(34) &#38; tbPath &#38; Chr(34) &#38; " " &#38; tbCMD, vbNormalFocus
</pre>
=============
<br /><br />Modify tbPath to match the path to thebat.exe on your system.<br /><br />In the line tbCMD = ..., replace ACCOUNT with the name of an account you have in theBat; Replace PASSWORD with the password for that account, or if there is no password, remove &quot;P=PASSWORD;&quot;<br />Save macro and close VBA editor.<br /><br />You can assign a keyboard shortcut or a toolbar button to quickly execute the macro. <br />Result should be a new empty message with the currently edited .doc file attached. You can customize it to do exactly what you need.<br /><br /> <br />
			<i>12 April 2008 19:39:09, <a href="http://www.ritlabs.com/en/forums/">bigg one</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic5990/message23202/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic5990/message23202/</guid>
			<pubDate>Sat, 12 Apr 2008 19:39:09 +0300</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Sending documents from Microsoft Word with the Bat</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic5990/message23201/">Sending documents from Microsoft Word with the Bat</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			I don't see it either. I have TB 4.0.18 and Windows Vista. I also really need this function for an auction management software.<br /><br />Keith <br />
			<i>12 April 2008 15:18:50, <a href="http://www.ritlabs.com/en/forums/">Keith Bowman</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic5990/message23201/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic5990/message23201/</guid>
			<pubDate>Sat, 12 Apr 2008 15:18:50 +0300</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Sending documents from Microsoft Word with the Bat</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic5990/message23199/">Sending documents from Microsoft Word with the Bat</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			Thanks Roelof,<br /><br />It's a relief that I'm not that stupid after all. &nbsp;<img src="http://www.ritlabs.com/bitrix/images/main/smiles/5/icon_wink.gif" border="0" data-code=";)" data-definition="SD" alt=";)" style="width:16px;height:16px;" title="" class="bx-smile" /> <br />But I still have no solution. Anyone who can help me with this one?<br /><br />Thanks,<br />Dutchcub <br />
			<i>12 April 2008 10:35:37, <a href="http://www.ritlabs.com/en/forums/">Dutch Cub</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic5990/message23199/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic5990/message23199/</guid>
			<pubDate>Sat, 12 Apr 2008 10:35:37 +0300</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Sending documents from Microsoft Word with the Bat</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic5990/message23174/">Sending documents from Microsoft Word with the Bat</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			It has nothing to do with the Dutch translation. I don't see it either, doesn't matter whether I'm using the Dutch interface or the English one.<br /><br />It might have something to do with the OS you're using. I'm using Vista and I don't se it, even though I do rememeber seeing it with XP (but I haven't checked it with my notebook that's still running XP, so that might prove me wrong) <br />
			<i>11 April 2008 01:18:06, <a href="http://www.ritlabs.com/en/forums/">Roelof Otten</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic5990/message23174/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic5990/message23174/</guid>
			<pubDate>Fri, 11 Apr 2008 01:18:06 +0300</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Sending documents from Microsoft Word with the Bat</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic5990/message23173/">Sending documents from Microsoft Word with the Bat</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			I am starting to think I'm not very clever but I really don't see the function 'Install The Bat! as Simple Mapi request Handler'. <br /><br />I use The Bat Pro 4.0.18. In the Bat I go to Options &gt; Preferences &gt; and then in de left colom I choose 'applications' and really don't see any options. Maybe it has to do with the Dutch translation, I'm not sure.<br /><br />Dutchcub <br />
			<i>11 April 2008 00:21:17, <a href="http://www.ritlabs.com/en/forums/">Dutch Cub</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic5990/message23173/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic5990/message23173/</guid>
			<pubDate>Fri, 11 Apr 2008 00:21:17 +0300</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Sending documents from Microsoft Word with the Bat</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic5990/message22907/">Sending documents from Microsoft Word with the Bat</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			Hello,<br /><br />Take a look again. You must see this function.<br /><br />In the window Applications, it is the 2nd part, down. <br />
			<i>30 March 2008 18:25:01, <a href="http://www.ritlabs.com/en/forums/">Sacles</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic5990/message22907/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic5990/message22907/</guid>
			<pubDate>Sun, 30 Mar 2008 18:25:01 +0300</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Sending documents from Microsoft Word with the Bat</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic5990/message22899/">Sending documents from Microsoft Word with the Bat</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			Thanks for your replies but I can't figure it out. <br />When I look under Options &gt; Preferences &gt; Applicantions, I don't see Install The Bat! as Simple Mapi request Handler<br /><br />And Bigg One, I don't know how to do what you suggest. It looks very complicated to me.<br /><br />Dutchcub <br />
			<i>30 March 2008 01:21:30, <a href="http://www.ritlabs.com/en/forums/">Dutch Cub</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic5990/message22899/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic5990/message22899/</guid>
			<pubDate>Sun, 30 Mar 2008 01:21:30 +0200</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Sending documents from Microsoft Word with the Bat</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic5990/message22893/">Sending documents from Microsoft Word with the Bat</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			Hello,<br /><br />In The Bat!: Options &gt; Preferences &gt; Applications &gt; Install The Bat! as Simple Mapi request Handler<br /><br />In Word: File &gt; Send To &gt; ...<br /><br />MAPI = Mail Application Programming Interface.<br /> <br />
			<i>29 March 2008 07:13:50, <a href="http://www.ritlabs.com/en/forums/">Sacles</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic5990/message22893/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic5990/message22893/</guid>
			<pubDate>Sat, 29 Mar 2008 07:13:50 +0200</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Sending documents from Microsoft Word with the Bat</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic5990/message22891/">Sending documents from Microsoft Word with the Bat</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			If you want to attach the currently edited file to an email, I guess you should write a macro in Word's VBA editor (ALT+F11) that saves the current file and then sends a /MAIL command to thebat.exe <br />
			<i>29 March 2008 00:23:13, <a href="http://www.ritlabs.com/en/forums/">bigg one</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic5990/message22891/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic5990/message22891/</guid>
			<pubDate>Sat, 29 Mar 2008 00:23:13 +0200</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Sending documents from Microsoft Word with the Bat</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic5990/message22873/">Sending documents from Microsoft Word with the Bat</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			Hello,<br /><br />I can't find a way to configure The Bat for sending documents from Microsoft Word rightaway. I only see options for Outlook. Is there a solution?<br /><br />Thanks,<br />Dutchcub <br />
			<i>28 March 2008 11:01:07, <a href="http://www.ritlabs.com/en/forums/">Dutch Cub</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic5990/message22873/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic5990/message22873/</guid>
			<pubDate>Fri, 28 Mar 2008 11:01:07 +0200</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
	</channel>
</rss>
