<?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 perl question in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287191#M44721</link>
    <description>i have array with values.i want to insert this array into text area one per line.up to now my code is............&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;my @res=[@res1,@res2];&lt;BR /&gt;my $tx-&amp;gt;insert('end', @res);&lt;BR /&gt;&lt;BR /&gt;text area display this result in same line.i want to display it value per line.&lt;BR /&gt;&lt;BR /&gt;pls any help..........</description>
    <pubDate>Wed, 15 Oct 2008 07:17:53 GMT</pubDate>
    <dc:creator>Pradeep Senevirathne</dc:creator>
    <dc:date>2008-10-15T07:17:53Z</dc:date>
    <item>
      <title>perl question</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287191#M44721</link>
      <description>i have array with values.i want to insert this array into text area one per line.up to now my code is............&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;my @res=[@res1,@res2];&lt;BR /&gt;my $tx-&amp;gt;insert('end', @res);&lt;BR /&gt;&lt;BR /&gt;text area display this result in same line.i want to display it value per line.&lt;BR /&gt;&lt;BR /&gt;pls any help..........</description>
      <pubDate>Wed, 15 Oct 2008 07:17:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287191#M44721</guid>
      <dc:creator>Pradeep Senevirathne</dc:creator>
      <dc:date>2008-10-15T07:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: perl question</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287192#M44722</link>
      <description>Well this has nothing to do with VMS, or VMS perl specific, You probably get more answers in a perl forum ...&lt;BR /&gt;but maybe Mr. Perl will answer later today :-)</description>
      <pubDate>Wed, 15 Oct 2008 08:54:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287192#M44722</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2008-10-15T08:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: perl question</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287193#M44723</link>
      <description>I don't know what Mr. Perl thinks, but I think you need to specify the question a bit more fully.  What is a "text area"?  What is the $tx object and what is its insert method documented to do (beyond the obvious)?&lt;BR /&gt;&lt;BR /&gt;A wild guess would be to call the insert method once for each line of output you want rather than once overall.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Oct 2008 19:02:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287193#M44723</guid>
      <dc:creator>Craig A Berry</dc:creator>
      <dc:date>2008-10-15T19:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: perl question</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287194#M44724</link>
      <description>how i post this question to perl forum.&lt;BR /&gt;&lt;BR /&gt;if i state my problem in more clearly...i have array with some values.and i want to insert that array into text box in perl tk.i think now you understand my point.&lt;BR /&gt;&lt;BR /&gt;thanks for your time&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Oct 2008 03:04:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287194#M44724</guid>
      <dc:creator>Pradeep Senevirathne</dc:creator>
      <dc:date>2008-10-16T03:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: perl question</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287195#M44725</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;The perl-tk forum:&lt;BR /&gt; &lt;A href="http://lists.cpan.org/showlist.cgi?name=beginning_perl_tk" target="_blank"&gt;http://lists.cpan.org/showlist.cgi?name=beginning_perl_tk&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Oct 2008 06:13:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287195#M44725</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2008-10-16T06:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: perl question</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287196#M44726</link>
      <description>depends on what type of widget $x is&lt;BR /&gt;&lt;BR /&gt;if $x is a ListBox widget,&lt;BR /&gt;&lt;BR /&gt;    $x-&amp;gt;insert ("end", @res1, @res2);&lt;BR /&gt;&lt;BR /&gt;would do what you require. If $x is a Text or ROText widget, you might want&lt;BR /&gt;&lt;BR /&gt;    $x-&amp;gt;insert ("1.0", join "\n", @res1, @res2);&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Mon, 20 Oct 2008 12:05:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287196#M44726</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2008-10-20T12:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: perl question</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287197#M44727</link>
      <description>thanks a lot merijin brand.great, it worked.</description>
      <pubDate>Tue, 21 Oct 2008 10:00:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/perl-question/m-p/4287197#M44727</guid>
      <dc:creator>Pradeep Senevirathne</dc:creator>
      <dc:date>2008-10-21T10:00:40Z</dc:date>
    </item>
  </channel>
</rss>

