<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss">
 	<channel>
		<title>Windows Mobile | VisualNewt Software | Serg Koren</title>
		<link>http://www.visualnewt.com/Products/windows_mobile/</link>
		<description></description>
		<language>en</language>
		<lastBuildDate>Sat, 16 Feb 2008 20:18:25 -0500</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>Sandvox Pro 1.2.6</generator>
		<image>
			<url>http://www.visualnewt.com/_Media/vns_rss.jpeg</url>
			<title>VisualNewt Software Logo</title>
			<link>http://www.visualnewt.com/Products/windows_mobile/</link>
			<width>144</width>
			<height>56</height>
		</image>
		<item>
			<title>Sieve for PocketC &amp; NSBasicCE</title>
			<link>http://www.visualnewt.com/Products/windows_mobile/sieve_for_pocketc_nsbasicce.html</link>
			<description>
&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;span style=&quot;font-family: Times; font-size: 16px;&quot;&gt;&lt;h1 style=&quot;color: rgb(214, 236, 174); font-family: 'Trebuchet MS'; font-size: 32px; text-align: center;&quot;&gt;&lt;b&gt;&lt;font face=&quot;Espi Sans&quot;&gt;This source code is freeware. However, please do not distribute modified versions. Thanks.&lt;/font&gt;&lt;/b&gt;&lt;/h1&gt;
&lt;h1 style=&quot;color: rgb(214, 236, 174); font-family: 'Trebuchet MS'; font-size: 32px; text-align: center;&quot;&gt;&lt;b&gt; &lt;/b&gt;&lt;/h1&gt;
&lt;p&gt;&lt;font face=&quot;Espi Sans&quot;&gt;This &lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Sieve.html#PocketC&quot;&gt;code&lt;/a&gt; should compile and run using &lt;a href=&quot;http://www.orbworks.com/&quot;&gt;PocketC&lt;/a&gt; .&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Espi Sans&quot;&gt;This &lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Sieve.html#NSBasic&quot;&gt;code&lt;/a&gt; should run using &lt;a href=&quot;http://www.nsbasic.com/&quot;&gt;NSBasic&lt;/a&gt;.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;If you download and run this program, please send me your timings and I'll post them here for comparison purposes.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h2 style=&quot;color: rgb(214, 236, 174); font-family: 'Trebuchet MS'; font-size: 24px; text-align: center;&quot;&gt;&lt;b&gt;&lt;i&gt;&lt;i&gt;The Source Code&lt;/i&gt;&lt;/i&gt;&lt;/b&gt;&lt;/h2&gt;
&lt;h4&gt;NOTE: It appears that on WindowsCE the more memory you can give programs the faster this runs. The above timings are the fastest noted.&lt;/h4&gt;
&lt;h2 style=&quot;color: rgb(214, 236, 174); font-family: 'Trebuchet MS'; font-size: 24px; text-align: center;&quot;&gt;&lt;b&gt;POCKET C&lt;/b&gt;&lt;/h2&gt;
&lt;pre style=&quot;font-family: Courier; font-size: 13px; white-space: pre;&quot;&gt;&lt;tt&gt;&lt;a name=&quot;PocketC&quot;&gt;&lt;/a&gt;//----------------------------------------------
// Sieve
//
//   Serg Koren
//   VisualNewt Software
//   http://www.VisualNewt.com/
//   Serg@VisualNewt.com
//
//  Ver 2.0
//    Total rewrite to work under PocketC b1.30
//
//-------------
//
/* Global defines */
#define WS_CHILD 0x40000000
#define WS_POPUP 0x80000000
#define WS_VISIBLE  0x10000000
#define SIZE  8193
#define TRUE  1
#define FALSE 0
/* Interface controls - menu */
#define	MF_SEPARATOR	0x0800
#define	MF_ENABLED		0x0000
#define	MF_STRING		0x0000
/* Event types */
#define PM_BUTTONUP 5
#define PM_COMMAND 8
/* Our button */
#define SIEVE 100
/* our sieve array */
#define SIZE 8193
int x[SIZE];
//----------------------------------------------
// ShowResults - update our labels
//----------------------------------------------
//
ShowResults(int start, int end, int elapsed)
{
 text(20,56, &quot;Start:  &quot; + start);
	text(20,83,&quot;End:    &quot; + end);
	text(20,108,&quot;Elapsed:&quot; + elapsed);
	text(20,140,&quot;&quot;);
}
//----------------------------------------------
// DoIt
//     The main sieve logic.  Pass in the max.
// number of primes to search to.
//----------------------------------------------
//
DoIt(int n)
{
	int i, j, k, p, iter, start;
	text(20,140,&quot;Working...&quot;);
	start = ticks();
	for (iter = 1; iter &amp;lt;= 10; iter++)
	{
		x[1] = 0;
		for (i = 2; i &amp;lt;= n; i++)
			x[i] = 1;
		p = 2;
		while (p * p &amp;lt;= n)
		{
			j = p;
			while (j &amp;lt;= n)
			{
				x[j] = 0;
				j = j + p;
			}
			do
			{
				p++;
			} while (x[p] != 1);
		}
	}
	// output details
	j = ticks();
	k =j - start;
	ShowResults(start,j,k);
	// display an alert with results
	alert(&quot;Done!  In:  &quot; + k + &quot; ticks.&quot;);
}
//----------------------------------------------
// draw_form
//	Setup our GUI
//----------------------------------------------
//
draw_form()
{
	menu_on();
	menuins(0,0,MF_SEPARATOR,200,&quot;&quot;);
	menuins(0,0,MF_ENABLED|MF_STRING,201,&quot;PalmOS (5120)&quot;);
	menuins(0,0,MF_ENABLED|MF_STRING,202,&quot;Full (8192)&quot;);
	text(20,56,&quot;Start:&quot;);
	text(20,83,&quot;End:&quot;);
	text(20,108,&quot;Elapsed:&quot;);
	text(20,140,&quot;&quot;);
	createctrl(&quot;BUTTON&quot;,&quot;Sieve&quot;,WS_CHILD|WS_VISIBLE,0,82,150,75,25,100);
}
//----------------------------------------------
// SetupAbout
//	Build our about box
//----------------------------------------------
//
SetupAbout()
{
	about(&quot;SieveCE - PocketC  by Serg Koren.  VisualNewt Software  http://www.VisualNewt.com/   Ver. 2.0&quot;);
}
//----------------------------------------------
// MAIN
//   our main routine
//----------------------------------------------
//
main()
{
	int e,g,m,k;
	int NotDone;
	NotDone = TRUE;
	draw_form();
	SetupAbout();
	while (NotDone)
      {
      	e=event(0);
      	k=key();
		if (e==PM_BUTTONUP)
		{
			g=guiid();
			if (g==SIEVE)
				DoIt(5120);
			m=menu();
		}
		if (e==PM_COMMAND)
		{
			g=guiid();
			if (g == 201)
				DoIt(5120);		// PalmOS
			else if (g == 202)
				DoIt(8192);		// Full
			m=menu();
		}
	}
}
//-------------------END------------------------
              &lt;/tt&gt;&lt;/pre&gt;
&lt;hr /&gt;
&lt;h1 style=&quot;color: rgb(214, 236, 174); font-family: 'Trebuchet MS'; font-size: 32px; text-align: center;&quot;&gt;&lt;b&gt;&lt;a name=&quot;NSBasic&quot;&gt;&lt;/a&gt;NSBASIC CE&lt;/b&gt;&lt;/h1&gt;
&lt;pre style=&quot;font-family: Courier; font-size: 13px; white-space: pre;&quot;&gt;&lt;tt&gt;
'----------------------------------------------------
'  Sieve
'
'      Serg Koren
'      VisualNewt Software
'      http://www.VisualNewt.com/
'      Serg@VisualNewt.com
'
'  03/19/99
'       Ver 1.0
'
'------------------------------------------------------
'
OPTION EXPLICIT
DIM Version    ' version string
Version = &quot;Ver. 1.0&quot;
'------------------------------------------------------
' DoIt
'
'  The actual sieve logic.
'------------------------------------------------------
'
SUB DoIt(size)
  Feedback.Caption = &quot;Working...&quot;
  UPDATESCREEN ' allow menus to refresh, etc.
  DIM  i, j, k, p, iter, howlong
  DIM x(8193)
  howlong = NOW
  FOR iter = 1 To 10
    x(1) = 0
    FOR i = 2 TO size
      x(i) = 1
    NEXT
    p = 2
    WHILE p^2 &amp;lt;= size
      j = p
      WHILE j &amp;lt;= size
        x(j) = 0
        j = j + p
      WEND
      DO
        p = p + 1
      LOOP WHILE x(p) &amp;lt;&amp;gt; 1
    WEND
  NEXT
  j = NOW
  ' display results
  Feedback.Caption = &quot;&quot;
  Start.Caption = &quot;Start:  &quot; &amp;amp; howlong
  EndL.Caption = &quot;End:   &quot; &amp;amp;  j
  Elap.caption =  &quot;Elap.:  &quot; &amp;amp;  DATEDIFF(&quot;s&quot;,howlong,j) &amp;amp; &quot; sec.&quot;
END SUB
'------------------------------------------------------
' About menu item
'------------------------------------------------------
'
SUB About_click
  DIM T
  DIM CRLF
  CRLF = CHR(13) &amp;amp; CHR(10)
  T = &quot;SieveCE - NSBasic&quot; &amp;amp; CRLF &amp;amp; &quot;by Serg Koren&quot; &amp;amp; CRLF &amp;amp; CRLF &amp;amp; &quot;VisualNewt Software&quot;
  T = T &amp;amp; CRLF &amp;amp; CRLF &amp;amp; &quot;http://www.VisualNewt.com/&quot; &amp;amp; CRLF &amp;amp; CRLF &amp;amp; Version
  MSGBOX T,vbOKOnly,&quot;About Sieve&quot;
END SUB
'------------------------------------------------------
'  Exit menu item
'------------------------------------------------------
'
SUB Exit_click
  BYE
END SUB
'------------------------------------------------------
' PalmOS sieve request
'------------------------------------------------------
'
SUB PalmOS_click
  DoIt(5120)
END SUB
'------------------------------------------------------
' Full sieve request
'------------------------------------------------------
'
SUB Full_click
  DoIt(8192)
END SUB
'------------------------------------------------------
'  Sieve button clicked
'------------------------------------------------------
'
SUB Sieve_click
   DoIt(5120)
END SUB
'------------------------------------------------------
' SetupMenus
'------------------------------------------------------
'
SUB SetupMenus
  DIM titlebar
  titlebar = ARRAY(&quot;&amp;amp;File&quot;,&quot;&amp;amp;Command&quot;)
  SETMENU &quot;titlebar&quot;,titlebar
  DIM fileMenu
  fileMenu=array(&quot;About||About&quot;,&quot;-&quot;,&quot;E&amp;amp;xit||Exit&quot;)
  SETMENU &quot;&amp;amp;File&quot;,fileMenu
  DIM commandMenu
  commandMenu=array(&quot;Full (8192)||Full&quot;,&quot;PalmOS (5120)||PalmOS&quot;)
  SETMENU &quot;&amp;amp;Command&quot;,commandMenu
END SUB
'------------------------------------------------------
' SetupLabels
'   for user feedback
'------------------------------------------------------
'
SUB SetupLabels
  ADDOBJECT &quot;Label&quot;, &quot;Start&quot;, 10, 10, 200,20
  Start.Caption = &quot;Start:&quot;
  Start.BackColor = Output.BackColor
  ADDOBJECT &quot;Label&quot;,&quot;EndL&quot;,10, 30, 200, 20
  EndL.Caption = &quot;End:&quot;
  EndL.BackColor = Output.BackColor
  ADDOBJECT &quot;Label&quot;,&quot;Elap&quot;, 10, 50, 200,20
  Elap.Caption = &quot;Elap.:&quot;
  Elap.BackColor = Output.BackColor
  ADDOBJECT &quot;Label&quot;,&quot;Feedback&quot;, 10,70,200,20
  Feedback.Caption = &quot;&quot;
  Feedback.BackColor = Output.BackColor
END SUB
'------------------------------------------------------
' SetupButton
'------------------------------------------------------
'
SUB SetupButton
  ADDOBJECT &quot;CommandButton&quot;,&quot;Sieve&quot;, 50, 130, 50,20
END SUB
'------------------------------------------------------
' SetupGUI
'  Build our user interface
'------------------------------------------------------
'
SUB SetupGUI
  SetupMenus
  SetupLabels
  SetupButton
END SUB
'------------------------------------------------------
'  MAIN
'------------------------------------------------------
'
SUB Main
  SetupGUI  ' and wait for events
END SUB
'------------------------------------------------------
'------------------------------------------------------
' run the program
Main
'------------------------------------------------------
'------------------------------------------------------
'----------------------END-----------------------------
              &lt;/tt&gt;&lt;/pre&gt;
&lt;/span&gt;
			</description>
			<pubDate>Wed, 11 Apr 2007 21:44:31 -0400</pubDate>
			<guid>http://www.visualnewt.com/Products/windows_mobile/sieve_for_pocketc_nsbasicce.html</guid>
		</item>
		<item>
			<title>Visual3D™ Graphics Library</title>
			<link>http://www.visualnewt.com/Products/windows_mobile/visual3d_graphics_library/</link>
			<description>
			</description>
			<pubDate>Wed, 11 Apr 2007 21:36:43 -0400</pubDate>
			<guid>http://www.visualnewt.com/Products/windows_mobile/visual3d_graphics_library/</guid>
		</item>
		<item>
			<title>NSBasicCE Tutorial</title>
			<link>http://www.visualnewt.com/Products/windows_mobile/nsbasicce_tutorial/</link>
			<description>
&lt;p&gt;&lt;span style=&quot;font-family: Times; font-size: 16px;&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;font-family: Georgia; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: Times; font-size: 16px;&quot;&gt;&lt;span style=&quot;text-align: -webkit-center;&quot;&gt;Lessons in NSBasicCE&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: -webkit-center;&quot;&gt;&lt;br class=&quot;webkit-block-placeholder&quot; /&gt;
&lt;/p&gt;
&lt;p style=&quot;text-align: -webkit-center;&quot; /&gt;
&lt;div align=&quot;center&quot;&gt;&lt;p&gt;&lt;img src=&quot;http://www.visualnewt.com/_Media/vns_textmedium.gif&quot; border=&quot;0&quot; width=&quot;267&quot; height=&quot;103&quot; alt=&quot;vns_textmedium&quot; style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial;&quot; /&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;h4 style=&quot;font-family: 'Trebuchet MS';&quot;&gt;&lt;b&gt;Programming Using &lt;a href=&quot;http://www.nsbasic.com/&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(0, 0, 0);&quot;&gt;NSBasicCE&lt;/a&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;p /&gt;
&lt;p style=&quot;font-family: Georgia; font-size: 12px;&quot;&gt;&lt;font size=&quot;1&quot; style=&quot;font-size: 10px;&quot;&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;All content (c)1999-2007 Serg Koren and VisualNewt Software.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p style=&quot;font-family: Georgia; font-size: 12px;&quot;&gt;&lt;font size=&quot;1&quot; style=&quot;font-size: 10px;&quot;&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;All rights reserved.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p style=&quot;font-family: Georgia; font-size: 12px;&quot;&gt;&lt;b&gt;&lt;b&gt;List of Articles:&lt;/b&gt;&lt;/b&gt;&lt;/p&gt;
&lt;ol style=&quot;font-family: Georgia; font-size: 12px;&quot;&gt;
&lt;li&gt;&lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Tutorial/Article1.html&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(101, 114, 48);&quot;&gt;The Package and Installation&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Discussion of the history of BASIC, and how it relates to MS VisualBasic and NSBasic. Steps needed to install NSBasic on a Casio-E105 are described.&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Tutorial/Article2.html&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(101, 114, 48);&quot;&gt;The Editor and Modes.&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
A complete discussion and exploration of the NSBasic programming environment detailing every menu item. A description of Immediate and Programatic mode programming with examples.&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Tutorial/Article3.html&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(101, 114, 48);&quot;&gt;Objects, Properties, and Methods! Oh My!&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
A beginner's explanation of Object-Oriented-Programming (OOP) with emphasis on NSBasic.&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Tutorial/Article4.html&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(101, 114, 48);&quot;&gt;CommandButtons&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
An explanation of how to use CommandButtons in NSBasic.&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Tutorial/Article5.html&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(101, 114, 48);&quot;&gt;MSGBOXes, SUB and FUNCTION&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
What SUBroutines and FUNCTIONs are and how to use them, basic parameters, and the MSGBOX user-interface widget.&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Tutorial/Article6.html&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(101, 114, 48);&quot;&gt;CheckBox and Variables&lt;br /&gt;
&lt;br /&gt;
&lt;/a&gt;A discussion of variables, how they are stored in memory, how to use them, and the CheckBox widget.&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Tutorial/Article7.html&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(101, 114, 48);&quot;&gt;Strings and COMBOBOX&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
We talk about what strings are, and how to use them and combine them. We also look at the ComboBox object.&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Tutorial/Article8.html&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(101, 114, 48);&quot;&gt;Dissecting Strings and the Date Object&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
We follow up our discussion on strings and talk about taking them apart. We also look at the buggy and barely usable Date Object.&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Tutorial/Article9.html&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(101, 114, 48);&quot;&gt;Arrayed Things and the INPUTBOX&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
This article deals with arrays, what they are, how to set them up, and use them. We also talk about the INPUTBOX and what it is good for.&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Tutorial/Article10.html&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(101, 114, 48);&quot;&gt;Decisions, the Label and ListBox&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Getting your program to decide things for itself, and how to put labels on your screen, along with the ListBox object.&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Tutorial/Article11.html&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(101, 114, 48);&quot;&gt;DejaVu Again&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Getting your program to loop, and the OptionButton object.&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Tutorial/Article12.html&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(101, 114, 48);&quot;&gt;FOR EACH, INSTR, and the PICTUREBOX object&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
A powerful new kind of loop, searching for a string in a string, and graphics.&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;file:///Users/sk/Desktop/VN%20site/Web%20Devil%20Downloads/www.visualnewt.com/Products/PocketPC/Tutorial/Article13.html&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(101, 114, 48);&quot;&gt;PRINT, REDIM, and the TEXTBOX object&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Printing information to the screen, resizing arrays and text objects.&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p align=&quot;center&quot; style=&quot;font-family: Georgia; font-size: 12px; text-align: -webkit-center;&quot;&gt;&lt;a href=&quot;http://www.nsbasic.com/&quot; style=&quot;text-decoration: none; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(0, 0, 0);&quot;&gt;&lt;img src=&quot;http://www.visualnewt.com/_Media/nsblogo2_textmedium.gif&quot; border=&quot;0&quot; width=&quot;140&quot; height=&quot;58&quot; alt=&quot;nsblogo2_textmedium&quot; style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p /&gt;
			</description>
			<pubDate>Mon, 09 Apr 2007 14:46:12 -0400</pubDate>
			<guid>http://www.visualnewt.com/Products/windows_mobile/nsbasicce_tutorial/</guid>
		</item>
 	</channel>
</rss>
