<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'random colour' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'random colour' posted on the 'Pascal' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Tue, 18 Jun 2013 23:56:00 -0700</pubDate>
    <lastBuildDate>Tue, 18 Jun 2013 23:56:00 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>random colour</title>
      <link>http://www.programmersheaven.com/mb/pasprog/288361/288361/random-colour/</link>
      <description>How to change the textcolour repeatly??&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/288361/288361/random-colour/</guid>
      <pubDate>Thu, 13 Jan 2005 07:37:31 -0700</pubDate>
      <category>Pascal</category>
    </item>
    <item>
      <title>Re: random colour</title>
      <link>http://www.programmersheaven.com/mb/pasprog/288361/288387/re-random-colour/#288387</link>
      <description>: How to change the textcolour repeatly??&lt;br /&gt;
: &lt;br /&gt;
Here is a small example code, which changes both the text and background color of the word 'Hello' every second, until the user presses a key.&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
repeat
  TextColor(Random(16)+1);
  TextBackground(Random(16)+1);
  GotoXY(1, 1);
  writeln('Hello');  
  Delay(1000);
until Keypressed;
Readkey;
&lt;/pre&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/288361/288387/re-random-colour/#288387</guid>
      <pubDate>Thu, 13 Jan 2005 11:18:31 -0700</pubDate>
      <category>Pascal</category>
    </item>
  </channel>
</rss>