<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Option Explicit</title>
	<atom:link href="http://optionexplicit.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://optionexplicit.wordpress.com</link>
	<description>Stated Clearly and in Detail, Leaving No Room for Confusion</description>
	<lastBuildDate>Thu, 15 Oct 2009 10:15:36 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='optionexplicit.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/5bcff5e69ce179be579299973b22c10a?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Option Explicit</title>
		<link>http://optionexplicit.wordpress.com</link>
	</image>
			<item>
		<title>XAMPP Virtual Hosts on a MAC</title>
		<link>http://optionexplicit.wordpress.com/2009/10/15/xampp-virtual-hosts-on-a-mac/</link>
		<comments>http://optionexplicit.wordpress.com/2009/10/15/xampp-virtual-hosts-on-a-mac/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 10:15:36 +0000</pubDate>
		<dc:creator>optionexplicit</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://optionexplicit.wordpress.com/2009/10/15/xampp-virtual-hosts-on-a-mac/</guid>
		<description><![CDATA[I recently retooled a Zend development environment on a mac laptop running OS X. I had been using the free version of MAMP for awhile but found the free version too limited.  MAMP is useful for getting  Apache, PHP, and MySQL stack up and working together quickly on a mac.  One thing lacking in MAMP [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=54&subd=optionexplicit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I recently retooled a Zend development environment on a mac laptop running OS X. I had been using the free version of <a href="http://www.mamp.info/en/index.html" target="_blank">MAMP</a> for awhile but found the free version too limited.  MAMP is useful for getting  Apache, PHP, and MySQL stack up and working together quickly on a mac.  One thing lacking in MAMP though is an actual http.conf file like you probably deal with on a production server.</p>
<p>XAMP is another free AMP stack which includes an editable httpd.conf file making configuring Apache to test SSL connections much more standardized if not straight forward.  Instead of dealing with a GUI one deals with the Apache configuration files directly.  While it’s nice to be able to customize XAMPs Apache installation getting the configuration right can take some time.  If your really uncomfortable meddling with Apache configuration files you should consider just purchasing a licensed version of MAMP which does most of the stuff through a graphical interface.  Of course once you go into production you’ll probably going to have to deal with Apache’s httpd.conf file anyway so you might as well front load the pain now and be better prepared when things actually do go into production.</p>
<p>So without further ado I now present the first post on the new acwolf blog: how to configure XAMP virtual hosts on a mac.</p>
<p><strong>Step One, Download and configure XAMP</strong></p>
<p>First <a title="XAMP for MAc" href="http://www.apachefriends.org/en/xampp-macosx.html" target="_blank">download XAMP for mac</a>.</p>
<p>Once you have XAMP running on you mac you’re ready to begin configuring virtual hosts.  Using Mac Finder go to <em>Applications &gt; xampp &gt; etc</em> and open the httpd.conf file. Near the bottom of the file look for the following lines:</p>
<blockquote><p># Virtual hosts<br />
#Include /Applications/xampp/etc/extra/httpd-vhosts.conf</p></blockquote>
<p>The pound symbol (#) denotes a comment.  Since we want to setup virtual hosts go ahead and uncomment the second line by removing the pound symbol like so</p>
<blockquote><p># Virtual hosts<br />
Include /Applications/xampp/etc/extra/httpd-vhosts.conf</p></blockquote>
<p>With the above line uncommented Apache will now look to the <em>httpd-vhosts.conf</em> file for instructions on how to configure virtual hosts.   Go to <em>Applications &gt; xampp &gt; etc &gt; extra</em> and open <em>httpd-vhosts.conf</em> to begin configuring virtual hosts for XAMP.  An imported (and practically undocumented) fist step is to <strong>include localhost has the default named virtual host</strong>. Do this by adding the following to the httpd-vhosts.conf:</p>
<blockquote><p>&lt;VirtualHost *:80&gt;<br />
ServerName localhost<br />
DocumentRoot “/Applications/xampp/htdocs”<br />
&lt;Directory “/Applications/xampp/htdocs”&gt;<br />
Options Indexes FollowSymLinks Includes execCGI<br />
AllowOverride None<br />
Order Allow,Deny<br />
Allow From All<br />
&lt;/Directory&gt;<br />
&lt;/VirtualHost&gt;</p></blockquote>
<p>With that in place you are now ready to add your other virtual hosts, in my case I’m developing a Zend application called zendapplication.  It’s located in a folder called myZendApps in the <em>User &gt; Documents</em> folder.</p>
<blockquote><p>&lt;VirtualHost *:80&gt;<br />
ServerName zendapplication.dev<br />
ServerAlias wwww.zendapplication.dev<br />
DocumentRoot “/Users/aaronwolf/Documents/myZendApps/zendapplication/public”<br />
&lt;Directory “/Users/aaronwolf/Documents/myZendApps/zendapplication/public”&gt;<br />
Options Indexes FollowSymLinks Includes ExecCGI<br />
AllowOverride All<br />
Order allow,deny<br />
Allow from all<br />
&lt;/Directory&gt;<br />
ErrorLog “logs/zendapplication-error_log”<br />
CustomLog “logs/zendapplication-access_log” common<br />
&lt;/VirtualHost&gt;</p></blockquote>
<p>For all the details and options involved with setting up a virtual host refer to the <a href="http://httpd.apache.org/docs/2.0/vhosts/" target="_blank">apache documentation</a>.  The two critical configuration options here are ServerName and Document root.  <strong>ServerName</strong> denotes what domain this particular virtual hosts responds to.  <strong>DocumentRoot</strong> tells Apache where the files associated with this particular domain live.  Since Zend Framework applications (like Rails applications) only make the public directory accessible to the web I have the document root pointing to the public directory of my Zend application.</p>
<p>So far we,</p>
<ol>
<li>Created a localhost vertual host pointing to XAMPs default root folder (/Applications/xampp/htdocs).</li>
<li>Created a virtual host for a zend application located in <em>Users &gt; aaronwolf &gt;Documents &gt; myZendApps &gt; zendapplication &gt;public.</em></li>
<li>Assinded a server name (the local domain name) of our choosing to the new virtual host.</li>
</ol>
<p>Note: I used the .dev extension for my server name.  It’s best not to use .com or .net domain names when configuring local applications, you’ll see why once you…</p>
<p><strong>Configure the hosts file</strong></p>
<p>The next step is to configure your host file.  A hosts file works like a <a href="http://www.howstuffworks.com/dns.htm" target="_blank">DNS</a> server associating domain names with IP address except domain names configured in your local hosts file only effect your local development machine.</p>
<p>In the example presented here we have configured Apache to respond to requests for zendapplication.dev now we want to be able to type zendapplication.dev in to a browser and play with our application.  Since zendapplication.dev only exists on our local development machine (not the internet) we’ll need to configure our local host file to send requests for the zendapplication.dev domain to our development computers IP address (127.0.0.1) to be handled by Apache server.  Sounds complicated but to get it done is very simple.</p>
<p>Fist you’ll need to open your hosts file.  On a mac you can find the hosts file in the /etc directory (you’ll need root permission to edit the file).</p>
<p>Open a concole window and type:</p>
<blockquote><p>sudo nano /etc/hosts</p></blockquote>
<p>Add the following line to the bottom of your hosts file (be sure to sperate the IP number and the domain name with a tab).</p>
<blockquote><p>127.0.0.1        zendapplication.dev</p></blockquote>
<p>Now when you type zendapplication.dev in to the address bar of you local browser you’ll should see…</p>
<p><strong>You don’t have permission to access /xampp/index.php on this server.</strong></p>
<p>Nice!  Turns out there’s one more bit of configuration to be done (at least if you’re storing you applications under the User &gt; Documents directory on a mac like I am).  You’ll need to tell the Apache process to run with your user permissions (something that should never be done on a production machine).  Back to <em>Application &gt; xamp &gt; etc</em>, open httpd.conf and look for the following block:</p>
<blockquote><p>&lt;IfModule !mpm_netware_module&gt;<br />
#<br />
# If you wish httpd to run as a different user or group, you must run<br />
# httpd as root initially and it will switch.<br />
#<br />
# User/Group: The name (or #number) of the user/group to run httpd as.<br />
# It is usually good practice to create a dedicated user and group for<br />
# running httpd, as with most system services.<br />
#<br />
User nobody<br />
Group admin<br />
&lt;/IfModule&gt;</p></blockquote>
<p>Notice by default Apache is set up to run as user “nobody” which lacks permissions to access files in your Documents directory.  To fix this simply change nobody to the username you uses when logging into your machine, so in my case…</p>
<p>User aaronwolf<br />
Group admin</p>
<p>That should about do it.  Type zendapplication.dev into your browser and <a href="http://www.thislittletown.com/" target="_blank">go to town</a>.</p>
<p>If you notice your application’s indexpage redirects to /xampp/index.php you’ll just clear your browsers chache.</p>
<p>Hopfully that will save someone a few hours…</p>
<p>Source : http://www.acwolf.com/2009/02/24/xampp-virtual-hosts-on-a-mac/</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/optionexplicit.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/optionexplicit.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/optionexplicit.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/optionexplicit.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/optionexplicit.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/optionexplicit.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/optionexplicit.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/optionexplicit.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/optionexplicit.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/optionexplicit.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=54&subd=optionexplicit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://optionexplicit.wordpress.com/2009/10/15/xampp-virtual-hosts-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edeab4aeb5fd4b32e0a095916ca15e88?s=96&#38;d=identicon" medium="image">
			<media:title type="html">optionexplicit</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Access 2003 Maximum Capacities</title>
		<link>http://optionexplicit.wordpress.com/2009/10/14/microsoft-access-2003-maximum-capacities/</link>
		<comments>http://optionexplicit.wordpress.com/2009/10/14/microsoft-access-2003-maximum-capacities/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 03:33:39 +0000</pubDate>
		<dc:creator>optionexplicit</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://optionexplicit.wordpress.com/?p=52</guid>
		<description><![CDATA[Microsoft Access 2000 and 2002 are similar. Smaller capacities for the older versions of Access are noted in the tables.
These figures are taken from Microsoft sources and published here for the convienience of my students and clients.
I no longer build full applications in Access, but it is excellent for prototypes, and under some circumstances it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=52&subd=optionexplicit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Microsoft Access 2000 and 2002 are similar. Smaller capacities for the older versions of Access are noted in the tables.</p>
<p>These figures are taken from Microsoft sources and published here for the convienience of my students and clients.</p>
<p>I no longer build full applications in Access, but it is excellent for prototypes, and under some circumstances it works well as a front end with SQL Server as a back end. In this situation the application should be an Access project.</p>
<table border="1" cellspacing="0" cellpadding="3" align="center">
<tbody>
<tr bgcolor="#ffffcc">
<td width="50%" valign="top"><strong><span style="font-size:xx-small;">Database specifications</span></strong></td>
<td width="50%" valign="top"></td>
</tr>
<tr>
<td width="50%" valign="top"><strong>Attribute </strong></td>
<td width="50%" valign="top"><strong>Maximum</strong></td>
</tr>
<tr>
<td width="50%" valign="top">Database (.mdb) file size</td>
<td width="50%" valign="top">2 gigabyte. However, because your database can include linked tables in other files, its total size is limited only by available storage capacity.</td>
</tr>
<tr>
<td width="50%" valign="top">Number of objects in a database</td>
<td width="50%" valign="top">32,768</td>
</tr>
<tr>
<td width="50%" valign="top">Modules (including forms and reports with the HasModule property set to True)</td>
<td width="50%" valign="top">1,000</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in an object name</td>
<td width="50%" valign="top">64</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a password</td>
<td width="50%" valign="top">14</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a user name or group name</td>
<td width="50%" valign="top">20</td>
</tr>
<tr>
<td width="50%" valign="top">Number of concurrent users</td>
<td width="50%" valign="top">255</td>
</tr>
<tr>
<td width="50%" valign="top"></td>
<td width="50%" valign="top"></td>
</tr>
<tr bgcolor="#ffffcc">
<td width="50%" valign="top"><strong><span style="font-size:xx-small;">Table specifications</span></strong></td>
<td width="50%" valign="top"></td>
</tr>
<tr>
<td width="50%" valign="top"><strong>Attribute </strong></td>
<td width="50%" valign="top"><strong>Maximum</strong></td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a table name</td>
<td width="50%" valign="top">64</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a field name</td>
<td width="50%" valign="top">64</td>
</tr>
<tr>
<td width="50%" valign="top">Number of fields in a table</td>
<td width="50%" valign="top">255</td>
</tr>
<tr>
<td width="50%" valign="top">Number of open tables</td>
<td width="50%" valign="top">2048. The actual number may be less because of tables opened internally by Microsoft Access.</td>
</tr>
<tr>
<td width="50%" valign="top">Table size</td>
<td width="50%" valign="top"><span id="divExpCollAsst_2"> 2 gigabytes minus the space needed for the system objects; 1 for Access 2000 and 2002.</span></td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a Text field</td>
<td width="50%" valign="top">255</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a Memo field</td>
<td width="50%" valign="top">65,535 when entering data through the user interface;  1 gigabyte when entering data programmatically.</td>
</tr>
<tr>
<td width="50%" valign="top">Size of an OLE Object field</td>
<td width="50%" valign="top">1 gigabyte</td>
</tr>
<tr>
<td width="50%" valign="top">Number of indexes in a table</td>
<td width="50%" valign="top">32</td>
</tr>
<tr>
<td width="50%" valign="top">Number of fields in an index</td>
<td width="50%" valign="top">10</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a validation message</td>
<td width="50%" valign="top">255</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a validation rule</td>
<td width="50%" valign="top">2048</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a table or field description</td>
<td width="50%" valign="top">255</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a record (excluding Memo and OLE Object fields)</td>
<td width="50%" valign="top">4,000; 2,000 for Access 2000 and 2002</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a field property setting</td>
<td width="50%" valign="top">255</td>
</tr>
<tr>
<td width="50%" valign="top"></td>
<td width="50%" valign="top"></td>
</tr>
<tr bgcolor="#ffffcc">
<td width="50%" valign="top"><strong><span style="font-size:xx-small;"> Query specifications</span></strong></td>
<td width="50%" valign="top"></td>
</tr>
<tr>
<td width="50%" valign="top"><strong>Attribute </strong></td>
<td width="50%" valign="top"><strong>Maximum</strong></td>
</tr>
<tr>
<td width="50%" valign="top">Number of enforced relationships</td>
<td width="50%" valign="top">32 per table minus the number of indexes that are on the table for fields or combinations of fields that are not involved in relationships</td>
</tr>
<tr>
<td width="50%" valign="top">Number of tables in a query</td>
<td width="50%" valign="top">32</td>
</tr>
<tr>
<td width="50%" valign="top">Number of fields in a recordset</td>
<td width="50%" valign="top">255</td>
</tr>
<tr>
<td width="50%" valign="top">Recordset size</td>
<td width="50%" valign="top">1 gigabyte</td>
</tr>
<tr>
<td width="50%" valign="top">Sort limit</td>
<td width="50%" valign="top">255 characters in one or more fields</td>
</tr>
<tr>
<td width="50%" valign="top">Number of levels of nested queries</td>
<td width="50%" valign="top">50</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a cell in the query design grid</td>
<td width="50%" valign="top">1,024</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters for a parameter in a parameter query</td>
<td width="50%" valign="top">255</td>
</tr>
<tr>
<td width="50%" valign="top">Number of ANDs in a WHERE or HAVING clause</td>
<td width="50%" valign="top">99;	40	for Access 2000 and 2002</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a SQL statement</td>
<td width="50%" valign="top">approximately 64,000</td>
</tr>
<tr>
<td width="50%" valign="top"></td>
<td width="50%" valign="top"></td>
</tr>
<tr bgcolor="#ffffcc">
<td width="50%" valign="top"><strong><span style="font-size:xx-small;">Form and report specifications</span></strong></td>
<td width="50%" valign="top"></td>
</tr>
<tr>
<td width="50%" valign="top"><strong>Attribute </strong></td>
<td width="50%" valign="top"><strong>Maximum</strong></td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a label</td>
<td width="50%" valign="top">2,048</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a text box</td>
<td width="50%" valign="top">65,535</td>
</tr>
<tr>
<td width="50%" valign="top">Form or report width</td>
<td width="50%" valign="top">22 in. (55.87 cm)</td>
</tr>
<tr>
<td width="50%" valign="top">Section height</td>
<td width="50%" valign="top">22 in.  (55.87 cm)</td>
</tr>
<tr>
<td width="50%" valign="top">Height of all sections plus section headers (in Design view)</td>
<td width="50%" valign="top">200 in.  (508 cm)</td>
</tr>
<tr>
<td width="50%" valign="top">Number of levels of nested forms or reports</td>
<td width="50%" valign="top">7; 3 			for Access 2000 and 2002</td>
</tr>
<tr>
<td width="50%" valign="top">Number of fields or expressions you can sort or group on in a report</td>
<td width="50%" valign="top">10</td>
</tr>
<tr>
<td width="50%" valign="top">Number of headers and footers in a report</td>
<td width="50%" valign="top">1 report header/footer; 1 page header/footer; 10 group headers/footers</td>
</tr>
<tr>
<td width="50%" valign="top">Number of printed pages in a report</td>
<td width="50%" valign="top">65,536</td>
</tr>
<tr>
<td width="50%" valign="top">Number of controls and sections you can add over the lifetime of the form or report</td>
<td width="50%" valign="top">754</td>
</tr>
<tr>
<td width="50%" valign="top"><span id="divExpCollAsst_4">Number of characters in an SQL statement that serves as the <strong>Recordsource</strong> or <strong>Rowsource</strong> property of a form, report, or control (both .mdb and .adp)</span></td>
<td width="50%" valign="top"><span id="divExpCollAsst_4">32,750</span></td>
</tr>
<tr>
<td width="50%" valign="top"></td>
<td width="50%" valign="top"></td>
</tr>
<tr bgcolor="#ffffcc">
<td width="50%" valign="top"><strong><span style="font-size:xx-small;">Macro specifications</span></strong></td>
<td width="50%" valign="top"></td>
</tr>
<tr>
<td width="50%" valign="top"><strong>Attribute </strong></td>
<td width="50%" valign="top"><strong>Maximum</strong></td>
</tr>
<tr>
<td width="50%" valign="top">Number of actions in a macro</td>
<td width="50%" valign="top">999</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a condition</td>
<td width="50%" valign="top">255</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in a comment</td>
<td width="50%" valign="top">255</td>
</tr>
<tr>
<td width="50%" valign="top">Number of characters in an action argument</td>
<td width="50%" valign="top">255</td>
</tr>
</tbody>
</table>
<h3>Variable and Table Data Types</h3>
<table style="height:305px;" border="1" cellspacing="3" cellpadding="0" width="589" align="center">
<tbody>
<tr>
<td width="18%" valign="top"><strong>Data type</strong></td>
<td width="12%" valign="top"><strong>Prefix</strong></td>
<td width="31%" valign="top"><strong>Example</strong></td>
<td width="39%" valign="top"><strong>Note</strong></td>
</tr>
<tr>
<td width="18%" valign="top">String (Text)</td>
<td width="12%" valign="top">str</td>
<td width="31%" valign="top">strCity</td>
<td width="39%" valign="top">Text to 255 characters</td>
</tr>
<tr>
<td width="18%" valign="top">Date/Time</td>
<td width="12%" valign="top">dtm</td>
<td width="31%" valign="top">dtmCreated</td>
<td width="39%" valign="top">Date and Time</td>
</tr>
<tr>
<td width="18%" valign="top">Boolean</td>
<td width="12%" valign="top">bln</td>
<td width="31%" valign="top">blnIsNotNull</td>
<td width="39%" valign="top">Yes/No or True/False, two values</td>
</tr>
<tr>
<td width="18%" valign="top">Byte</td>
<td width="12%" valign="top">byt</td>
<td width="31%" valign="top">bytMonth</td>
<td width="39%" valign="top">One Byte, values from 0 to +255</td>
</tr>
<tr>
<td width="18%" valign="top">Integer</td>
<td width="12%" valign="top">int</td>
<td width="31%" valign="top">intCount</td>
<td width="39%" valign="top">Two Bytes; values from -32,768 to +32,767; No fractions</td>
</tr>
<tr>
<td width="18%" valign="top">Long<br />
(long integer)</td>
<td width="12%" valign="top">lng</td>
<td width="31%" valign="top">lngDistance</td>
<td width="39%" valign="top">Four Bytes, values from<br />
-2,147,483,648 to 2,147,483,647</td>
</tr>
<tr>
<td width="18%" valign="top">Single</td>
<td width="12%" valign="top">sng</td>
<td width="31%" valign="top">sngPopulation</td>
<td width="39%" valign="top">Four Bytes single precision, floating point</td>
</tr>
<tr>
<td width="18%" valign="top">Currency</td>
<td width="12%" valign="top">cur</td>
<td width="31%" valign="top">curTraded</td>
<td width="39%" valign="top">Fifteen digits to the left, four to the right. Fixed decimal place.</td>
</tr>
<tr>
<td width="18%" valign="top">Double</td>
<td width="12%" valign="top">dbl</td>
<td width="31%" valign="top">dblClientID</td>
<td width="39%" valign="top">Eight Bytes</td>
</tr>
<tr>
<td width="18%" valign="top">Decimal</td>
<td width="12%" valign="top">dec</td>
<td width="31%" valign="top">decMicroseconds</td>
<td width="39%" valign="top">Twelve Bytes</td>
</tr>
<tr>
<td width="18%" valign="top">Object</td>
<td width="12%" valign="top">obj</td>
<td width="31%" valign="top">objConnection</td>
<td width="39%" valign="top"></td>
</tr>
<tr>
<td width="18%" valign="top">Variant</td>
<td width="12%" valign="top">vnt</td>
<td width="31%" valign="top">vntUserInput</td>
<td width="39%" valign="top">It can store numeric, string, date/time, Null, or Empty data</td>
</tr>
<tr>
<td width="18%" valign="top">Error</td>
<td width="12%" valign="top">err</td>
<td width="31%" valign="top">errBadEmailAddress</td>
<td width="39%" valign="top"></td>
</tr>
</tbody>
</table>
<p>source : http://www.databasezone.com/techdocs/acclimit.html</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/optionexplicit.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/optionexplicit.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/optionexplicit.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/optionexplicit.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/optionexplicit.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/optionexplicit.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/optionexplicit.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/optionexplicit.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/optionexplicit.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/optionexplicit.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=52&subd=optionexplicit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://optionexplicit.wordpress.com/2009/10/14/microsoft-access-2003-maximum-capacities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edeab4aeb5fd4b32e0a095916ca15e88?s=96&#38;d=identicon" medium="image">
			<media:title type="html">optionexplicit</media:title>
		</media:content>
	</item>
		<item>
		<title>A Note on Variable Scope</title>
		<link>http://optionexplicit.wordpress.com/2009/10/07/a-note-on-variable-scope/</link>
		<comments>http://optionexplicit.wordpress.com/2009/10/07/a-note-on-variable-scope/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 04:31:02 +0000</pubDate>
		<dc:creator>optionexplicit</dc:creator>
				<category><![CDATA[OOP]]></category>

		<guid isPermaLink="false">http://optionexplicit.wordpress.com/2009/10/07/a-note-on-variable-scope/</guid>
		<description><![CDATA[What about that &#8220;Private Sub MessageUser()&#8221; line from our previous example? It&#8217;s a private sub, as the name states, but try to access it from outside the Vehicle class. In the MainForm_Load() sub, try adding Van.MessageUser. You should get a build error that states &#8216;Vehicle.Private Sub MessageUser()&#8217; is not accessible in this context because it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=50&subd=optionexplicit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>What about that &#8220;Private Sub MessageUser()&#8221; line from our <a href="http://optionexplicit.wordpress.com/2009/10/07/classes-vs-objects/">previous example</a>? It&#8217;s a private sub, as the name states, but try to access it from outside the Vehicle class. In the MainForm_Load() sub, try adding Van.MessageUser. You should get a build error that states &#8216;Vehicle.Private Sub MessageUser()&#8217; is not accessible in this context because it is &#8216;Private&#8217;. Try the same thing with the _VehicleType variable and you should get a similar result.</p>
<p>As the error suggests, you can&#8217;t access certain types of class members from outside of the class itself.</p>
<p>The four types of variables we have used so far are:<br />
<em>Public variables</em>. These can be access directly from the class. We choose not to use this with OP by convention. Rather we create Properties (we&#8217;ll get into this later) to adjust variables directly, or use Get/Set methods.</p>
<p><em>Private variables</em>. These can be accessed only within the class. Private variables cannot be accessed by any subclasses or other class. These are ideal whenever you have a class you know will not be inherited. Also, these are good for storing data that should not be exposed publicly.</p>
<p><em>Protected variables</em>. These can be accessed by the class or any subclass that is inherited. These are what I personally use because if you design a subclass later, you don&#8217;t have to change your base class code later. This is a good catchall private storage method.</p>
<p><em>Local variables</em>. These are created by the Dim statement. These exist for the duration of the location in which they are declared. For example, if you Dim x As Int32 in Form_Load(), it will only exist in the Form_Load() method.</p>
<p>These four access types are also used frequently in sub/function/property headings, and thus are not limited to just variables. For more information on access types, see the <a href="http://msdn2.microsoft.com/en-us/library/ms973875.aspx#methodscope_topic4" target="_blank">MSDN article</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/optionexplicit.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/optionexplicit.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/optionexplicit.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/optionexplicit.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/optionexplicit.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/optionexplicit.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/optionexplicit.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/optionexplicit.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/optionexplicit.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/optionexplicit.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=50&subd=optionexplicit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://optionexplicit.wordpress.com/2009/10/07/a-note-on-variable-scope/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edeab4aeb5fd4b32e0a095916ca15e88?s=96&#38;d=identicon" medium="image">
			<media:title type="html">optionexplicit</media:title>
		</media:content>
	</item>
		<item>
		<title>Classes vs. Objects</title>
		<link>http://optionexplicit.wordpress.com/2009/10/07/classes-vs-objects/</link>
		<comments>http://optionexplicit.wordpress.com/2009/10/07/classes-vs-objects/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 04:11:25 +0000</pubDate>
		<dc:creator>optionexplicit</dc:creator>
				<category><![CDATA[OOP]]></category>

		<guid isPermaLink="false">http://optionexplicit.wordpress.com/?p=47</guid>
		<description><![CDATA[I know I said this was object-oriented programming. So why am I talking about classes? The answer to this question is that all objects are classes. (Mind-blowing, huh?) The way to separate the difference between objects and classes is quite easy. An object has an IS-A relationship, while a class has a HAS-A relationship.
A car [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=47&subd=optionexplicit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I know I said this was object-oriented programming. So why am I talking about classes? The answer to this question is that all objects are classes. (Mind-blowing, huh?) The way to separate the difference between objects and classes is quite easy. An object has an IS-A relationship, while a class has a HAS-A relationship.</p>
<p>A car IS-A vehicle, while a dog HAS-A tail. The car would be an object declared as type Vehicle, while the dog would have a member that IS-A tail. However, Fido IS-A dog. The dog class is the base template for all dog objects, so when we declare Fido as a dog, Fido is an object. Since Fido IS-A dog, Fido HAS-A tail.</p>
<p>IS-A = object<br />
HAS-A = class</p>
<p>&#8220;Class&#8221; and &#8220;object&#8221; are sometimes used interchangeably. However, classes describe the structure of objects, while objects are instances of classes. Each instance is an exact copy of its base class. Because an object is an &#8220;instance&#8221; of a class, the act of creating an object is called <strong>instantiation</strong>.<br />
To describe it better, a class is a blueprint, and an object is a building based on that blueprint.</p>
<p>To understand it, we can use an example. Open up Visual Studio, and create a new Windows Application. Go to the File menu, click Add New Item, and select &#8220;Class&#8221;. A blank class window should show up. Change the name from Class1 to Vehicle. This should be what comes up:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:95%;height:84px;margin:0;padding:4px;">
<div style="text-align:left;background-color:#f4f4f4;color:#000000;" dir="ltr">Public Class Vehicle
    'This is an empty class
End Class</div>
</pre>
</div>
<p>We will start by creating a constructor.  A <strong>constructor </strong>is a special method inside each class that tells the class what to do when it is instanced. The instantiation of a class occurs when a new instance of a class is declared. In VB.NET, this is accomplished with the New sub.</p>
<p>Change your class so it looks like this:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:95%;height:244px;margin:0;padding:4px;">
<div style="text-align:left;background-color:#f4f4f4;color:#000000;" dir="ltr">Public Class Vehicle

#Region " Constructors "

    'The default constructor
    Public Sub New()
        'Tell the user that the new sub is being called.
        MessageBox.Show("This is a new vehicle object", "Object Oriented Programming")
    End Sub

#End Region

End Class</div>
</pre>
</div>
<p>Notice two things. The first is the Region called &#8220;Constructors&#8221;. I usually create these different regions to keep the code window nice and neat, and as you can have multiple constructors (see below), it&#8217;s nice to keep them all in one place. The second is the code in the New sub. This should fire every time a new object is declared.</p>
<p>To test this out, we can add some code to the MainForm_Load() method on our form:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:95%;height:180px;margin:0;padding:4px;">
<div style="text-align:left;background-color:#f4f4f4;color:#000000;" dir="ltr">Private Sub MainForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    'Declare a vehicle called Car and instance it
    Dim Car As Vehicle
    Car = New Vehicle()
    '
    'Declare a vehicle called Truck and instance it
    Dim Truck As Vehicle
    Truck = New Vehicle()
End Sub</div>
</pre>
</div>
<p>Run it. You&#8217;ll notice that you get two identical MessageBoxes that tell you that you have created a new vehicle object. That&#8217;s nice, right? Wouldn&#8217;t it be better to at least let it tell you what type of vehicle it is? We can: just overload a new constructor.</p>
<p>Change the class to:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:95%;height:516px;margin:0;padding:4px;">
<div style="text-align:left;background-color:#f4f4f4;color:#000000;" dir="ltr">Public Class Vehicle
    Protected _VehicleType As String

#Region " Constructors "

    'The default constructor
    Public Sub New()
        'There was no parameter passed, so let's say the vehicle is a "vehicle"
        _VehicleType = "vehicle"
        '
        'Alert the user
        MessageUser()
    End Sub
    '
    'Another constructor that accepts a parameter
    Public Sub New(ByVal VehicleType As String)
        'We've been passed a parameter, so let's store that in a private variable
        'for later use
        _VehicleType = VehicleType
        '
        'Alert the user
        MessageUser()
    End Sub

#End Region

    Private Sub MessageUser()
        'Tell the user what type of class it is
        MessageBox.Show("This object is a " &amp; _VehicleType, "Object Oriented Programming")
    End Sub

End Class</div>
</pre>
</div>
<p>That&#8217;s a lot! What does it mean? The first line &#8220;Protected _VehicleType As String&#8221; means that this is a variable that can be used anywhere inside the class, or any subclass (we&#8217;ll get to this topic later). The default constructor has been modified to take into account the storage variable, and if there&#8217;s no parameter passed, it sets the variable to &#8220;vehicle&#8221;.</p>
<p>What about that second constructor? It&#8217;s known as an overloaded constructor because it is a New sub, but has a parameter attached to it. We take the passed value and assign it to our protected variable. Let&#8217;s see what this new class does. Modify MainForm_Load to be the following:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:95%;height:244px;margin:0;padding:4px;">
<div style="text-align:left;background-color:#f4f4f4;color:#000000;" dir="ltr">Private Sub MainForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    'Declare a vehicle called Car and instance it
    Dim Car As Vehicle
    Car = New Vehicle("car")
    '
    'Declare a vehicle called Truck and instance it
    Dim Truck As Vehicle
    Truck = New Vehicle("truck")
    '
    'Declare a vehicle called Van and instance it
    Dim Van As Vehicle
    Van = New Vehicle()
End Sub</div>
</pre>
</div>
<p>Notice how the MessageBox has been changed to reflect this addition. Car and Truck are shown to be their respective types, but because nothing was passed to the Van instantiation call, it defaults to &#8220;vehicle&#8221;.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/optionexplicit.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/optionexplicit.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/optionexplicit.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/optionexplicit.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/optionexplicit.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/optionexplicit.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/optionexplicit.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/optionexplicit.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/optionexplicit.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/optionexplicit.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=47&subd=optionexplicit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://optionexplicit.wordpress.com/2009/10/07/classes-vs-objects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edeab4aeb5fd4b32e0a095916ca15e88?s=96&#38;d=identicon" medium="image">
			<media:title type="html">optionexplicit</media:title>
		</media:content>
	</item>
		<item>
		<title>Get() and Set() Class Property</title>
		<link>http://optionexplicit.wordpress.com/2009/10/06/get-and-set-class-property/</link>
		<comments>http://optionexplicit.wordpress.com/2009/10/06/get-and-set-class-property/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 10:41:56 +0000</pubDate>
		<dc:creator>optionexplicit</dc:creator>
				<category><![CDATA[OOP]]></category>

		<guid isPermaLink="false">http://optionexplicit.wordpress.com/?p=44</guid>
		<description><![CDATA[Public Class Hello
Private _sample As String
Public Property Sample() As String
Get
&#8216;1
Return _sample
End Get
Set(ByVal Value As String)
&#8216;2
_sample = Value
End Set
End Property
Public Sub DoSomething()
Me.Sample = &#8220;SampleText&#8221; &#8216;2
MessageBox.Show(Me.Sample)  &#8216;1
End Sub
End Class
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=44&subd=optionexplicit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Public Class Hello</p>
<p>Private _sample As String</p>
<p>Public Property Sample() As String<br />
Get<br />
&#8216;1<br />
Return _sample<br />
End Get<br />
Set(ByVal Value As String)<br />
&#8216;2<br />
_sample = Value<br />
End Set<br />
End Property</p>
<p>Public Sub DoSomething()<br />
Me.Sample = &#8220;SampleText&#8221; &#8216;2<br />
MessageBox.Show(Me.Sample)  &#8216;1</p>
<p>End Sub</p>
<p>End Class</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/optionexplicit.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/optionexplicit.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/optionexplicit.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/optionexplicit.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/optionexplicit.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/optionexplicit.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/optionexplicit.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/optionexplicit.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/optionexplicit.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/optionexplicit.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=44&subd=optionexplicit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://optionexplicit.wordpress.com/2009/10/06/get-and-set-class-property/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edeab4aeb5fd4b32e0a095916ca15e88?s=96&#38;d=identicon" medium="image">
			<media:title type="html">optionexplicit</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding component/control(.dll) to the Visual Studio Toolbox</title>
		<link>http://optionexplicit.wordpress.com/2009/02/19/adding-componentcontroldll-to-the-visual-studio-toolbox/</link>
		<comments>http://optionexplicit.wordpress.com/2009/02/19/adding-componentcontroldll-to-the-visual-studio-toolbox/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 05:07:04 +0000</pubDate>
		<dc:creator>optionexplicit</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://optionexplicit.wordpress.com/?p=42</guid>
		<description><![CDATA[*) note : we use .netCharting as component/control in this article
Introduction
This document describes how to add the .netCHARTING control to various versions of Visual Studio toolbox.
Visual Studio 2002 &#38; 2003:

Right-Click on the toolbox &#62; Add/Remove Items
Select the .net Framework Components tab
If the server version is installed, the component will be listed in the list box. Otherwise, click [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=42&subd=optionexplicit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><em>*) note : we use <strong>.netCharting</strong> as component/control in this article</em></p>
<p><strong>Introduction</strong></p>
<p>This document describes how to add the .netCHARTING control to various versions of Visual Studio toolbox.</p>
<p><strong>Visual Studio 2002 &amp; 2003:</strong></p>
<ul>
<li>Right-Click on the toolbox &gt; Add/Remove Items</li>
<li>Select the .net Framework Components tab</li>
<li>If the server version is installed, the component will be listed in the list box. Otherwise, click browse and select the .netCHARTING dll.</li>
<li>Click Ok to finish.</li>
</ul>
<div style="width:100%;">
<table class="hs-box" border="0">
<tbody>
<tr>
<td class="hs-box-icon" valign="top"> </td>
<td class="hs-box-content" valign="top">If the error &#8220;The format of the file &#8216;dotnetcharting&#8217; is invalid.&#8221; occurs. This means the dll being added is a .net 2.0 assembly. To resolve this issue, the .net 1.x version of the bundle must be downloaded and used instead.</td>
</tr>
</tbody>
</table>
</div>
<p><strong></strong> </p>
<p><strong>Visual Studio 2005, 2008 &amp; Express editions.</strong></p>
<li>Right-Click on the toolbox &gt; Choose Items</li>
<li>Select the .net Framework Components tab</li>
<li>If the server version is installed, the component will be listed in this tab. Otherwise, click browse and select the .netCHARTING dll.</li>
<li>Click Ok to finish. 
<p><strong>Web Matrix</strong></p>
<ul>
<li>Select &#8220;Custom Controls&#8221; tab of the toolbox.</li>
<li>Right-Click on the custom controls tab and select &#8220;Add Local Toolbox Components&#8230;&#8221;</li>
<li>Click &#8220;Browse&#8230;&#8221;</li>
<li>Navigate to the location of the dotnetcharting.dll file, select it and click ok.</li>
<li>Finally click ok at the &#8220;Select Components&#8221; popup.</li>
<li>When the &#8220;Install to GAC&#8221; popup appears, click no.</li>
</ul>
</li>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/optionexplicit.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/optionexplicit.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/optionexplicit.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/optionexplicit.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/optionexplicit.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/optionexplicit.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/optionexplicit.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/optionexplicit.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/optionexplicit.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/optionexplicit.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=42&subd=optionexplicit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://optionexplicit.wordpress.com/2009/02/19/adding-componentcontroldll-to-the-visual-studio-toolbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edeab4aeb5fd4b32e0a095916ca15e88?s=96&#38;d=identicon" medium="image">
			<media:title type="html">optionexplicit</media:title>
		</media:content>
	</item>
		<item>
		<title>Build Your Own ASP.NET Server Control Component</title>
		<link>http://optionexplicit.wordpress.com/2009/02/19/build-your-own-aspnet-server-control-component/</link>
		<comments>http://optionexplicit.wordpress.com/2009/02/19/build-your-own-aspnet-server-control-component/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 04:29:06 +0000</pubDate>
		<dc:creator>optionexplicit</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://optionexplicit.wordpress.com/2009/02/19/build-your-own-aspnet-server-control-component/</guid>
		<description><![CDATA[Build Your Own ASP.NET Server Control Component
aka.
by alfred_ng@hotvoice.com
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
Here will deliver a simple tutorial guide you how to build a component using VB.NET, and the steps using it with ASP.NET Web Page. 
This component will generate the bullet or numbering beside your list. 
Below is the coding of the component 
Step1: Copy the code below save [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=41&subd=optionexplicit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Build Your Own ASP.NET Server Control Component<br />
aka.<br />
by alfred_ng@hotvoice.com<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Here will deliver a simple tutorial guide you how to build a component using VB.NET, and the steps using it with ASP.NET Web Page. </p>
<p>This component will generate the bullet or numbering beside your list. </p>
<p>Below is the coding of the component </p>
<p>Step1: Copy the code below save it as &#8220;ShowList.vb&#8221; filename. </p>
<p>================== Code Listing: ShowList.vb ========================</p>
<p>Imports System<br />
Imports System.Web<br />
Imports System.Web.UI<br />
Imports System.Collections</p>
<p>Namespace listControl</p>
<p>Public Class ShowList: Inherits Control</p>
<p>Private _dataSource As IEnumerable</p>
<p>Public Property DataSource As IEnumerable</p>
<p>Get<br />
  Return _dataSource<br />
End Get</p>
<p>Set<br />
  _dataSource = Value<br />
End Set<br />
End Property</p>
<p>Public Title As String<br />
Public Format As String</p>
<p>Protected Overrides Sub OnDataBinding (e As EventArgs)</p>
<p>  Dim DataEnum As IEnumerator<br />
  Dim ltlLiteral As LiteralControl<br />
  Dim lstBeginFormatTag As String<br />
  Dim lstEndFormatTag As String</p>
<p>  Controls.Clear()<br />
  Controls.Add(New LiteralControl(&#8220;<b>&#8221; &amp; Title &amp; &#8220;</b>&#8220;))</p>
<p>  Select Case Format.ToLower()<br />
    Case &#8220;number&#8221;<br />
      lstBeginFormatTag = &#8220;<OL>&#8220;<br />
      lstEndFormatTag = &#8220;</OL>&#8220;<br />
    Case &#8220;bullet&#8221;<br />
      lstBeginFormatTag = &#8220;<UL>&#8220;<br />
      lstEndFormatTag = &#8220;</UL>&#8220;<br />
  End Select</p>
<p>  If Format.ToLower()  &#8220;number&#8221; AND Format.ToLower()  &#8220;bullet&#8221; Then<br />
    Controls.Add(New LiteralControl(&#8220;<br /><font color='red'>&#8221; _<br />
	  &amp; &#8220;Error Message: Undefined &#8220;&#8221;Format&#8221;" Property, either &#8221; _<br />
	  &amp; &#8220;&#8221;"number&#8221;" or &#8220;&#8221;bullet&#8221;"</font><br />&#8220;))<br />
  Else<br />
    If Not DataSource Is Nothing<br />
      DataEnum = DataSource.GetEnumerator()<br />
      Controls.Add(New LiteralControl(lstBeginFormatTag))</p>
<p>      While (DataEnum.MoveNext())<br />
        ltlLiteral = New LiteralControl (DataEnum.Current.ToString())</p>
<p>        Controls.Add(New LiteralControl(&#8220;<LI>&#8220;))<br />
        Controls.Add(ltlLiteral)<br />
        Controls.Add(New LiteralControl(&#8220;</LI>&#8220;))<br />
      End While</p>
<p>      Controls.Add(New LiteralControl(lstEndFormatTag))<br />
    Else<br />
      Controls.Add(New LiteralControl(&#8220;<br /><font color='red'>&#8221; _<br />
        &amp; &#8220;Data Not Found!</font><br />&#8220;))<br />
    End If<br />
  End If<br />
End Sub</p>
<p>End Class</p>
<p>End Namespace</p>
<p>================== End of Code Listing ==============================</p>
<p>Step2: Compile and locate it at your web application root\bin folder. </p>
<p>vbc /t:library /r:System.dll,System.Web.dll ShowList.dll </p>
<p>Step3: Implement into your ASP.NET page, copy it and save it as &#8220;ListControl.aspx&#8221;. </p>
<p>================== Code Listing: ListControl.aspx ===================</p>
<p>Sub Page_Load</p>
<p>    Dim theList As ArrayList</p>
<p>    theList = New ArrayList<br />
    theList.Add (&#8220;Expresso&#8221;)<br />
    theList.Add (&#8220;Cappurino&#8221;)<br />
    theList.Add (&#8220;Coffee&#8221;)<br />
    theList.Add (&#8220;Mocha&#8221;)</p>
<p>    dbBound.DataSource = theList<br />
    dbBound.DataBind()</p>
<p>End Sub</p>
<p>ListControl Demonstration</p>
<h2>Build Your Own Bullet and Numbering  Control Component</h2>
<p></p>
<p>================== End of Code Listing ==============================<br />
In order to use the control, remember that locate the &#8220;ShowList.dll&#8221; file which is just generated into the web application root\bin folder. Inside your .aspx page, you need to attach this code on top </p>
<p>Inside the content, you need to attach the code below to using the control. </p>
<p>Description: Initially the Page_Load will bind the data into the control. You may bind the data with the database. For the &#8220;Format&#8221; property you can use either &#8220;bullet&#8221; or &#8220;number&#8221; to display your list. The &#8220;Title&#8221; property, it is just a title for the listing and in &#8220;BOLD&#8221; format. </p>
<p>Thanks for reading and try it out. Any suggestion or recommendation about this control are welcome reply to me. </p>
<p>source : http://www.asp101.com/articles/misc/usercontrol/default.asp</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/optionexplicit.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/optionexplicit.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/optionexplicit.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/optionexplicit.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/optionexplicit.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/optionexplicit.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/optionexplicit.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/optionexplicit.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/optionexplicit.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/optionexplicit.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=41&subd=optionexplicit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://optionexplicit.wordpress.com/2009/02/19/build-your-own-aspnet-server-control-component/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edeab4aeb5fd4b32e0a095916ca15e88?s=96&#38;d=identicon" medium="image">
			<media:title type="html">optionexplicit</media:title>
		</media:content>
	</item>
		<item>
		<title>Aika Imanina Ardhiansa, putri kami</title>
		<link>http://optionexplicit.wordpress.com/2008/09/04/aika-imanina-ardhiansa-putri-kami/</link>
		<comments>http://optionexplicit.wordpress.com/2008/09/04/aika-imanina-ardhiansa-putri-kami/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 07:52:45 +0000</pubDate>
		<dc:creator>optionexplicit</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://optionexplicit.wordpress.com/?p=29</guid>
		<description><![CDATA[Aika Imanina Ardhiansa putriku sayang, Ayah-Bunda mengucap Alhamdulillah untuk kehadiran Aika bersama kami. Semoga Aika sayang menjadi putri yang sholehah, beriman kepada Allah, berbakti dan dapat mengangkat derajat Ayah-Bunda.
Aika lahir di RSI Al Arafah Kediri pada tanggal 28 Agustus 2008 pukul 15:18 WIB. Bunda tentu akan segera melupakan rasa sakit dan berganti bahagia ketika melihat [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=29&subd=optionexplicit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://optionexplicit.files.wordpress.com/2008/09/aika_imanina_ardhiansa.png"><img class="alignleft size-full wp-image-31" style="margin:2px 6px;" src="http://optionexplicit.files.wordpress.com/2008/09/aika_imanina_ardhiansa.png?w=129&#038;h=172" alt="" width="129" height="172" /></a>Aika Imanina Ardhiansa putriku sayang, Ayah-Bunda mengucap Alhamdulillah untuk kehadiran Aika bersama kami. Semoga Aika sayang menjadi putri yang sholehah, beriman kepada Allah, berbakti dan dapat mengangkat derajat Ayah-Bunda.</p>
<p>Aika lahir di RSI Al Arafah Kediri pada tanggal 28 Agustus 2008 pukul 15:18 WIB. Bunda tentu akan segera melupakan rasa sakit dan berganti bahagia ketika melihat Aika lahir dengan selamat.</p>
<p>Aika Imanina Ardhiansa kami ambil dari kata :<br />
- Aika (Arab) : Tanaman yang tumbuh dengan baik, yang secara harfiah kami artikan Tumbuh dengan Baik<br />
- Aika (Kanji) : kanji Ai berarti Cinta dan kanji Hana yang berarti Bunga, jadi secara harfiah bisa diartikan Bunga Cinta<br />
- Imanina (Arab) : Keimanan kita kepada Allah<br />
Secara harfiah, Aika Imanina Ardhiansa kami maksudkan Tumbuh Dengan Baik Keimanan Kita Kepada Allah. Semoga  doa kami dalam nama Aika mendapat rahmat  dan kasih-sayang Allah SWT.</p>
<p>Aika sayang, cepat besar ya nak, kita rajut bersama hari-hari nanti, semoga selalu penuh keberkahan, Amiin.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/optionexplicit.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/optionexplicit.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/optionexplicit.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/optionexplicit.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/optionexplicit.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/optionexplicit.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/optionexplicit.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/optionexplicit.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/optionexplicit.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/optionexplicit.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/optionexplicit.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/optionexplicit.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=29&subd=optionexplicit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://optionexplicit.wordpress.com/2008/09/04/aika-imanina-ardhiansa-putri-kami/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edeab4aeb5fd4b32e0a095916ca15e88?s=96&#38;d=identicon" medium="image">
			<media:title type="html">optionexplicit</media:title>
		</media:content>

		<media:content url="http://optionexplicit.files.wordpress.com/2008/09/aika_imanina_ardhiansa.png" medium="image" />
	</item>
		<item>
		<title>Bangku Tunggu</title>
		<link>http://optionexplicit.wordpress.com/2008/08/20/bangku-tunggu/</link>
		<comments>http://optionexplicit.wordpress.com/2008/08/20/bangku-tunggu/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 12:47:08 +0000</pubDate>
		<dc:creator>optionexplicit</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://optionexplicit.wordpress.com/?p=24</guid>
		<description><![CDATA[Pada awalnya bangku ini adalah bangku kayu biasa, seperti pada umumnya tempat perbelanjaan menyediakan tempat duduk bagi yang ingin istirahat. Pun demikian di ITC Permata Hijau di lantai 1, sekitar 30 meter dari mushola lantai 1. Lokasinya agak jauh dari mushola memang dan terhalang beberapa toko. Dan, sekarang bangku ini tetap bangku biasa bagi sebagian [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=24&subd=optionexplicit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div id="attachment_25" class="wp-caption alignleft" style="width: 210px"><a href="http://optionexplicit.files.wordpress.com/2008/08/bangku_tunggu.jpg"><img class="size-medium wp-image-25" style="border:0 none;" src="http://optionexplicit.files.wordpress.com/2008/08/bangku_tunggu.jpg?w=200&#038;h=150" alt="Bangku Tunggu" width="200" height="150" /></a><p class="wp-caption-text">Bangku Tunggu</p></div>
<p>Pada awalnya bangku ini adalah bangku kayu biasa, seperti pada umumnya tempat perbelanjaan menyediakan tempat duduk bagi yang ingin istirahat. Pun demikian di ITC Permata Hijau di lantai 1, sekitar 30 meter dari mushola lantai 1. Lokasinya agak jauh dari mushola memang dan terhalang beberapa toko. Dan, sekarang bangku ini tetap bangku biasa bagi sebagian orang, mungkin, tapi tidak bagi kami, saya dan istri. Bangku ini adalah tempat yang kami sepakati untuk saling menunggu meskipun tidak pernah ada deklarasi dan tidak pernah terucapkan. Saya atau istri &#8220;pasti&#8221; akan menunggu di bangku ini setelah selesai melakukan sholat. Disinilah saya atau istri saling menunggu sambil mengamati anak-anak kecil yang bermain di taman bermain di lantai dasar. Kami tidak tahu apakah buah hati kami juga bisa menikmati taman bermain di sini karena ada rencana kami akan pindah tempat tinggal di kawasan Ragunan. Dan mungkin akan ada Bangku Tunggu yang baru bagi kami sekeluarga.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/optionexplicit.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/optionexplicit.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/optionexplicit.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/optionexplicit.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/optionexplicit.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/optionexplicit.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/optionexplicit.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/optionexplicit.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/optionexplicit.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/optionexplicit.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/optionexplicit.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/optionexplicit.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=24&subd=optionexplicit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://optionexplicit.wordpress.com/2008/08/20/bangku-tunggu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edeab4aeb5fd4b32e0a095916ca15e88?s=96&#38;d=identicon" medium="image">
			<media:title type="html">optionexplicit</media:title>
		</media:content>

		<media:content url="http://optionexplicit.files.wordpress.com/2008/08/bangku_tunggu.jpg?w=285" medium="image">
			<media:title type="html">Bangku Tunggu</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating a Local User on Windows 2000 server</title>
		<link>http://optionexplicit.wordpress.com/2008/08/04/creating-a-local-user-on-windows-2000-server/</link>
		<comments>http://optionexplicit.wordpress.com/2008/08/04/creating-a-local-user-on-windows-2000-server/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 04:27:18 +0000</pubDate>
		<dc:creator>optionexplicit</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://optionexplicit.wordpress.com/?p=22</guid>
		<description><![CDATA[Apabila Anda ingin menambahkan user ke Windows 2000 server dan setelah cek Control Panel tidak menemukan icon User Account, silakan coba langkah-langkah berikut :

From     the Windows Start menu select Programs &#124; Administrative Tools &#124;     Computer Management. If this menu item does not exist, you are either  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=22&subd=optionexplicit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Apabila Anda ingin menambahkan user ke Windows 2000 server dan setelah cek Control Panel tidak menemukan icon User Account, silakan coba langkah-langkah berikut :</p>
<ol>
<li>From     the Windows <strong>Start</strong> menu select <strong>Programs | Administrative Tools |     Computer Management</strong>. If this menu item does not exist, you are either     not an administrator for the computer or the server is a domain controller     and you need to <a href="http://help.prtracker.com/CreateDomainUser2000.html">create a domain user</a> instead.</li>
<li>From the <strong>Computer Management</strong> dialog, navigate to <strong>System Tools |     Local Users and Groups | Users </strong>on     the left panel; right click on <strong>Users</strong> and select <strong>New user</strong> from the     popup menu.</li>
<li>In the <strong>New User</strong> dialog, enter <em>prtracker</em>, <em>PR-Tracker</em> and <em>Problem Tracking System</em> for     the <strong>User name</strong>, <strong>Full name</strong> and<strong> Description</strong>, respectively.</li>
<li>Uncheck box <strong>User must change password at next login</strong> and then check     box <strong>Password Never Expires</strong>.</li>
<li>Click the <strong>Create</strong> button to create the user and then click Close     button.</li>
<li>Optional steps follow: double-click the prtracker username on the right     panel.</li>
<li>From the <strong>prtracker Properties</strong> dialog, select tab <strong>Member Of</strong> and click the <strong>Add</strong> button.</li>
<li>From the <strong>Select Groups</strong> dialog double-click <strong>Administrators</strong> and click the <strong>OK</strong> button.</li>
</ol>
<p>Note that optional steps 6, 7 and 8 are only recommended if you plan to use SQL Server as your database provider. Even if you do plan to use SQL Server as the database provider, these steps are optional if you choose to configure the server roles in SQL Server instead.</p>
<p>Source : <a href="http://help.prtracker.com/CreateLocalUser2000.html">prtracker</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/optionexplicit.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/optionexplicit.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/optionexplicit.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/optionexplicit.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/optionexplicit.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/optionexplicit.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/optionexplicit.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/optionexplicit.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/optionexplicit.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/optionexplicit.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/optionexplicit.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/optionexplicit.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=optionexplicit.wordpress.com&blog=4074106&post=22&subd=optionexplicit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://optionexplicit.wordpress.com/2008/08/04/creating-a-local-user-on-windows-2000-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edeab4aeb5fd4b32e0a095916ca15e88?s=96&#38;d=identicon" medium="image">
			<media:title type="html">optionexplicit</media:title>
		</media:content>
	</item>
	</channel>
</rss>