<?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 Create Text box x20 in VBA in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-Text-box-x20-in-VBA/m-p/1184338#M383375</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;I'm looking for a code to create &lt;STRONG&gt;x&lt;/STRONG&gt; (5,10.....)numbers of Textboxes.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;With&amp;nbsp; the ability to change parameters (Width and Hight) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Sep 2016 15:20:46 GMT</pubDate>
    <dc:creator>robert_mika</dc:creator>
    <dc:date>2016-09-27T15:20:46Z</dc:date>
    <item>
      <title>Create Text box x20 in VBA</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Text-box-x20-in-VBA/m-p/1184338#M383375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;I'm looking for a code to create &lt;STRONG&gt;x&lt;/STRONG&gt; (5,10.....)numbers of Textboxes.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;With&amp;nbsp; the ability to change parameters (Width and Hight) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Sep 2016 15:20:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Text-box-x20-in-VBA/m-p/1184338#M383375</guid>
      <dc:creator>robert_mika</dc:creator>
      <dc:date>2016-09-27T15:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: Create Text box x20 in VBA</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Text-box-x20-in-VBA/m-p/1184339#M383376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe this will get you started:&lt;/P&gt;&lt;P&gt;sub test&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; for i = 1 to 20&lt;/P&gt;&lt;P&gt;&amp;nbsp; set mytext = ActiveDocument.ActiveSheet.CreateTextObject&lt;/P&gt;&lt;P&gt;&amp;nbsp; strObjID = mytext.GetObjectID&lt;/P&gt;&lt;P&gt;&amp;nbsp; set fr = mytext.GetFrameDef&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pos = fr.Rect&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pos.Top = i*60&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pos.Left = i*60&lt;/P&gt;&lt;P&gt;&amp;nbsp; pos.Width = 60&lt;/P&gt;&lt;P&gt;&amp;nbsp; pos.Height = 90&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mytext.SetFrameDef fr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ' strBkgColor =&amp;nbsp; BkgColor(strEventType)&lt;/P&gt;&lt;P&gt;&amp;nbsp; '&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strBkgColor = "200,200,200"&lt;/P&gt;&lt;P&gt;&amp;nbsp; BGColorArray = Split(strBkgColor, ",", -1, 1)&lt;/P&gt;&lt;P&gt;&amp;nbsp; set prop = mytext.GetProperties&lt;/P&gt;&lt;P&gt;&amp;nbsp; prop.Layout.Text.v = strObjID&lt;/P&gt;&lt;P&gt;&amp;nbsp; ' prop.Layout.Frame.HelpText.v =strNewObjectID&lt;/P&gt;&lt;P&gt;&amp;nbsp; prop.Layout.BkgAlpha = 255&amp;nbsp; 'Transparency 0%&lt;/P&gt;&lt;P&gt;&amp;nbsp; ' prop.Layout.BkgColor.PrimaryCol.Col = RGB(CInt(BGColorArray(0)),CInt(BGColorArray(1)),CInt(BGColorArray(2)))&lt;/P&gt;&lt;P&gt;&amp;nbsp; prop.Layout.TextColor.PrimaryCol.Col = RGB(0,0,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; prop.Layout.Frame.ZedLevel = 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; prop.Layout.Frame.Show.Always = true&lt;/P&gt;&lt;P&gt;&amp;nbsp; prop.Layout.Frame.Show.Expression.v = 0 &lt;/P&gt;&lt;P&gt;&amp;nbsp; prop.Layout.BottomMargin = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; prop.Layout.TopMargin = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; prop.Layout.LeftMargin = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; prop.Layout.RightMargin = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; mytext.SetProperties prop&lt;/P&gt;&lt;P&gt;&amp;nbsp; next&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Sep 2016 16:49:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Text-box-x20-in-VBA/m-p/1184339#M383376</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2016-09-27T16:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: Create Text box x20 in VBA</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Text-box-x20-in-VBA/m-p/1184340#M383377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;I'm getting error:&lt;/P&gt;&lt;P&gt;'Expected statement'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/138895_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Sep 2016 20:31:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Text-box-x20-in-VBA/m-p/1184340#M383377</guid>
      <dc:creator>robert_mika</dc:creator>
      <dc:date>2016-09-27T20:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: Create Text box x20 in VBA</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Text-box-x20-in-VBA/m-p/1184341#M383378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The code works for me. I have attached a qvw.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2016 12:02:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Text-box-x20-in-VBA/m-p/1184341#M383378</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2016-09-28T12:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Create Text box x20 in VBA</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Text-box-x20-in-VBA/m-p/1184342#M383379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you m w.&lt;/P&gt;&lt;P&gt;Silly mistake from my side:&lt;/P&gt;&lt;P&gt;Forgot the first sub line...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2016 12:26:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Text-box-x20-in-VBA/m-p/1184342#M383379</guid>
      <dc:creator>robert_mika</dc:creator>
      <dc:date>2016-09-28T12:26:54Z</dc:date>
    </item>
  </channel>
</rss>

