<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'doubt in clrscr' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'doubt in clrscr' posted on the 'Pascal' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sat, 18 May 2013 15:43:48 -0700</pubDate>
    <lastBuildDate>Sat, 18 May 2013 15:43:48 -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>doubt in clrscr</title>
      <link>http://www.programmersheaven.com/mb/pasprog/181357/181357/doubt-in-clrscr/</link>
      <description>Hai friends,&lt;br /&gt;
Iam using Turbo Pascal 7.0. &lt;br /&gt;
&lt;br /&gt;
In this simple program:&lt;br /&gt;
&lt;br /&gt;
program test(input,output);&lt;br /&gt;
begin&lt;br /&gt;
 clrscr;&lt;br /&gt;
 writeln;&lt;br /&gt;
 Writeln('Hello');&lt;br /&gt;
 Readln;&lt;br /&gt;
end.&lt;br /&gt;
&lt;br /&gt;
Here, in this program in line 3 (ie) clrscr; &lt;br /&gt;
&lt;br /&gt;
Its giving an error saying unknown identifier.&lt;br /&gt;
&lt;br /&gt;
I want to clear the screen and show the output.&lt;br /&gt;
&lt;br /&gt;
Kindly advice me as regards this.&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
Uma.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/181357/181357/doubt-in-clrscr/</guid>
      <pubDate>Sun, 06 Apr 2003 22:11:06 -0700</pubDate>
      <category>Pascal</category>
    </item>
    <item>
      <title>Re: doubt in clrscr</title>
      <link>http://www.programmersheaven.com/mb/pasprog/181357/181365/re-doubt-in-clrscr/#181365</link>
      <description>: Hai friends,&lt;br /&gt;
: Iam using Turbo Pascal 7.0. &lt;br /&gt;
: &lt;br /&gt;
: In this simple program:&lt;br /&gt;
: &lt;br /&gt;
: program test(input,output);&lt;br /&gt;
: begin&lt;br /&gt;
:  clrscr;&lt;br /&gt;
:  writeln;&lt;br /&gt;
:  Writeln('Hello');&lt;br /&gt;
:  Readln;&lt;br /&gt;
: end.&lt;br /&gt;
: &lt;br /&gt;
: Here, in this program in line 3 (ie) clrscr; &lt;br /&gt;
: &lt;br /&gt;
: Its giving an error saying unknown identifier.&lt;br /&gt;
: &lt;br /&gt;
: I want to clear the screen and show the output.&lt;br /&gt;
: &lt;br /&gt;
: Kindly advice me as regards this.&lt;br /&gt;
: &lt;br /&gt;
: Regards&lt;br /&gt;
: Uma.&lt;br /&gt;
: &lt;br /&gt;
If you look at the help file page on the clrscr procedure, you will see that it is located in the Crt or WinCrt unit. Your program needs to use this unit to compile correctly.&lt;br /&gt;
Hint: An unknown identifier always happens because of one of three reasons. Here they are with their solutions:&lt;br /&gt;
- The unit which holds the identifier is not in the uses list. Solution: add the unit to the uses list.&lt;br /&gt;
- A typing error was made in the identifier. Solution: correct the error.&lt;br /&gt;
- The identifier is truly unknown. Solution: declare the identifier before the line in which it is used.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/181357/181365/re-doubt-in-clrscr/#181365</guid>
      <pubDate>Sun, 06 Apr 2003 23:16:16 -0700</pubDate>
      <category>Pascal</category>
    </item>
    <item>
      <title>Re: doubt in clrscr</title>
      <link>http://www.programmersheaven.com/mb/pasprog/181357/181383/re-doubt-in-clrscr/#181383</link>
      <description>: : Hai friends,&lt;br /&gt;
: : Iam using Turbo Pascal 7.0. &lt;br /&gt;
: : &lt;br /&gt;
: : In this simple program:&lt;br /&gt;
: : &lt;br /&gt;
: : program test(input,output);&lt;br /&gt;
: : begin&lt;br /&gt;
: :  clrscr;&lt;br /&gt;
: :  writeln;&lt;br /&gt;
: :  Writeln('Hello');&lt;br /&gt;
: :  Readln;&lt;br /&gt;
: : end.&lt;br /&gt;
: : &lt;br /&gt;
: : Here, in this program in line 3 (ie) clrscr; &lt;br /&gt;
: : &lt;br /&gt;
: : Its giving an error saying unknown identifier.&lt;br /&gt;
: : &lt;br /&gt;
: : I want to clear the screen and show the output.&lt;br /&gt;
: : &lt;br /&gt;
: : Kindly advice me as regards this.&lt;br /&gt;
: : &lt;br /&gt;
: : Regards&lt;br /&gt;
: : Uma.&lt;br /&gt;
: : &lt;br /&gt;
: If you look at the help file page on the clrscr procedure, you will see that it is located in the Crt or WinCrt unit. Your program needs to use this unit to compile correctly.&lt;br /&gt;
: Hint: An unknown identifier always happens because of one of three reasons. Here they are with their solutions:&lt;br /&gt;
: - The unit which holds the identifier is not in the uses list. Solution: add the unit to the uses list.&lt;br /&gt;
: - A typing error was made in the identifier. Solution: correct the error.&lt;br /&gt;
: - The identifier is truly unknown. Solution: declare the identifier before the line in which it is used.&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hai,&lt;br /&gt;
Thanx for ur reply. But I have added uses Crt in the program &lt;br /&gt;
&lt;br /&gt;
(ie)&lt;br /&gt;
program test(input,output); &lt;br /&gt;
uses Crt;&lt;br /&gt;
 begin &lt;br /&gt;
 clrscr; &lt;br /&gt;
 writeln; &lt;br /&gt;
 Writeln('Hello'); &lt;br /&gt;
 Readln; &lt;br /&gt;
 end. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
But its giving a runtime error as Division by zero for this. Plz help me as Iam desperate.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/181357/181383/re-doubt-in-clrscr/#181383</guid>
      <pubDate>Mon, 07 Apr 2003 01:35:16 -0700</pubDate>
      <category>Pascal</category>
    </item>
    <item>
      <title>Re: doubt in clrscr</title>
      <link>http://www.programmersheaven.com/mb/pasprog/181357/181385/re-doubt-in-clrscr/#181385</link>
      <description>: : : Hai friends,&lt;br /&gt;
: : : Iam using Turbo Pascal 7.0. &lt;br /&gt;
: : : &lt;br /&gt;
: : : In this simple program:&lt;br /&gt;
: : : &lt;br /&gt;
: : : program test(input,output);&lt;br /&gt;
: : : begin&lt;br /&gt;
: : :  clrscr;&lt;br /&gt;
: : :  writeln;&lt;br /&gt;
: : :  Writeln('Hello');&lt;br /&gt;
: : :  Readln;&lt;br /&gt;
: : : end.&lt;br /&gt;
: : : &lt;br /&gt;
: : : Here, in this program in line 3 (ie) clrscr; &lt;br /&gt;
: : : &lt;br /&gt;
: : : Its giving an error saying unknown identifier.&lt;br /&gt;
: : : &lt;br /&gt;
: : : I want to clear the screen and show the output.&lt;br /&gt;
: : : &lt;br /&gt;
: : : Kindly advice me as regards this.&lt;br /&gt;
: : : &lt;br /&gt;
: : : Regards&lt;br /&gt;
: : : Uma.&lt;br /&gt;
: : : &lt;br /&gt;
: : If you look at the help file page on the clrscr procedure, you will see that it is located in the Crt or WinCrt unit. Your program needs to use this unit to compile correctly.&lt;br /&gt;
: : Hint: An unknown identifier always happens because of one of three reasons. Here they are with their solutions:&lt;br /&gt;
: : - The unit which holds the identifier is not in the uses list. Solution: add the unit to the uses list.&lt;br /&gt;
: : - A typing error was made in the identifier. Solution: correct the error.&lt;br /&gt;
: : - The identifier is truly unknown. Solution: declare the identifier before the line in which it is used.&lt;br /&gt;
: : &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: Hai,&lt;br /&gt;
: Thanx for ur reply. But I have added uses Crt in the program &lt;br /&gt;
: &lt;br /&gt;
: (ie)&lt;br /&gt;
: program test(input,output); &lt;br /&gt;
: uses Crt;&lt;br /&gt;
:  begin &lt;br /&gt;
:  clrscr; &lt;br /&gt;
:  writeln; &lt;br /&gt;
:  Writeln('Hello'); &lt;br /&gt;
:  Readln; &lt;br /&gt;
:  end. &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: But its giving a runtime error as Division by zero for this. Plz help me as Iam desperate.&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
Under several newer windows versions the crt gives that error. There are several patches on the internet. You can find them using google with "turbo pascal crt patch" search string.&lt;br /&gt;
If you don't want to patch your crt, you can always writeln() 25 empty lines onto your screen.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/181357/181385/re-doubt-in-clrscr/#181385</guid>
      <pubDate>Mon, 07 Apr 2003 01:54:03 -0700</pubDate>
      <category>Pascal</category>
    </item>
    <item>
      <title>Re: doubt in clrscr</title>
      <link>http://www.programmersheaven.com/mb/pasprog/181357/181595/re-doubt-in-clrscr/#181595</link>
      <description>: : : : Hai friends,&lt;br /&gt;
: : : : Iam using Turbo Pascal 7.0. &lt;br /&gt;
: : : : &lt;br /&gt;
: : : : In this simple program:&lt;br /&gt;
: : : : &lt;br /&gt;
: : : : program test(input,output);&lt;br /&gt;
: : : : begin&lt;br /&gt;
: : : :  clrscr;&lt;br /&gt;
: : : :  writeln;&lt;br /&gt;
: : : :  Writeln('Hello');&lt;br /&gt;
: : : :  Readln;&lt;br /&gt;
: : : : end.&lt;br /&gt;
: : : : &lt;br /&gt;
: : : : Here, in this program in line 3 (ie) clrscr; &lt;br /&gt;
: : : : &lt;br /&gt;
: : : : Its giving an error saying unknown identifier.&lt;br /&gt;
: : : : &lt;br /&gt;
: : : : I want to clear the screen and show the output.&lt;br /&gt;
: : : : &lt;br /&gt;
: : : : Kindly advice me as regards this.&lt;br /&gt;
: : : : &lt;br /&gt;
: : : : Regards&lt;br /&gt;
: : : : Uma.&lt;br /&gt;
: : : : &lt;br /&gt;
: : : If you look at the help file page on the clrscr procedure, you will see that it is located in the Crt or WinCrt unit. Your program needs to use this unit to compile correctly.&lt;br /&gt;
: : : Hint: An unknown identifier always happens because of one of three reasons. Here they are with their solutions:&lt;br /&gt;
: : : - The unit which holds the identifier is not in the uses list. Solution: add the unit to the uses list.&lt;br /&gt;
: : : - A typing error was made in the identifier. Solution: correct the error.&lt;br /&gt;
: : : - The identifier is truly unknown. Solution: declare the identifier before the line in which it is used.&lt;br /&gt;
: : : &lt;br /&gt;
: : &lt;br /&gt;
: : &lt;br /&gt;
: : &lt;br /&gt;
: : &lt;br /&gt;
: : &lt;br /&gt;
: : &lt;br /&gt;
: : Hai,&lt;br /&gt;
: : Thanx for ur reply. But I have added uses Crt in the program &lt;br /&gt;
: : &lt;br /&gt;
: : (ie)&lt;br /&gt;
: : program test(input,output); &lt;br /&gt;
: : uses Crt;&lt;br /&gt;
: :  begin &lt;br /&gt;
: :  clrscr; &lt;br /&gt;
: :  writeln; &lt;br /&gt;
: :  Writeln('Hello'); &lt;br /&gt;
: :  Readln; &lt;br /&gt;
: :  end. &lt;br /&gt;
: : &lt;br /&gt;
: : &lt;br /&gt;
: : But its giving a runtime error as Division by zero for this. Plz help me as Iam desperate.&lt;br /&gt;
: : &lt;br /&gt;
: : &lt;br /&gt;
: : &lt;br /&gt;
: : &lt;br /&gt;
: Under several newer windows versions the crt gives that error. There are several patches on the internet. You can find them using google with "turbo pascal crt patch" search string.&lt;br /&gt;
: If you don't want to patch your crt, you can always writeln() 25 empty lines onto your screen.&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hai &lt;br /&gt;
thanx for ur reply yaa. But its giving some error message if i give&lt;br /&gt;
writeln() 25 &lt;br /&gt;
Can u tell me the exact syntax for this plz&lt;br /&gt;
thanx&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/181357/181595/re-doubt-in-clrscr/#181595</guid>
      <pubDate>Mon, 07 Apr 2003 19:34:49 -0700</pubDate>
      <category>Pascal</category>
    </item>
    <item>
      <title>Re: doubt in clrscr</title>
      <link>http://www.programmersheaven.com/mb/pasprog/181357/181614/re-doubt-in-clrscr/#181614</link>
      <description>: : : : : Hai friends,&lt;br /&gt;
: : : : : Iam using Turbo Pascal 7.0. &lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : In this simple program:&lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : program test(input,output);&lt;br /&gt;
: : : : : begin&lt;br /&gt;
: : : : :  clrscr;&lt;br /&gt;
: : : : :  writeln;&lt;br /&gt;
: : : : :  Writeln('Hello');&lt;br /&gt;
: : : : :  Readln;&lt;br /&gt;
: : : : : end.&lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : Here, in this program in line 3 (ie) clrscr; &lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : Its giving an error saying unknown identifier.&lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : I want to clear the screen and show the output.&lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : Kindly advice me as regards this.&lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : Regards&lt;br /&gt;
: : : : : Uma.&lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : If you look at the help file page on the clrscr procedure, you will see that it is located in the Crt or WinCrt unit. Your program needs to use this unit to compile correctly.&lt;br /&gt;
: : : : Hint: An unknown identifier always happens because of one of three reasons. Here they are with their solutions:&lt;br /&gt;
: : : : - The unit which holds the identifier is not in the uses list. Solution: add the unit to the uses list.&lt;br /&gt;
: : : : - A typing error was made in the identifier. Solution: correct the error.&lt;br /&gt;
: : : : - The identifier is truly unknown. Solution: declare the identifier before the line in which it is used.&lt;br /&gt;
: : : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : Hai,&lt;br /&gt;
: : : Thanx for ur reply. But I have added uses Crt in the program &lt;br /&gt;
: : : &lt;br /&gt;
: : : (ie)&lt;br /&gt;
: : : program test(input,output); &lt;br /&gt;
: : : uses Crt;&lt;br /&gt;
: : :  begin &lt;br /&gt;
: : :  clrscr; &lt;br /&gt;
: : :  writeln; &lt;br /&gt;
: : :  Writeln('Hello'); &lt;br /&gt;
: : :  Readln; &lt;br /&gt;
: : :  end. &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : But its giving a runtime error as Division by zero for this. Plz help me as Iam desperate.&lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : Under several newer windows versions the crt gives that error. There are several patches on the internet. You can find them using google with "turbo pascal crt patch" search string.&lt;br /&gt;
: : If you don't want to patch your crt, you can always writeln() 25 empty lines onto your screen.&lt;br /&gt;
: : &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: Hai &lt;br /&gt;
: thanx for ur reply yaa. But its giving some error message if i give&lt;br /&gt;
: writeln() 25 &lt;br /&gt;
: Can u tell me the exact syntax for this plz&lt;br /&gt;
: thanx&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
&lt;pre class="sourcecode"&gt;
  for i := 1 to 25 do
    writeln;
&lt;/pre&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/181357/181614/re-doubt-in-clrscr/#181614</guid>
      <pubDate>Mon, 07 Apr 2003 22:08:35 -0700</pubDate>
      <category>Pascal</category>
    </item>
    <item>
      <title>Re: doubt in clrscr</title>
      <link>http://www.programmersheaven.com/mb/pasprog/181357/181686/re-doubt-in-clrscr/#181686</link>
      <description>: : : : : Hai friends,&lt;br /&gt;
: : : : : Iam using Turbo Pascal 7.0. &lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : In this simple program:&lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : program test(input,output);&lt;br /&gt;
: : : : : begin&lt;br /&gt;
: : : : :  clrscr;&lt;br /&gt;
: : : : :  writeln;&lt;br /&gt;
: : : : :  Writeln('Hello');&lt;br /&gt;
: : : : :  Readln;&lt;br /&gt;
: : : : : end.&lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : Here, in this program in line 3 (ie) clrscr; &lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : Its giving an error saying unknown identifier.&lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : I want to clear the screen and show the output.&lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : Kindly advice me as regards this.&lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : : Regards&lt;br /&gt;
: : : : : Uma.&lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : If you look at the help file page on the clrscr procedure, you will see that it is located in the Crt or WinCrt unit. Your program needs to use this unit to compile correctly.&lt;br /&gt;
: : : : Hint: An unknown identifier always happens because of one of three reasons. Here they are with their solutions:&lt;br /&gt;
: : : : - The unit which holds the identifier is not in the uses list. Solution: add the unit to the uses list.&lt;br /&gt;
: : : : - A typing error was made in the identifier. Solution: correct the error.&lt;br /&gt;
: : : : - The identifier is truly unknown. Solution: declare the identifier before the line in which it is used.&lt;br /&gt;
: : : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : Hai,&lt;br /&gt;
: : : Thanx for ur reply. But I have added uses Crt in the program &lt;br /&gt;
: : : &lt;br /&gt;
: : : (ie)&lt;br /&gt;
: : : program test(input,output); &lt;br /&gt;
: : : uses Crt;&lt;br /&gt;
: : :  begin &lt;br /&gt;
: : :  clrscr; &lt;br /&gt;
: : :  writeln; &lt;br /&gt;
: : :  Writeln('Hello'); &lt;br /&gt;
: : :  Readln; &lt;br /&gt;
: : :  end. &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : But its giving a runtime error as Division by zero for this. Plz help me as Iam desperate.&lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : &lt;br /&gt;
: : Under several newer windows versions the crt gives that error. There are several patches on the internet. You can find them using google with "turbo pascal crt patch" search string.&lt;br /&gt;
: : If you don't want to patch your crt, you can always writeln() 25 empty lines onto your screen.&lt;br /&gt;
: : &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: Hai &lt;br /&gt;
: thanx for ur reply yaa. But its giving some error message if i give&lt;br /&gt;
: writeln() 25 &lt;br /&gt;
: Can u tell me the exact syntax for this plz&lt;br /&gt;
: thanx&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you include the CRT unit in your uses statement it will give you the divide by 0 error even if you dont call any of the functions it contains.  The problem is in the initialization.  So for instance:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
program test;

uses crt;

var i: integer
begin
  for i := 1 to 25 do
    writeln;
end.
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
That code will still give you the runtime error.  You didnt call ClrScr() or any other function from the Crt unit, but it'll happen anyway.&lt;br /&gt;
&lt;br /&gt;
The best solution is to search for the patch as zibadian suggested.  There may come a time when you cant use a workaround like using WriteLn 25 times, so you'll need it then anyway.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/181357/181686/re-doubt-in-clrscr/#181686</guid>
      <pubDate>Tue, 08 Apr 2003 06:11:33 -0700</pubDate>
      <category>Pascal</category>
    </item>
    <item>
      <title>Re: doubt in clrscr</title>
      <link>http://www.programmersheaven.com/mb/pasprog/181357/185005/re-doubt-in-clrscr/#185005</link>
      <description>you can as well try to set the mode again.&lt;br /&gt;
as side effect the screen will be cleared.&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
function set_text_mode;assembler;
asm
  mov ax,3
  int 16
end;
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
the downside is, it is not all that fast plus&lt;br /&gt;
if you are running in a dos-box, it will maximize&lt;br /&gt;
window.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/181357/185005/re-doubt-in-clrscr/#185005</guid>
      <pubDate>Thu, 24 Apr 2003 17:30:01 -0700</pubDate>
      <category>Pascal</category>
    </item>
  </channel>
</rss>