<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'HELP! IS THERE SUCH A THING AS BIGGER FONT?' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'HELP! IS THERE SUCH A THING AS BIGGER FONT?' posted on the 'Qbasic' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Wed, 19 Jun 2013 20:41:23 -0700</pubDate>
    <lastBuildDate>Wed, 19 Jun 2013 20:41:23 -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>HELP! IS THERE SUCH A THING AS BIGGER FONT?</title>
      <link>http://www.programmersheaven.com/mb/advbas/324606/324606/help-is-there-such-a-thing-as-bigger-font/</link>
      <description>hi! I just started programming in basic and i need to know if there&lt;br /&gt;
is a command to make font bigger! Easily! i don't know if this is even possible but if someone could help as soon as possible...that would be great!!!!&lt;br /&gt;
thanks&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/advbas/324606/324606/help-is-there-such-a-thing-as-bigger-font/</guid>
      <pubDate>Mon, 19 Dec 2005 13:00:31 -0700</pubDate>
      <category>Qbasic</category>
    </item>
    <item>
      <title>Re: HELP! IS THERE SUCH A THING AS BIGGER FONT?</title>
      <link>http://www.programmersheaven.com/mb/advbas/324606/324614/re-help-is-there-such-a-thing-as-bigger-font/#324614</link>
      <description>: hi! I just started programming in basic and i need to know if there&lt;br /&gt;
: is a command to make font bigger! Easily! i don't know if this is even possible but if someone could help as soon as possible...that would be great!!!!&lt;br /&gt;
: thanks&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
&lt;span style="color: Blue;"&gt;There is no such command, but you could try entering screen mode 13, just put a "SCREEN 13" on the first line in your program.&lt;br /&gt;
QB puts bigger text on the screen in grahics modes than in text modes.&lt;br /&gt;
&lt;br /&gt;
In graphics modes you could also draw your own font or copy existing text into memory and display it on the screen on a larger area.&lt;br /&gt;
I'll try to make a simple example:&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
SCREEN 13
PRINT "Simple text"

FOR x = 1 TO 180
FOR y = 8 TO 35
  col% = POINT(x / 2, (y / 2) - 7)
  PSET (x, y), col%
NEXT y
NEXT x
&lt;/pre&gt;&lt;br /&gt;
That looks ugly, because the algorithm isn't very advanced, but it does do the job.&lt;br /&gt;
&lt;br /&gt;
You could look for QBasic libraries that would draw big fonts. I haven't seen any, but I haven't really looked for them either. If you have lots of time, you could make your own libraries, it shouldn't be too difficult, just the font drawing is time consuming.&lt;br /&gt;
Good luck!&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/advbas/324606/324614/re-help-is-there-such-a-thing-as-bigger-font/#324614</guid>
      <pubDate>Mon, 19 Dec 2005 14:45:24 -0700</pubDate>
      <category>Qbasic</category>
    </item>
    <item>
      <title>Re: HELP! IS THERE SUCH A THING AS BIGGER FONT?</title>
      <link>http://www.programmersheaven.com/mb/advbas/324606/324620/re-help-is-there-such-a-thing-as-bigger-font/#324620</link>
      <description>: : hi! I just started programming in basic and i need to know if there&lt;br /&gt;
: : is a command to make font bigger! Easily! i don't know if this is even possible but if someone could help as soon as possible...that would be great!!!!&lt;br /&gt;
: : thanks&lt;br /&gt;
: : &lt;br /&gt;
: : &lt;br /&gt;
: &lt;span style="color: Blue;"&gt;There is no such command, but you could try entering screen mode 13, just put a "SCREEN 13" on the first line in your program.&lt;br /&gt;
: QB puts bigger text on the screen in grahics modes than in text modes.&lt;br /&gt;
: &lt;br /&gt;
: In graphics modes you could also draw your own font or copy existing text into memory and display it on the screen on a larger area.&lt;br /&gt;
: I'll try to make a simple example:&lt;br /&gt;
: &lt;pre class="sourcecode"&gt;
: SCREEN 13
: PRINT "Simple text"
: 
: FOR x = 1 TO 180
: FOR y = 8 TO 35
:   col% = POINT(x / 2, (y / 2) - 7)
:   PSET (x, y), col%
: NEXT y
: NEXT x
: &lt;/pre&gt;&lt;br /&gt;
: That looks ugly, because the algorithm isn't very advanced, but it does do the job.&lt;br /&gt;
: &lt;br /&gt;
: You could look for QBasic libraries that would draw big fonts. I haven't seen any, but I haven't really looked for them either. If you have lots of time, you could make your own libraries, it shouldn't be too difficult, just the font drawing is time consuming.&lt;br /&gt;
: Good luck!&lt;br /&gt;
: &lt;/span&gt;&lt;br /&gt;
: [/black] Thanks! I never thought of that, and the normal font looks like just the size i need. Maybe when i have more time i'll make a library...haha maybe. Thanks again.  &lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/advbas/324606/324620/re-help-is-there-such-a-thing-as-bigger-font/#324620</guid>
      <pubDate>Mon, 19 Dec 2005 15:08:46 -0700</pubDate>
      <category>Qbasic</category>
    </item>
    <item>
      <title>Re: HELP! IS THERE SUCH A THING AS BIGGER FONT?</title>
      <link>http://www.programmersheaven.com/mb/advbas/324606/324668/re-help-is-there-such-a-thing-as-bigger-font/#324668</link>
      <description>: You could look for QBasic libraries that would draw big fonts. I haven't seen any, but I haven't really looked for them either.&lt;br /&gt;
&lt;br /&gt;
I've done 2, and found severals. One of them is only making the font bigger, but in hundreds of different ways. The other is an editor where you can design your own fonts, that's then compressed and saved to a file. Then it's possible to use it as usuall. It is as nice as this text.&lt;br /&gt;
&lt;br /&gt;
Happy coding wishes&lt;br /&gt;
the one and only &lt;strong&gt;Niklas Ulvinge&lt;/strong&gt; &lt;span style="color: White;"&gt;aka &lt;strong&gt;IDK&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/advbas/324606/324668/re-help-is-there-such-a-thing-as-bigger-font/#324668</guid>
      <pubDate>Tue, 20 Dec 2005 06:52:45 -0700</pubDate>
      <category>Qbasic</category>
    </item>
  </channel>
</rss>