<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Alfonso77&#039;s Blog</title>
	<atom:link href="http://alfonso77.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://alfonso77.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 22 Dec 2010 13:32:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='alfonso77.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Alfonso77&#039;s Blog</title>
		<link>http://alfonso77.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://alfonso77.wordpress.com/osd.xml" title="Alfonso77&#039;s Blog" />
	<atom:link rel='hub' href='http://alfonso77.wordpress.com/?pushpress=hub'/>
		<item>
		<title>C# resize images with photoshop</title>
		<link>http://alfonso77.wordpress.com/2010/10/29/c-resize-images-with-photoshop/</link>
		<comments>http://alfonso77.wordpress.com/2010/10/29/c-resize-images-with-photoshop/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 22:28:01 +0000</pubDate>
		<dc:creator>alfonso77</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alfonso77.wordpress.com/?p=232</guid>
		<description><![CDATA[The function uses a global string builder for collecting errors. When calling the function you need to supply ref long width and height The function will modify those parameters with the original image width and height. you need to have reference to Photoshop. please note that you can have reference only if you have the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=232&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The function uses a global string builder for collecting errors.<br />
When calling the function you need to supply ref long width and height<br />
The function will modify those parameters with the original image width and height.<br />
you need to have reference to Photoshop. please note that you can have reference only if you have the standard version, and not the trial.</p>
<p>public Boolean resizeWithPhotoShop(string fileName,<br />
string ThumbnailFileName,<br />
long resizeScale,<br />
ref long originalWidth,<br />
ref long originalHeight<br />
){<br />
try{<br />
Photoshop.Application appRef = new Photoshop.Application();<br />
Photoshop.Document docRef ; // abstract class cannot be initated.<br />
docRef=appRef.Open(fileName);<br />
//appRef.Visible = false; // donot open photoshop gui.<br />
appRef.DisplayDialogs = Photoshop.PsDialogModes.psDisplayNoDialogs; // do not show dialog messages including errors,<br />
appRef.Preferences.RulerUnits = Photoshop.PsUnits.psPixels;<br />
originalHeight = (long)docRef.Height;<br />
originalWidth = (long)docRef.Width;</p>
<p>float resizeRatio = (float)resizeScale / (float)originalWidth;<br />
int targetHeight = (int)(originalHeight * resizeRatio);<br />
int targetWidth = (int) (originalWidth *resizeRatio) ;</p>
<p>docRef.ResizeImage(targetWidth ,targetHeight,100,4);</p>
<p>Photoshop.JPEGSaveOptions xjpgSaveOptions = new Photoshop.JPEGSaveOptions();<br />
xjpgSaveOptions.EmbedColorProfile = true;<br />
xjpgSaveOptions.FormatOptions = Photoshop.PsFormatOptionsType.psStandardBaseline ;<br />
xjpgSaveOptions.Matte = Photoshop.PsMatteType.psNoMatte ;<br />
xjpgSaveOptions.Quality = 12;</p>
<p>docRef.SaveAs (ThumbnailFileName,xjpgSaveOptions,true,Photoshop.PsExtensionType.psLowercase );</p>
<p>// &#8216; loop thruough documents and cleanUp<br />
for (int doCount=0; doCount &lt; appRef.Documents.Count; doCount++){ appRef.ActiveDocument.Close(2); } return true; } catch(Exception ex){ errLog.Append(&#8220;method resizeWithPhotoShop on image &#8221; + fileName + &#8221; failed :&#8221; + ex.Message); return false; } }//&#8211;&gt; end photoshop resize</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alfonso77.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alfonso77.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alfonso77.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alfonso77.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alfonso77.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alfonso77.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alfonso77.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alfonso77.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alfonso77.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alfonso77.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alfonso77.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alfonso77.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alfonso77.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alfonso77.wordpress.com/232/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=232&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alfonso77.wordpress.com/2010/10/29/c-resize-images-with-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fc90c30b6534a804b80d061fdea21ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alfonso77</media:title>
		</media:content>
	</item>
		<item>
		<title>The use of interfaces</title>
		<link>http://alfonso77.wordpress.com/2010/05/25/the-use-of-interfaces/</link>
		<comments>http://alfonso77.wordpress.com/2010/05/25/the-use-of-interfaces/#comments</comments>
		<pubDate>Tue, 25 May 2010 17:10:21 +0000</pubDate>
		<dc:creator>alfonso77</dc:creator>
				<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://alfonso77.wordpress.com/?p=221</guid>
		<description><![CDATA[The use of interfaces   Interfaces are class type that provide only function and method decleration without implementation. It is known as the blue print of classes, since classes needs to provide the implementation for their interfaces. We use interface to enforce same name convention to similar operation, let say we have build an application with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=221&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">The use of interfaces </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Interfaces are class type that provide only function and method decleration without implementation. It is known as the blue print of classes, since classes needs to provide the implementation for their interfaces.</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">We use interface to enforce same name convention to similar operation, let say we have build an application with objects that perform update and insert operation into the database. Without implementation of the same interface each object can have different name for the insert operation, one object can use the InsertNew method name, another object can use the method name InsertMe. In this case interfaces are enforcing object that implement the interface to use the same name convention declared inside the interface.</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">This is a really big issue when you start building collection of the same type and each type has a different name convention to same operation. In this case you cannot create a generic code that will handle all object type in the same way because of the different methods name convention.</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">The example based on </span><span style="font-size:9pt;color:black;font-family:Verdana;"><a href="mailto:timstall@timstall.com"><span style="color:#336666;">Tim Stall</span></a> article in <a href="http://www.4guysfromrolla.com/articles/110304-1.aspx">4 Guys from rolla. com</a></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;color:black;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;color:black;font-family:Verdana;">If we have a dynamic page that according to parameters in the querystring retrieves data from <strong>User Control</strong> ( user define control that uses different method names for similar operation in this case fetching the value of the control)</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;color:black;font-family:Verdana;"> </span></p>
<table class="MsoTableGrid" style="background:#f3f3f3;border-collapse:collapse;" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="width:6.15in;background-color:transparent;border:gray 1pt solid;padding:0 5.4pt;" width="590" valign="top">
<pre><span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">// Determine what User Control was loaded based on the querystring value</span></span>
<span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">string strSection = Request.QueryString["Section"];

</span></span><span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">string str = "";

</span></span><span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">// Use a switch statement to reference the correct User Control

</span></span><span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">switch (strSection) 

</span></span><span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">{</span></span>
<span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">         case "A":</span></span>
<span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">                 str = ((NoneA)this.PlaceHolder1.Controls[0]).ControlData;</span></span>
<span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">                 break;</span></span>
<span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">         case "B":</span></span>
<span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">                 str = ((NoneB)this.PlaceHolder1.Controls[0]).Values;</span></span>
<span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">                 break;</span></span>
<span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">         case "C":</span></span>
<span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">                 str = ((NoneC)this.PlaceHolder1.Controls[0]).SelectedItems;</span></span>
<span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">                 break;</span></span>
<span style="font-size:9pt;color:black;"><span style="font-family:Courier New;">}; //end of switch-case</span></span></pre>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;color:black;font-family:Verdana;"> </span></p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;color:black;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;"><span style="font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;"><span style="font-family:Times New Roman;">Each optional  control on the page has a different method to extract the value</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;"><span style="font-family:Times New Roman;">                One control uses the conrolData  ( user control)</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;"><span style="font-family:Times New Roman;">                Value for text box control</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;"><span style="font-family:Times New Roman;">                Selected item for list view control.</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;"><span style="font-family:Times New Roman;">The brut approches uses the switch statement to read the query string parameter value and accordenly it will execute a different method to extract the control value.</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;"><span style="font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;"><span style="font-family:Times New Roman;"> No matter which type of control :</span></span></p>
<p class="MsoNormal" style="text-indent:.5in;margin:0;"><span style="font-size:9pt;color:black;"><span style="font-family:Times New Roman;">(this.PlaceHolder1.Controls[0]).GetData;</span></span></p>
<p class="MsoNormal" style="text-indent:.5in;margin:0;"><span style="font-size:9pt;"><span style="font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:9pt;"><span style="font-family:Times New Roman;">However if the user control all implemented the same interface that enforce them to use the same name conventions, the end result will be that, instead of a switch statement, you can execute the same method name on different controls type, and therefore, eliminating the switch statement. This solution will also enable more controls to be created implementing the same interface and the code will work for those new controls without the need to change it.</span></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alfonso77.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alfonso77.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alfonso77.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alfonso77.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alfonso77.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alfonso77.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alfonso77.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alfonso77.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alfonso77.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alfonso77.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alfonso77.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alfonso77.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alfonso77.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alfonso77.wordpress.com/221/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=221&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alfonso77.wordpress.com/2010/05/25/the-use-of-interfaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fc90c30b6534a804b80d061fdea21ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alfonso77</media:title>
		</media:content>
	</item>
		<item>
		<title>sql server express adv &#8211; report services</title>
		<link>http://alfonso77.wordpress.com/2010/05/10/sql-server-express-adv-report-services/</link>
		<comments>http://alfonso77.wordpress.com/2010/05/10/sql-server-express-adv-report-services/#comments</comments>
		<pubDate>Mon, 10 May 2010 14:47:58 +0000</pubDate>
		<dc:creator>alfonso77</dc:creator>
				<category><![CDATA[sql express adv]]></category>

		<guid isPermaLink="false">http://alfonso77.wordpress.com/?p=212</guid>
		<description><![CDATA[Report services Major parts What are .RDL files ? Stands for report definition language. Xml syntax that contains the report definition. Can be created with the ms SQL server intelligence studio. Where do publish the reports ?             Deploy to a report server. What files you need to download? Sql server advanced. Swl server tools. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=212&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Report services</p>
<p>Major parts</p>
<p>What are .RDL files ?</p>
<p>Stands for report definition language.</p>
<p>Xml syntax that contains the report definition.</p>
<p>Can be created with the ms SQL server intelligence studio.</p>
<p>Where do publish the reports ?</p>
<p>            Deploy to a report server.</p>
<p>What files you need to download?</p>
<p>Sql server advanced.</p>
<p>Swl server tools.</p>
<p>Examples.        </p>
<p>Where can you define the virtual location of you report services. :</p>
<p>                        Configure report server.</p>
<p>What is the use for the database setup in the configure report server tools :</p>
<p>            Uses to control report cashing</p>
<p>            Saving information on the reports created by the report services.</p>
<p>Encryption key</p>
<p>            Allows ssl increptions.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alfonso77.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alfonso77.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alfonso77.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alfonso77.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alfonso77.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alfonso77.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alfonso77.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alfonso77.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alfonso77.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alfonso77.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alfonso77.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alfonso77.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alfonso77.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alfonso77.wordpress.com/212/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=212&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alfonso77.wordpress.com/2010/05/10/sql-server-express-adv-report-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fc90c30b6534a804b80d061fdea21ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alfonso77</media:title>
		</media:content>
	</item>
		<item>
		<title>Asp.Net Useful  Inline function calls</title>
		<link>http://alfonso77.wordpress.com/2010/04/13/asp-net-parameter-to-javascript-function/</link>
		<comments>http://alfonso77.wordpress.com/2010/04/13/asp-net-parameter-to-javascript-function/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 18:31:25 +0000</pubDate>
		<dc:creator>alfonso77</dc:creator>
				<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://alfonso77.wordpress.com/?p=210</guid>
		<description><![CDATA[ Passing parameters to a javascript function on the on client click events in a button control: OnClientClick=&#60;%# String.Format(&#8220;functionName(&#8216;{0}&#8217;);&#8221;,Eval(&#8220;fieldName&#8221;).ToString()) %&#62; OnClientClick   =&#60;%# String.Format(&#8220;return checkMe(&#8216;{0}&#8217;);&#8221;, (Container.DataItemIndex + 2).ToString().PadLeft(2, &#8217;0&#8242;)) %&#62;  Using a shorthand if statement to present icon when a rule is satisfied, in this example if the field vp_submited ( Boolean in the database ) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=210&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:x-small;"> </span><span style="font-size:x-small;"><span style="color:#333399;"><strong>Passing parameters to a javascript function on the on client click events in a button control:<br />
</strong></span></span><span style="font-size:x-small;color:#ff0000;"><span style="font-size:x-small;color:#ff0000;">OnClientClick</span></span><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">=</span></span><span style="font-size:x-small;">&lt;%# String.Format(&#8220;functionName(&#8216;{0}&#8217;);&#8221;,Eval(&#8220;fieldName&#8221;).ToString()) %&gt;</span></p>
<p><span style="font-size:x-small;color:#ff0000;"><span style="font-size:x-small;color:#ff0000;"><font size="2" color="#ff0000"><font size="2" color="#ff0000">OnClientClick</p>
<p></font></font></span><font size="2" color="#ff0000"> </p>
<p></font></span><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">=</span></span><span style="font-size:x-small;">&lt;%# String.Format(&#8220;return checkMe(&#8216;{0}&#8217;);&#8221;, (Container.DataItemIndex + 2).ToString().PadLeft(2, &#8217;0&#8242;)) %&gt; </span></p>
<p> <span style="font-size:x-small;"><span style="color:#333399;"><strong>Using a shorthand if statement to present icon when a rule is satisfied, in this example if the field vp_submited ( Boolean in the database ) is equal to 1 then show an icon representing a submitted status.</strong><br />
</span></span><span style="font-size:x-small;"><span style="font-size:x-small;">&lt;%</span></span><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">#</span></span><span style="font-size:x-small;"> (( </span><span style="font-size:x-small;color:#2b91af;"><span style="font-size:x-small;color:#2b91af;">Convert</span></span><span style="font-size:x-small;">.ToInt16(</span><span style="font-size:x-small;color:#2b91af;"><span style="font-size:x-small;color:#2b91af;">DataBinder</span></span><span style="font-size:x-small;">.Eval(Container.DataItem, </span><span style="font-size:x-small;color:#a31515;"><span style="font-size:x-small;color:#a31515;">&#8220;vp_Submited&#8221;</span></span><span style="font-size:x-small;">)) == 1) ? </span><span style="font-size:x-small;color:#a31515;"><span style="font-size:x-small;color:#a31515;">&#8220;&lt;img src=&#8217;images/Flag2_Green.png&#8217; /&gt;&#8221;</span></span><span style="font-size:x-small;">:</span><span style="font-size:x-small;color:#a31515;"><span style="font-size:x-small;color:#a31515;">&#8220;&amp;nbsp;&#8221;</span></span><span style="font-size:x-small;">) %&gt;<br />
</span><span style="color:#333399;"> </span></p>
<p> <span style="color:#333399;"><strong>The current index in a repeater control :<br />
</strong></span><span style="font-size:x-small;">&lt;%# Container.ItemIndex.ToString(&#8220;00&#8243;)%&gt;<br />
</span><span style="font-size:x-small;color:#ff0000;"><span style="font-size:x-small;color:#ff0000;">id</span></span><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">=&#8217;in_sysId_</span></span><span style="font-size:x-small;">&lt;%# Container.ItemIndex.ToString(&#8220;00&#8243;)%&gt;</span><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">&#8216;</span></span></p>
<p> <span style="font-size:x-small;"><span style="color:#000080;"><strong>different ways to use Eval statment :</strong></span></span> </p>
<p>#Bind<br />
You will need to use the #Bind For 2 way databinding where you want to update or insert a record with the use of a data source.<br />
#Eval<br />
Read-only databinding, where the control only presents a value without updating capabilities. </p>
<p><span style="font-size:x-small;">&lt;%</span><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">#</span></span><span style="font-size:x-small;"> </span><span style="font-size:x-small;color:#a31515;"><span style="font-size:x-small;color:#a31515;">&#8220;&lt;b&gt;&#8221;</span></span><span style="font-size:x-small;"> + Eval(</span><span style="font-size:x-small;color:#a31515;"><span style="font-size:x-small;color:#a31515;">&#8220;PK_VehiclePageSysId&#8221;</span></span><span style="font-size:x-small;">) +</span><span style="font-size:x-small;color:#a31515;"><span style="font-size:x-small;color:#a31515;">&#8220;&lt;/b&gt;&#8221;</span></span><span style="font-size:x-small;">%&gt;<br />
</span><span style="font-size:x-small;"> </span><span style="font-size:x-small;color:#ff0000;"><span style="font-size:x-small;color:#ff0000;">SelectedValue<span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">=&#8217;</span></span><span style="font-size:x-small;">&lt;%# Eval(&#8220;vp_PageType&#8221;) %&gt;</span><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">&#8216;</span></span></span></span></p>
<div><span style="font-size:x-small;color:#ff0000;"><span style="font-size:x-small;color:#ff0000;"><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;"> </span></span></span></span></div>
<div><span style="font-size:x-small;color:#ff0000;"><span style="font-size:x-small;color:#ff0000;"><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;"> </span></span><span style="color:#000080;"><strong>Date format:</strong></span><br />
<span style="font-size:small;color:#000000;font-family:Times New Roman;">Represent a date from the database in a short format style mm/dd/yyyy</span><br />
<span style="font-size:10pt;background:yellow;font-family:&amp;"><span style="color:#000000;">&lt;%</span></span><span style="font-size:10pt;color:blue;font-family:&amp;">#</span><span style="font-size:10pt;font-family:&amp;"><span style="color:#000000;"> Eval(</span><span style="color:#a31515;">&#8220;vp_FirstSubmitDate&#8221;</span><span style="color:#000000;">,</span><span style="color:#a31515;">&#8220;{0:d}&#8221;</span><span style="color:#000000;">)<span style="background:yellow;">%&gt;</span></span></span> <br />
<span style="font-size:x-small;"> </span></span></span></div>
<p><span style="font-size:x-small;color:#ff0000;"><span style="font-size:x-small;color:#ff0000;"></p>
<div><span style="font-size:x-small;"></span></div>
<p><span style="font-size:x-small;"></span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><strong><span style="color:#333399;">Calling to a function from within the aspx code</span></strong><span style="color:#000000;">, the function is located in the codebehinde (or at the same page in the server side script level), in this example the function return a Boolean value for an asp:checkbox control, in order to determine if to show a checked status.</span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;color:#000000;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;color:#000000;font-family:Times New Roman;">Checked=&#8217;<span style="background:yellow;">&lt;%</span># GetDeletedStatus(Eval(&#8220;recStatus&#8221;).ToString()) <span style="background:yellow;">%&gt;</span>&#8216;</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;color:#000000;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;color:#000000;font-family:Times New Roman;">In this example the image url and visablity are determine by the return value of the functions:</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;color:#000000;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;color:red;font-family:&quot;">src</span><span style="font-size:10pt;color:blue;font-family:&quot;">=&#8217;</span><span style="font-size:10pt;background:yellow;font-family:&quot;"><span style="color:#000000;">&lt;%</span></span><span style="font-size:10pt;font-family:&quot;"><span style="color:#000000;"># GetImageUrl(Eval(&#8220;ImageName&#8221;).ToString(), Eval(&#8220;OriginalFileName&#8221;).ToString()) <span style="background:yellow;">%&gt;</span></span><span style="color:blue;">&#8216;</span><span style="color:#000000;"> </span><span style="color:red;">visible</span><span style="color:blue;">=&#8217;</span><span style="color:#000000;"><span style="background:yellow;">&lt;%</span># SetImageVisibility(&#8220;Left&#8221;) <span style="background:yellow;">%&gt;</span></span><span style="color:blue;">&#8216;</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;color:#000000;font-family:Times New Roman;"><span id="_marker"> </span></span></p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"><strong><span style="color:#333399;"><span style="font-size:small;"></span></span></strong></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="color:#333399;"><span style="font-size:small;"><span style="font-family:Times New Roman;">The current index :</span></span></span></strong></p>
<p class="MsoNormal" style="margin:0 0 0 .5in;"><strong><span style="color:#333399;"><span style="font-size:small;font-family:Times New Roman;">repeater control:</span></span></strong><strong><span style="color:#333399;"><br />
</span></strong><span style="font-size:10pt;font-family:Arial;"> </span><span style="font-size:small;"><span style="font-family:Times New Roman;"><span style="font-size:x-small;"><span style="color:#000000;">&lt;%# Container.ItemIndex.ToString(&#8220;00&#8243;)%&gt;<br />
<span style="color:red;"> </span><span style="font-size:x-small;color:#ff0000;"><span style="font-size:x-small;color:#ff0000;">id</span></span></span></span><span style="color:blue;"><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">=&#8217;in_sysId_</span></span></span><span style="font-size:x-small;"><span style="color:#000000;">&lt;%# Container.ItemIndex.ToString(&#8220;00&#8243;)%&gt;</span></span><span style="color:blue;"><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">&#8216;</span></span></span></span></span></p>
<p class="MsoNormal" style="margin:0 0 0 .5in;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><strong><span style="color:#333399;">grid control :</span></strong><span style="font-family:Arial;"></span></span></span></p>
<p class="MsoNormal" style="text-indent:.5in;margin:0;"><span style="color:#000000;"><span style="font-size:10pt;background:yellow;font-family:Arial;">&lt;%</span><span style="font-size:10pt;font-family:Arial;"># (Container.DataItemIndex + 2).ToString().PadLeft(2, &#8217;0&#8242;) <span style="background:yellow;">%&gt;</span></span></span></p>
<p class="MsoNormal" style="margin:0;"> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alfonso77.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alfonso77.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alfonso77.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alfonso77.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alfonso77.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alfonso77.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alfonso77.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alfonso77.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alfonso77.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alfonso77.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alfonso77.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alfonso77.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alfonso77.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alfonso77.wordpress.com/210/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=210&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alfonso77.wordpress.com/2010/04/13/asp-net-parameter-to-javascript-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fc90c30b6534a804b80d061fdea21ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alfonso77</media:title>
		</media:content>
	</item>
		<item>
		<title>ACCESS remove charchters with regexp</title>
		<link>http://alfonso77.wordpress.com/2010/04/07/access-remove-charchters-with-regexp/</link>
		<comments>http://alfonso77.wordpress.com/2010/04/07/access-remove-charchters-with-regexp/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 15:09:08 +0000</pubDate>
		<dc:creator>alfonso77</dc:creator>
				<category><![CDATA[VB 6.0]]></category>

		<guid isPermaLink="false">http://alfonso77.wordpress.com/?p=208</guid>
		<description><![CDATA[the select statment - implementation SELECT ShiptoPlant, CleanString([ShiptoPlant]) AS Clean  FROM Table    the golobal public function inside a module  Function CleanString(strText)  Dim objRegEx As Object    Set objRegEx = CreateObject("VBScript.RegExp")  objRegEx.IgnoreCase = True  objRegEx.Global = True    objRegEx.Pattern = "[^a-z0-9]"  CleanString = objRegEx.Replace(strText, "")    End Function <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=208&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><code>the select statment - implementation</code></p>
<p><code>SELECT ShiptoPlant, CleanString([ShiptoPlant]) AS Clean <br />
FROM Table <br />
 <br />
the golobal public function inside a module </code></p>
<p><code>Function CleanString(strText) <br />
Dim objRegEx As Object <br />
 <br />
Set objRegEx = CreateObject("VBScript.RegExp") <br />
objRegEx.IgnoreCase = True <br />
objRegEx.Global = True <br />
 <br />
objRegEx.Pattern = "[^a-z0-9]" <br />
CleanString = objRegEx.Replace(strText, "") <br />
 <br />
End Function </code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alfonso77.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alfonso77.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alfonso77.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alfonso77.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alfonso77.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alfonso77.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alfonso77.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alfonso77.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alfonso77.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alfonso77.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alfonso77.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alfonso77.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alfonso77.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alfonso77.wordpress.com/208/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=208&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alfonso77.wordpress.com/2010/04/07/access-remove-charchters-with-regexp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fc90c30b6534a804b80d061fdea21ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alfonso77</media:title>
		</media:content>
	</item>
		<item>
		<title>Late binding A form to a view vb 6.0</title>
		<link>http://alfonso77.wordpress.com/2010/01/05/late-binding-a-form-to-a-view/</link>
		<comments>http://alfonso77.wordpress.com/2010/01/05/late-binding-a-form-to-a-view/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 15:46:11 +0000</pubDate>
		<dc:creator>alfonso77</dc:creator>
				<category><![CDATA[VB 6.0]]></category>

		<guid isPermaLink="false">http://alfonso77.wordpress.com/?p=191</guid>
		<description><![CDATA[One of the problem when binding a form to a view is that you can’t make any changes to the form. You can overcome this issue by following these steps :             1 ) bind the form to a table.             2) Any additional view information you need to present can be bind to the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=191&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the problem when binding a form to a view is that you can’t make any changes to the form. You can overcome this issue by following these steps :</p>
<p>            1 ) bind the form to a table.</p>
<p>            2) Any additional view information you need to present can be bind to the controls with the use of a module public function that retrieves the data needed.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alfonso77.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alfonso77.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alfonso77.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alfonso77.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alfonso77.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alfonso77.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alfonso77.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alfonso77.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alfonso77.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alfonso77.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alfonso77.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alfonso77.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alfonso77.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alfonso77.wordpress.com/191/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=191&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alfonso77.wordpress.com/2010/01/05/late-binding-a-form-to-a-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fc90c30b6534a804b80d061fdea21ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alfonso77</media:title>
		</media:content>
	</item>
		<item>
		<title>configurationManager does not exists</title>
		<link>http://alfonso77.wordpress.com/2010/01/01/configurationmanager-does-not-exists/</link>
		<comments>http://alfonso77.wordpress.com/2010/01/01/configurationmanager-does-not-exists/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 08:00:14 +0000</pubDate>
		<dc:creator>alfonso77</dc:creator>
				<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://alfonso77.wordpress.com/?p=227</guid>
		<description><![CDATA[You need to add a references  Go to references  on the right hand side of the screen right click on the reference folder and select add reference…. Selet the .net  tab , Scroll down and  select the system.configuration Add the using syste.configuration.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=227&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You need to add a references </p>
<p>Go to references  on the right hand side of the screen right click on the reference folder and select add reference….</p>
<p>Selet the .net  tab ,</p>
<p>Scroll down and  select the system.configuration</p>
<p>Add the using syste.configuration.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alfonso77.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alfonso77.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alfonso77.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alfonso77.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alfonso77.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alfonso77.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alfonso77.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alfonso77.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alfonso77.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alfonso77.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alfonso77.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alfonso77.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alfonso77.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alfonso77.wordpress.com/227/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=227&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alfonso77.wordpress.com/2010/01/01/configurationmanager-does-not-exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fc90c30b6534a804b80d061fdea21ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alfonso77</media:title>
		</media:content>
	</item>
		<item>
		<title>Java script questions</title>
		<link>http://alfonso77.wordpress.com/2009/12/18/java-script-questions/</link>
		<comments>http://alfonso77.wordpress.com/2009/12/18/java-script-questions/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 21:07:40 +0000</pubDate>
		<dc:creator>alfonso77</dc:creator>
				<category><![CDATA[java script]]></category>

		<guid isPermaLink="false">http://alfonso77.wordpress.com/?p=176</guid>
		<description><![CDATA[Questions in JavaScript                                                                         level : 2 1. How do you submit a page in java script through code :                         Document.form.FormName.submit();                         Document.forms[“formName”].submit();                         Document.forms[0].submit();                         Document.getElementById[“formName”].submit(); 2.   What will be the advantage of using document.forms[0].submit over the other options?                         using the form collection with an index will give you more dynamic approach [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=176&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Questions in JavaScript                                                                        </p>
<p>level : 2</p>
<p><strong>1. How do you submit a page in java script through code :</strong></p>
<p>                        Document.form.FormName.submit();</p>
<p>                        Document.forms[“formName”].submit();</p>
<p>                        Document.forms[0].submit();</p>
<p>                        Document.getElementById[“formName”].submit();</p>
<p><strong>2.   What will be the advantage of using document.forms[0].submit over the other options?<br />
</strong>                        using the form collection with an index will give you more dynamic approach in this case the form name can be changed and it will not require the change of the submit code. Disadvantage: in a multi form page, it is  harder to trace which form is being submit since there is no explicit indication of the form name.</p>
<p><strong>3. You have a document.form.formName.submit() code that doesn’t work, what will be</strong> <strong>your approach of debugging the problem?</strong></p>
<ol>
<li>I would make sure that the form name is correct (syntax).</li>
<li>Check for duplication in elements with the same name.</li>
<li>Check there is no element name submits in my form.</li>
</ol>
<p> </p>
<p><strong>4. when you get the error message “object doesn’t support this property or method” what will be your first steps in debugging the problem ?</strong><br />
                        make sure I am targeting the right object</p>
<p>I will use alert with tagName and typeOf  and object name do verify that I am targeting the right object.</p>
<p><strong>5. How would you reefer to container document from inside his child frame. ?<br />
                                    </strong>I will use the top keyword.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alfonso77.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alfonso77.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alfonso77.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alfonso77.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alfonso77.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alfonso77.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alfonso77.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alfonso77.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alfonso77.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alfonso77.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alfonso77.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alfonso77.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alfonso77.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alfonso77.wordpress.com/176/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=176&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alfonso77.wordpress.com/2009/12/18/java-script-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fc90c30b6534a804b80d061fdea21ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alfonso77</media:title>
		</media:content>
	</item>
		<item>
		<title>access ado dao adox data types</title>
		<link>http://alfonso77.wordpress.com/2009/12/15/access-ado-dao-adox-data-types/</link>
		<comments>http://alfonso77.wordpress.com/2009/12/15/access-ado-dao-adox-data-types/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 15:59:45 +0000</pubDate>
		<dc:creator>alfonso77</dc:creator>
				<category><![CDATA[ADO]]></category>
		<category><![CDATA[VB 6.0]]></category>

		<guid isPermaLink="false">http://alfonso77.wordpress.com/?p=172</guid>
		<description><![CDATA[REF Microsoft Access Tips for Serious Users Provided by Allen Browne, August 2004. Updated February 2008. Field type reference &#8211; names and values for DDL, DAO, and ADOX You can create and manage tables in Access using: the interface (table design view); Data Definition Language (DDL) query statements; DAO code; ADOX code. Each approach uses [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=172&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://allenbrowne.com/ser-49.html">REF</a></p>
<h3><a name="Top">Microsoft Access Tips for Serious Users</a></h3>
<p>Provided by <a href="mailto:allen@allenbrowne.com">Allen Browne</a>, August 2004. Updated February 2008.</p>
<hr />
<h1>Field type reference &#8211; names and values for DDL, DAO, and ADOX</h1>
<p>You can create and manage tables in Access using:</p>
<ul>
<li>the interface (table design view);</li>
<li>Data Definition Language (DDL) query statements;</li>
<li>DAO code;</li>
<li>ADOX code.</li>
</ul>
<p>Each approach uses different names for the same field types. This reference provides a comparison.</p>
<p>For code to convert the DAO number into a field type name, see <a href="http://allenbrowne.com/func-06.html">FieldTypeName()</a>.</p>
<table id="table1" style="border-collapse:collapse;" border="1" cellspacing="0" cellpadding="4">
<tbody>
<tr class="TableHeadRow" style="page-break-inside:avoid;">
<td width="130" align="center"><strong><em>JET (Interface)</em></strong></td>
<td width="210" align="center"><strong><em>DDL (Queries)</em> <a name="_ftnref1" href="http://allenbrowne.com/ser-49.html#_ftn1"><span class="MsoFootnoteReference" style="color:#ffffff;"><span style="font-size:x-small;">[1]</span></span></a></strong></td>
<td colspan="3" align="center"><strong><em>DAO constant / decimal / hex <a name="_ftnref2" href="http://allenbrowne.com/ser-49.html#_ftn2"><span class="MsoFootnoteReference" style="color:#ffffff;"><span style="font-size:x-small;">[2]</span></span></a></em></strong></td>
<td colspan="3" align="center"><strong><em>ADOX constant / decimal / hex</em></strong></td>
</tr>
<tr>
<td rowspan="2"><strong>Text</strong> <span class="MsoFootnoteReference"><a name="_ftnref3" href="http://allenbrowne.com/ser-49.html#_ftn3"><span style="font-size:x-small;">[3]</span></a></span></td>
<td>TEXT (size) <a name="_ftnref4" href="http://allenbrowne.com/ser-49.html#_ftn4"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[4]</span></span></a></td>
<td width="170">dbText</td>
<td width="25" align="center"><em>10</em></td>
<td width="25" align="center">A</td>
<td>adVarWChar</td>
<td width="25" align="center"><em>202</em></td>
<td width="25" align="center">CA</td>
</tr>
<tr>
<td> </td>
<td>dbComplexText</td>
<td align="center"><em>109</em></td>
<td align="center">6D</td>
<td> </td>
<td align="center"> </td>
<td align="center"> </td>
</tr>
<tr class="AltRow">
<td align="right"><a name="_ftnref5" href="http://allenbrowne.com/ser-49.html#_ftn5"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[5]</span></span></a></td>
<td>CHAR (size)</td>
<td>dbText <a name="_ftnref6" href="http://allenbrowne.com/ser-49.html#_ftn6"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[6]</span></span></a></td>
<td align="center"><em>10</em></td>
<td align="center">A</td>
<td>adWChar</td>
<td align="center"><em>130</em></td>
<td align="center">82</td>
</tr>
<tr>
<td><strong>Memo</strong></td>
<td>MEMO</td>
<td>dbMemo</td>
<td align="center"><em>12</em></td>
<td align="center">C</td>
<td>adLongVarWChar</td>
<td align="center"><em>203</em></td>
<td align="center">CB</td>
</tr>
<tr class="AltRow">
<td rowspan="2">Number: <strong>Byte</strong></td>
<td>BYTE</td>
<td>dbByte</td>
<td align="center"><em>2</em></td>
<td align="center">2</td>
<td>adUnsignedTinyInt</td>
<td align="center"><em>17</em></td>
<td align="center">11</td>
</tr>
<tr class="AltRow">
<td> </td>
<td>dbComplexByte</td>
<td align="center"><em>102</em></td>
<td align="center">66</td>
<td> </td>
<td align="center"> </td>
<td align="center"> </td>
</tr>
<tr>
<td rowspan="2">Number: <strong>Integer</strong></td>
<td>SHORT</td>
<td>dbInteger</td>
<td align="center"><em>3</em></td>
<td align="center">3</td>
<td>adSmallInt</td>
<td align="center"><em>2</em></td>
<td align="center">2</td>
</tr>
<tr>
<td> </td>
<td>dbComplexInteger</td>
<td align="center"><em>103</em></td>
<td align="center">67</td>
<td> </td>
<td align="center"> </td>
<td align="center"> </td>
</tr>
<tr class="AltRow">
<td rowspan="2">Number: <strong>Long</strong></td>
<td>LONG</td>
<td>dbLong</td>
<td align="center"><em>4</em></td>
<td align="center">4</td>
<td>adInteger</td>
<td align="center"><em>3</em></td>
<td align="center">3</td>
</tr>
<tr class="AltRow">
<td> </td>
<td>dbComplexLong</td>
<td align="center"><em>104</em></td>
<td align="center">68</td>
<td> </td>
<td align="center"> </td>
<td align="center"> </td>
</tr>
<tr>
<td rowspan="2">Number: <strong>Single</strong></td>
<td>SINGLE</td>
<td>dbSingle</td>
<td align="center"><em>6</em></td>
<td align="center">6</td>
<td>adSingle</td>
<td align="center"><em>4</em></td>
<td align="center">4</td>
</tr>
<tr>
<td> </td>
<td>dbComplexSingle</td>
<td align="center"><em>105</em></td>
<td align="center">69</td>
<td> </td>
<td align="center"> </td>
<td align="center"> </td>
</tr>
<tr class="AltRow">
<td rowspan="2">Number: <strong>Double</strong></td>
<td>DOUBLE</td>
<td>dbDouble</td>
<td align="center"><em>7</em></td>
<td align="center">7</td>
<td>adDouble</td>
<td align="center"><em>5</em></td>
<td align="center">5</td>
</tr>
<tr class="AltRow">
<td> </td>
<td>dbComplexDouble</td>
<td align="center"><em>106</em></td>
<td align="center">6A</td>
<td> </td>
<td align="center"> </td>
<td align="center"> </td>
</tr>
<tr>
<td rowspan="2">Number: <strong>Replica</strong></td>
<td>GUID</td>
<td>dbGUID</td>
<td align="center"><em>15</em></td>
<td align="center">F</td>
<td>adGUID</td>
<td align="center"><em>72</em></td>
<td align="center">48</td>
</tr>
<tr>
<td> </td>
<td>dbComplexGUID</td>
<td align="center"><em>107</em></td>
<td align="center">6B</td>
<td> </td>
<td align="center"> </td>
<td align="center"> </td>
</tr>
<tr class="AltRow">
<td rowspan="2">Number: <strong>Decimal</strong></td>
<td>DECIMAL (precision, scale) <a name="_ftnref7" href="http://allenbrowne.com/ser-49.html#_ftn7"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[7]</span></span></a></td>
<td>dbDecimal</td>
<td align="center"><em>20</em></td>
<td align="center">14</td>
<td>adNumeric</td>
<td align="center"><em>131</em></td>
<td align="center">83</td>
</tr>
<tr class="AltRow">
<td> </td>
<td>dbComplexDecimal</td>
<td align="center"><em>108</em></td>
<td align="center">6C</td>
<td> </td>
<td align="center"> </td>
<td align="center"> </td>
</tr>
<tr>
<td><strong>Date/Time</strong></td>
<td>DATETIME</td>
<td>dbDate</td>
<td align="center"><em>8</em></td>
<td align="center">8</td>
<td>adDate</td>
<td align="center"><em>7</em></td>
<td align="center">7</td>
</tr>
<tr class="AltRow">
<td><strong>Currency</strong></td>
<td>CURRENCY</td>
<td>dbCurrency</td>
<td align="center"><em>5</em></td>
<td align="center">5</td>
<td>adCurrency</td>
<td align="center"><em>6</em></td>
<td align="center">6</td>
</tr>
<tr>
<td><strong>Auto Number</strong></td>
<td>COUNTER (seed, increment) <a name="_ftnref8" href="http://allenbrowne.com/ser-49.html#_ftn8"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[8]</span></span></a></td>
<td>dbLong <em>with attributes</em></td>
<td align="center"><em>4</em></td>
<td align="center">4</td>
<td>adInteger <em>with attributes</em></td>
<td align="center"><em>3</em></td>
<td align="center">3</td>
</tr>
<tr class="AltRow">
<td><strong>Yes/No</strong></td>
<td>YESNO</td>
<td>dbBoolean</td>
<td align="center"><em>1</em></td>
<td align="center">1</td>
<td>adBoolean</td>
<td align="center"><em>11</em></td>
<td align="center">B</td>
</tr>
<tr>
<td><strong>OLE Object</strong></td>
<td>LONGBINARY</td>
<td>dbLongBinary</td>
<td align="center"><em>11</em></td>
<td align="center">B</td>
<td>adLongVarBinary</td>
<td align="center"><em>205</em></td>
<td align="center">CD</td>
</tr>
<tr class="AltRow">
<td><strong>Hyperlink</strong></td>
<td align="right"><a name="_ftnref9" href="http://allenbrowne.com/ser-49.html#_ftn9"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[9]</span></span></a></td>
<td>dbMemo <em>with attributes</em></td>
<td align="center"><em>12</em></td>
<td align="center">C</td>
<td>adLongVarWChar <em>with attributes</em></td>
<td align="center"><em>203</em></td>
<td align="center">CB</td>
</tr>
<tr>
<td><strong>Attachment</strong></td>
<td> </td>
<td>dbAttachment</td>
<td><em>101</em></td>
<td align="center">65</td>
<td> </td>
<td align="center"> </td>
<td align="center"> </td>
</tr>
<tr class="AltRow">
<td align="right"><a name="_ftnref10" href="http://allenbrowne.com/ser-49.html#_ftn10"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[10]</span></span></a></td>
<td>BINARY (size)</td>
<td>dbBinary</td>
<td align="center"><em>9</em></td>
<td align="center">9</td>
<td>adVarBinary</td>
<td align="center"><em>204</em></td>
<td align="center">CC</td>
</tr>
</tbody>
</table>
<h5 style="margin-top:40px;">Footnotes:</h5>
<div id="ftn1">
<p class="MsoFootnoteText"><a name="_ftn1" href="http://allenbrowne.com/ser-49.html#_ftnref1"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[1]</span></span></a> There are numerous synonyms for these names, such as DATE for DATETIME, SHORT for INTEGER, FLOAT for DOUBLE, LONGTEXT for MEMO, MONEY for CURRENCY. Some synonyms work in limited contexts, e.g. ADO only.</p>
</div>
<div id="ftn2">
<p class="MsoFootnoteText"><a name="_ftn2" href="http://allenbrowne.com/ser-49.html#_ftnref2"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[2]</span></span></a> In attached tables, JET can recognise fields of type dbChar, dbFloat, dbNumeric, dbTime, dbTimeStamp, and dbVarBinary, but you cannot create fields of this type in an Access database.</p>
</div>
<div id="ftn3">
<p class="MsoFootnoteText"><a name="_ftn3" href="http://allenbrowne.com/ser-49.html#_ftnref3"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[3]</span></span></a> The complex data types require Access 2007 or later, and cannot be created with DDL or ADOX. In the interface, click the <em>Lookup</em> tab in the lower pane of table design, set <em>Display Control</em> to Combo Box, and <em>Allow Multiple Values</em> to Yes. (Alternatively, use the Lookup Wizard.)</p>
</div>
<div id="ftn4">
<p class="MsoFootnoteText"><a name="_ftn4" href="http://allenbrowne.com/ser-49.html#_ftnref4"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[4]</span></span></a> Include the brackets if you specify a size (number of characters). If you do not specify a size, the field type depends how you execute the DDL query: under DAO you get a Text field (dbText/adVarWChar), but under ADO/ADOX you get a Memo field (dbMemo/adLongVarWChar).</p>
</div>
<div id="ftn5">
<p class="MsoFootnoteText"><a name="_ftn5" href="http://allenbrowne.com/ser-49.html#_ftnref5"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[5]</span></span></a> You cannot create a fixed-width Text field through the interface.</p>
</div>
<div id="ftn6">
<p class="MsoFootnoteText"><a name="_ftn6" href="http://allenbrowne.com/ser-49.html#_ftnref6"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[6]</span></span></a> To create a fixed width field with DAO, set the field’s Attributes to: <span style="font-family:'Courier New';">Attributes Or dbFixedField</span>.</p>
</div>
<div id="ftn7">
<p class="MsoFootnoteText"><a name="_ftn7" href="http://allenbrowne.com/ser-49.html#_ftnref7"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[7]</span></span></a> Not available in the Access query interface or DAO. Use ADO to Execute the DDL query statement.</p>
</div>
<div id="ftn8">
<p class="MsoFootnoteText"><a name="_ftn8" href="http://allenbrowne.com/ser-49.html#_ftnref8"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[8]</span></span></a> The initial seed value and increment value are optional, and can be used only with ADO.</p>
</div>
<div id="ftn9">
<p class="MsoFootnoteText"><a name="_ftn9" href="http://allenbrowne.com/ser-49.html#_ftnref9"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[9]</span></span></a> The Hyperlink type field cannot be created with DDL.</p>
</div>
<div id="ftn10">
<p class="MsoFootnoteText"><a name="_ftn10" href="http://allenbrowne.com/ser-49.html#_ftnref10"><span class="MsoFootnoteReference"><span style="font-size:x-small;">[10]</span></span></a> The fixed-width binary type field cannot be created with the user-interface.</p>
</div>
<p> </p>
<hr />
<table width="100%">
<tbody>
<tr>
<td width="33%" align="center"><a href="http://allenbrowne.com/index.html">Home</a></td>
<td width="34%" align="center"><a href="http://allenbrowne.com/tips.html">Index of tips</a></td>
<td width="33%" align="center"><a href="http://allenbrowne.com/ser-49.html#Top">Top</a></td>
</tr>
</tbody>
</table>
<p> </p>
<p>links :</p>
<p><a href="http://www.visualbasic.happycodings.com/Other/code7.html">http://www.visualbasic.happycodings.com/Other/code7.html</a><br />
<a href="http://allenbrowne.com/func-ADOX.html">http://allenbrowne.com/func-ADOX.html</a><br />
<a href="http://msdn.microsoft.com/en-us/library/aa164914(office.10).aspx">http://msdn.microsoft.com/en-us/library/aa164914(office.10).aspx</a><br />
<a href="http://www.utteraccess.com/forums/printthread.php?Cat=&amp;Board=84&amp;main=1716616&amp;type=thread">http://www.utteraccess.com/forums/printthread.php?Cat=&amp;Board=84&amp;main=1716616&amp;type=thread</a><br />
<a href="http://bytes.com/topic/access/answers/586144-dynamic-table-linking">http://bytes.com/topic/access/answers/586144-dynamic-table-linking</a><br />
<a href="http://www.utteraccess.com/forums/showflat.php?Cat=&amp;Number=648581&amp;Main=647588">http://www.utteraccess.com/forums/showflat.php?Cat=&amp;Number=648581&amp;Main=647588</a><br />
<a href="http://allenbrowne.com/func-ADOX.html">http://allenbrowne.com/func-ADOX.html</a><br />
<a href="http://www.visualbasic.happycodings.com/Other/code7.html">http://www.visualbasic.happycodings.com/Other/code7.html</a><br />
<a href="http://support.microsoft.com/kb/326548">http://support.microsoft.com/kb/326548</a><br />
<a href="http://support.microsoft.com/kb/209805">http://support.microsoft.com/kb/209805</a><br />
<a href="http://www.oblique.ch/ms/ADOX_Faq.html">http://www.oblique.ch/ms/ADOX_Faq.html</a><br />
<a href="http://www.connectionstrings.com/textfile">http://www.connectionstrings.com/textfile</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alfonso77.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alfonso77.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alfonso77.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alfonso77.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alfonso77.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alfonso77.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alfonso77.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alfonso77.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alfonso77.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alfonso77.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alfonso77.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alfonso77.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alfonso77.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alfonso77.wordpress.com/172/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=172&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alfonso77.wordpress.com/2009/12/15/access-ado-dao-adox-data-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fc90c30b6534a804b80d061fdea21ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alfonso77</media:title>
		</media:content>
	</item>
		<item>
		<title>vb 6.0 one line tools</title>
		<link>http://alfonso77.wordpress.com/2009/12/03/vb-6-0-one-line-tools/</link>
		<comments>http://alfonso77.wordpress.com/2009/12/03/vb-6-0-one-line-tools/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 15:57:29 +0000</pubDate>
		<dc:creator>alfonso77</dc:creator>
				<category><![CDATA[VB 6.0]]></category>

		<guid isPermaLink="false">http://alfonso77.wordpress.com/?p=147</guid>
		<description><![CDATA[random bollean CBool(Round(Rnd(1 * Rnd)))<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=147&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>random bollean<br />
</strong>CBool(Round(Rnd(1 * Rnd)))</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alfonso77.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alfonso77.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alfonso77.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alfonso77.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alfonso77.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alfonso77.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alfonso77.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alfonso77.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alfonso77.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alfonso77.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alfonso77.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alfonso77.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alfonso77.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alfonso77.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alfonso77.wordpress.com&amp;blog=10035180&amp;post=147&amp;subd=alfonso77&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alfonso77.wordpress.com/2009/12/03/vb-6-0-one-line-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fc90c30b6534a804b80d061fdea21ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alfonso77</media:title>
		</media:content>
	</item>
	</channel>
</rss>
