<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Exporting Qlikview Objects To Outlook in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exporting-Qlikview-Objects-To-Outlook/m-p/378848#M141307</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This always happens to me. I find the answer 10 minutes after giving up and asking a forum..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyways I changed the line to "&lt;SPAN style="font-size: 8pt;"&gt;myDoc.Range(0,0).PasteSpecial False, False, 0, False, 5 "&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you can find more info here on why it should be like that -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/office/bb241758(v=office.12).aspx"&gt;http://msdn.microsoft.com/en-us/library/office/bb241758(v=office.12).aspx&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Aug 2012 12:11:41 GMT</pubDate>
    <dc:creator>felix18807</dc:creator>
    <dc:date>2012-08-17T12:11:41Z</dc:date>
    <item>
      <title>Exporting Qlikview Objects To Outlook</title>
      <link>https://community.qlik.com/t5/QlikView/Exporting-Qlikview-Objects-To-Outlook/m-p/378847#M141306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Please see the code below. I am trying to automate a system to push multiple qlickview objects into outlook. The issue I am encountering is that when you use the default paste the images resolution goes crazy. I believe the solution is to use pastespecial but I can't get the code right in this line :-&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;myDoc.Range(0,0).PasteSpecial Placement:=wdInLine, DataType:=wdPasteBitmap &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Has anyone got any experience of this or can offer any advice?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Many Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub SendMail&lt;BR /&gt;Set myApp = CreateObject ("Outlook.Application")&lt;BR /&gt;Set myMessage = myApp.CreateItem(olMailItem)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;myMessage.BodyFormat = 2 'HTMLFormat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;myMessage.To = "&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:XXXXXX@XXXXXXXXXX.com"&gt;XXXXXX@XXXXXXXXXX.com&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;BR /&gt;myMessage.Subject = "Qlikview Automated Email Testing"&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;myMessage.Attachments.Add("C:\Users\rbeeston\Desktop\XXXXXX.txt")&lt;BR /&gt;myMessage.Attachments.Add("C:\Users\rbeeston\Pictures\SNB.jpg")&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set myInspector = myMessage.GetInspector 'this inserts signature to e-mail&lt;BR /&gt;Set myDoc = myInspector.WordEditor&lt;BR /&gt;Set ol&lt;BR /&gt;myInspector.WordEditor.Content.InsertBefore chr(13)&lt;BR /&gt;myInspector.WordEditor.Content.InsertBefore chr(13)&lt;BR /&gt;ActiveDocument.GetSheetObject("TB02").CopyTableToClipboard TRUE&lt;BR /&gt;myDoc.Range(1,1).Paste&lt;BR /&gt;myInspector.WordEditor.Content.InsertAfter chr(13)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;myInspector.WordEditor.Content.InsertBefore chr(13)&lt;BR /&gt;myInspector.WordEditor.Content.InsertBefore chr(13)&lt;BR /&gt;ActiveDocument.GetSheetObject("CH02").CopyBitmapToClipboard &lt;BR /&gt;myDoc.Range(0,0).PasteSpecial Placement:=wdInLine, DataType:=wdPasteBitmap &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;myInspector.WordEditor.Content.InsertBefore chr(13)&lt;BR /&gt;myInspector.WordEditor.Content.InsertBefore chr(13)&lt;BR /&gt;myInspector.WordEditor.Content.InsertBefore "Dear Colleagues, " &amp;amp; chr(13) &amp;amp; chr(13) &amp;amp; "MESSAGEMESSAGEMESSAGEMESSAGEMESSAGEMESSAGEMESSAGEMESSAGEMESSAGEMESSAGEMESSAGEMESSAGE"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;myMessage.Display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set myMessage = Nothing &lt;BR /&gt;Set myApp = Nothing&lt;BR /&gt;Set myInspector = Nothing&lt;BR /&gt;Set myDoc = Nothing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;end sub &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2012 11:38:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exporting-Qlikview-Objects-To-Outlook/m-p/378847#M141306</guid>
      <dc:creator>felix18807</dc:creator>
      <dc:date>2012-08-17T11:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting Qlikview Objects To Outlook</title>
      <link>https://community.qlik.com/t5/QlikView/Exporting-Qlikview-Objects-To-Outlook/m-p/378848#M141307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This always happens to me. I find the answer 10 minutes after giving up and asking a forum..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyways I changed the line to "&lt;SPAN style="font-size: 8pt;"&gt;myDoc.Range(0,0).PasteSpecial False, False, 0, False, 5 "&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you can find more info here on why it should be like that -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/office/bb241758(v=office.12).aspx"&gt;http://msdn.microsoft.com/en-us/library/office/bb241758(v=office.12).aspx&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2012 12:11:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exporting-Qlikview-Objects-To-Outlook/m-p/378848#M141307</guid>
      <dc:creator>felix18807</dc:creator>
      <dc:date>2012-08-17T12:11:41Z</dc:date>
    </item>
  </channel>
</rss>

