<?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/"
	>

<channel>
	<title>Software - PHP WEB CSS HTML C# AJAX QCODO SEO JAVA SCRIPT</title>
	<atom:link href="http://blog.avalonbg.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.avalonbg.com</link>
	<description>Software development and tutorials - how to develop software. SEO tactics.</description>
	<lastBuildDate>Wed, 27 Jan 2010 15:07:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>report view current row number</title>
		<link>http://blog.avalonbg.com/2009/12/report-view-current-row-number/</link>
		<comments>http://blog.avalonbg.com/2009/12/report-view-current-row-number/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 14:57:21 +0000</pubDate>
		<dc:creator>wiley</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[report view]]></category>
		<category><![CDATA[row]]></category>

		<guid isPermaLink="false">http://blog.avalonbg.com/?p=273</guid>
		<description><![CDATA[How to display current row number in report view table.
An expression containing the RowNumber function, when used in a text box within a data region, displays the row number for each instance of the text box in which the expression appears. This function can be useful to number rows in a table.
 
=RowNumber(Nothing)
 Unique visitors [...]]]></description>
			<content:encoded><![CDATA[<p>How to display current row number in report view table.</p>
<p>An expression containing the <strong>RowNumber</strong> function, when used in a text box within a data region, displays the row number for each instance of the text box in which the expression appears. This function can be useful to number rows in a table.</p>
<p><span id="ctl00_MTCS_main_ctl12"> </span></p>
<h3 id="ctl00_MTCS_main_ctl12_code" style="white-space: pre-wrap;"><span style="color: #008000;"><em><strong>=RowNumber(Nothing)</strong></em></span></h3>
<br/><a href='http://wordpress.org/extend/plugins/mystat/'><img src='http://blog.avalonbg.com/wp-content/plugins/mystat/images/admin.png' style='vertical-align:middle;' title='myStat statistic for WordPress' border='0' /></a> Unique visitors to post: <b>28</b><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.avalonbg.com/2009/12/report-view-current-row-number/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySql count width if statement grouped</title>
		<link>http://blog.avalonbg.com/2009/11/mysql-count-width-if-statement-grouped/</link>
		<comments>http://blog.avalonbg.com/2009/11/mysql-count-width-if-statement-grouped/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 09:48:30 +0000</pubDate>
		<dc:creator>wiley</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[group]]></category>
		<category><![CDATA[if]]></category>

		<guid isPermaLink="false">http://blog.avalonbg.com/?p=267</guid>
		<description><![CDATA[Table name &#8211; firms



Firm
Sex


firm1
man


firm2
man


firm2
woman




SELECT Firm, SUM(IF(sex='man',1,0)) AS Man, SUM(IF(sex='woman',1,0)) AS Woman FROM firms GROUP BY Firm;




Firm
Man
Woman


firm1
1
0


firm2
1
1



 Unique visitors to post: 9]]></description>
			<content:encoded><![CDATA[<p>Table name &#8211; firms</p>
<table border="1" cellspacing="0" width="680" bordercolor="#000000">
<tbody>
<tr valign="top">
<th width="287">Firm</th>
<th width="96">Sex</th>
</tr>
<tr valign="top">
<td width="287"><em>firm1</em></td>
<td width="96">man</td>
</tr>
<tr valign="top">
<td width="287"><em>firm2</em></td>
<td width="96">man</td>
</tr>
<tr valign="top">
<td width="287"><em>firm2</em></td>
<td width="96">woman</td>
</tr>
</tbody>
</table>
<pre class="brush: sql;">
SELECT Firm, SUM(IF(sex='man',1,0)) AS Man, SUM(IF(sex='woman',1,0)) AS Woman FROM firms GROUP BY Firm;
</pre>
<table border="1" cellspacing="0" width="680" bordercolor="#000000">
<tbody>
<tr valign="top">
<th width="287">Firm</th>
<th width="96">Man</th>
<th width="116">Woman</th>
</tr>
<tr valign="top">
<td width="287"><em>firm1</em></td>
<td width="96">1</td>
<td width="116">0</td>
</tr>
<tr valign="top">
<td width="287"><em>firm2</em></td>
<td width="96">1</td>
<td width="116"><em>1</em></td>
</tr>
</tbody>
</table>
<br/><a href='http://wordpress.org/extend/plugins/mystat/'><img src='http://blog.avalonbg.com/wp-content/plugins/mystat/images/admin.png' style='vertical-align:middle;' title='myStat statistic for WordPress' border='0' /></a> Unique visitors to post: <b>9</b><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.avalonbg.com/2009/11/mysql-count-width-if-statement-grouped/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Transparency Settings for All Browsers</title>
		<link>http://blog.avalonbg.com/2009/11/css-transparency-settings-for-all-browsers/</link>
		<comments>http://blog.avalonbg.com/2009/11/css-transparency-settings-for-all-browsers/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 10:57:08 +0000</pubDate>
		<dc:creator>wiley</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Transparency]]></category>

		<guid isPermaLink="false">http://blog.avalonbg.com/?p=265</guid>
		<description><![CDATA[The transparency set to 50% for all browsers.

.transparent_text {
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}


opacity: 0.5; This will work in most versions of Firefox, Safari, and Opera.
filter:alpha(opacity=50); This will work in IE.
-moz-opacity:0.5; This will work in Netscape Navigator.
-khtml-opacity: 0.5; This will work in Safari (1.x)

 Unique visitors to post: 0]]></description>
			<content:encoded><![CDATA[<p>The transparency set to 50% for all browsers.</p>
<pre class="brush: css;">
.transparent_text {
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}
</pre>
<ul>
<li><strong>opacity: 0.5;</strong> This will work in most versions of Firefox, Safari, and Opera.</li>
<li><strong>filter:alpha(opacity=50);</strong> This will work in IE.</li>
<li><strong>-moz-opacity:0.5;</strong> This will work in Netscape Navigator.</li>
<li><strong>-khtml-opacity: 0.5;</strong> This will work in Safari (1.x)</li>
</ul>
<br/><a href='http://wordpress.org/extend/plugins/mystat/'><img src='http://blog.avalonbg.com/wp-content/plugins/mystat/images/admin.png' style='vertical-align:middle;' title='myStat statistic for WordPress' border='0' /></a> Unique visitors to post: <b>0</b><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.avalonbg.com/2009/11/css-transparency-settings-for-all-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySql integer numeric types</title>
		<link>http://blog.avalonbg.com/2009/11/mysql-integer-numeric-types/</link>
		<comments>http://blog.avalonbg.com/2009/11/mysql-integer-numeric-types/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 06:28:23 +0000</pubDate>
		<dc:creator>wiley</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[integer]]></category>

		<guid isPermaLink="false">http://blog.avalonbg.com/?p=262</guid>
		<description><![CDATA[The following table shows the required storage and range for each of the integer types.



Type
Bytes
Minimum Value
Maximum Value




(Signed/Unsigned)
(Signed/Unsigned)


TINYINT
1
-128
127




0
255


SMALLINT
2
-32768
32767




0
65535


MEDIUMINT
3
-8388608
8388607




0
16777215


INT
4
-2147483648
2147483647




0
4294967295


BIGINT
8
-9223372036854775808
9223372036854775807




0
18446744073709551615



 Unique visitors to post: 0]]></description>
			<content:encoded><![CDATA[<p>The following table shows the required storage and range for each of the integer types.</p>
<table border="1">
<tbody>
<tr>
<td><span><strong>Type</strong></span></td>
<td><span><strong>Bytes</strong></span></td>
<td><span><strong>Minimum Value</strong></span></td>
<td><span><strong>Maximum Value</strong></span></td>
</tr>
<tr>
<td></td>
<td></td>
<td><span><strong>(Signed/Unsigned)</strong></span></td>
<td><span><strong>(Signed/Unsigned)</strong></span></td>
</tr>
<tr>
<td><code>TINYINT</code></td>
<td>1</td>
<td><code>-128</code></td>
<td><code>127</code></td>
</tr>
<tr>
<td></td>
<td></td>
<td><code>0</code></td>
<td><code>255</code></td>
</tr>
<tr>
<td><code>SMALLINT</code></td>
<td>2</td>
<td><code>-32768</code></td>
<td><code>32767</code></td>
</tr>
<tr>
<td></td>
<td></td>
<td><code>0</code></td>
<td><code>65535</code></td>
</tr>
<tr>
<td><code>MEDIUMINT</code></td>
<td>3</td>
<td><code>-8388608</code></td>
<td><code>8388607</code></td>
</tr>
<tr>
<td></td>
<td></td>
<td><code>0</code></td>
<td><code>16777215</code></td>
</tr>
<tr>
<td><code>INT</code></td>
<td>4</td>
<td><code>-2147483648</code></td>
<td><code>2147483647</code></td>
</tr>
<tr>
<td></td>
<td></td>
<td><code>0</code></td>
<td><code>4294967295</code></td>
</tr>
<tr>
<td><code>BIGINT</code></td>
<td>8</td>
<td><code>-9223372036854775808</code></td>
<td><code>9223372036854775807</code></td>
</tr>
<tr>
<td></td>
<td></td>
<td><code>0</code></td>
<td><code>18446744073709551615</code></td>
</tr>
</tbody>
</table>
<br/><a href='http://wordpress.org/extend/plugins/mystat/'><img src='http://blog.avalonbg.com/wp-content/plugins/mystat/images/admin.png' style='vertical-align:middle;' title='myStat statistic for WordPress' border='0' /></a> Unique visitors to post: <b>0</b><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.avalonbg.com/2009/11/mysql-integer-numeric-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set caret position on TextBox</title>
		<link>http://blog.avalonbg.com/2009/11/how-to-set-caret-position-on-textbox/</link>
		<comments>http://blog.avalonbg.com/2009/11/how-to-set-caret-position-on-textbox/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 13:08:24 +0000</pubDate>
		<dc:creator>wiley</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[caret]]></category>
		<category><![CDATA[textbox]]></category>

		<guid isPermaLink="false">http://blog.avalonbg.com/?p=242</guid>
		<description><![CDATA[
TextBox.SelectionStart = 5;

This set caret position on TextBox to 5 char.
 Unique visitors to post: 39]]></description>
			<content:encoded><![CDATA[<pre class="brush: cpp;">
TextBox.SelectionStart = 5;
</pre>
<p>This set caret position on TextBox to 5 char.</p>
<br/><a href='http://wordpress.org/extend/plugins/mystat/'><img src='http://blog.avalonbg.com/wp-content/plugins/mystat/images/admin.png' style='vertical-align:middle;' title='myStat statistic for WordPress' border='0' /></a> Unique visitors to post: <b>39</b><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.avalonbg.com/2009/11/how-to-set-caret-position-on-textbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find current active control in a Form</title>
		<link>http://blog.avalonbg.com/2009/10/how-to-find-current-active-control-in-a-form/</link>
		<comments>http://blog.avalonbg.com/2009/10/how-to-find-current-active-control-in-a-form/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 06:12:36 +0000</pubDate>
		<dc:creator>wiley</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[active]]></category>
		<category><![CDATA[control]]></category>

		<guid isPermaLink="false">http://blog.avalonbg.com/?p=239</guid>
		<description><![CDATA[If you are working within a form you can use this to find it:


if (this.ActiveControl.Equals(testControl)

{

//......

}

 Unique visitors to post: 6]]></description>
			<content:encoded><![CDATA[<p>If you are working within a f<strong></strong>orm you can use this to find it:</p>
<pre class="brush: cpp;">

if (this.ActiveControl.Equals(testControl)

{

//......

}
</pre>
<br/><a href='http://wordpress.org/extend/plugins/mystat/'><img src='http://blog.avalonbg.com/wp-content/plugins/mystat/images/admin.png' style='vertical-align:middle;' title='myStat statistic for WordPress' border='0' /></a> Unique visitors to post: <b>6</b><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.avalonbg.com/2009/10/how-to-find-current-active-control-in-a-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Like google searchbox VS dotNet Component MaxtradeCombo</title>
		<link>http://blog.avalonbg.com/2009/08/like-google-searchbox-vs-dotnet-component-maxtradecombo/</link>
		<comments>http://blog.avalonbg.com/2009/08/like-google-searchbox-vs-dotnet-component-maxtradecombo/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 12:51:53 +0000</pubDate>
		<dc:creator>wiley</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Dot net components]]></category>
		<category><![CDATA[component]]></category>
		<category><![CDATA[dot net]]></category>

		<guid isPermaLink="false">http://blog.avalonbg.com/?p=234</guid>
		<description><![CDATA[During my work on the VS.NET project It was necessity to use a component such action &#8220;Google search ComboBox&#8221;. All data bound in the component can be completed by the &#8220;DataSource source&#8221;.
The component appears in the following way:
&#8220;UserControl&#8221; component is composed of a &#8220;TextBox&#8221; and a &#8220;ListBox&#8221;, which combined look like &#8220;ComboBox&#8221; and working as [...]]]></description>
			<content:encoded><![CDATA[<p>During my work on the VS.NET project It was necessity to use a component such action &#8220;Google search ComboBox&#8221;. All data bound in the component can be completed by the &#8220;DataSource source&#8221;.</p>
<p>The component appears in the following way:</p>
<div id="attachment_235" class="wp-caption alignnone" style="width: 351px"><img class="size-full wp-image-235" title="maxcombo" src="http://blog.avalonbg.com/wp-content/uploads/2009/08/maxcombo.jpg" alt="MaxtradeCombo dotNet Component" width="341" height="222" /><p class="wp-caption-text">MaxtradeCombo dotNet Component</p></div>
<p>&#8220;UserControl&#8221; component is composed of a &#8220;TextBox&#8221; and a &#8220;ListBox&#8221;, which combined look like &#8220;ComboBox&#8221; and working as a &#8220;Google searchbox&#8221;.<br />
The added component Properties are &#8211; How to search the &#8220;DataSource&#8221;.</p>
<p>This Component is freeware, and you are free to use and change at your discretion.</p>
<p><table style="border: 1px solid #CCC;" cellpadding="3" width="100%">
  <tr>
    <td width="35">
      <img src="http://blog.avalonbg.com/wp-content/plugins/downloads-manager/img/icons/winzip.gif" alt="http://blog.avalonbg.com/wp-content/plugins/downloads-manager/img/icons/winzip.gif">
    </td>
    <td>
      <b>download:</b> <a href="http://blog.avalonbg.com/?file_id=3">MaxtradeCombo</a> <small>(122.60KB)</small><br />
      <b>added:</b> 05/08/2009 <br />
      <b>clicks:</b> 70 <br />
      <b>description:</b> MaxtradeCombo is a "google searcbox" like dotNet Component <br />
    </td>
  </tr>
</table></p>
<br/><a href='http://wordpress.org/extend/plugins/mystat/'><img src='http://blog.avalonbg.com/wp-content/plugins/mystat/images/admin.png' style='vertical-align:middle;' title='myStat statistic for WordPress' border='0' /></a> Unique visitors to post: <b>0</b><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.avalonbg.com/2009/08/like-google-searchbox-vs-dotnet-component-maxtradecombo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dot net panel component</title>
		<link>http://blog.avalonbg.com/2009/07/dot-net-panel-component/</link>
		<comments>http://blog.avalonbg.com/2009/07/dot-net-panel-component/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 10:24:07 +0000</pubDate>
		<dc:creator>wiley</dc:creator>
				<category><![CDATA[Dot net components]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[component]]></category>
		<category><![CDATA[dot net]]></category>

		<guid isPermaLink="false">http://blog.avalonbg.com/?p=226</guid>
		<description><![CDATA[Formed dot net panel component, with several additional options.
The component code is C#.
Additional options are:
1. Rounded corners of the panel.
2. Add frame and manipulation of it color
3. Transparency
Here is the example:
The name of component is: MaxtradePanel
You can download component from here:

  
    
      
   [...]]]></description>
			<content:encoded><![CDATA[<p>Formed dot net panel component, with several additional options.<br />
The component code is C#.<br />
Additional options are:<br />
1. Rounded corners of the panel.<br />
2. Add frame and manipulation of it color<br />
3. Transparency</p>
<p>Here is the example:</p>
<div id="attachment_232" class="wp-caption alignnone" style="width: 477px"><img class="size-full wp-image-232" title="maxtrade_panel" src="http://blog.avalonbg.com/wp-content/uploads/2009/07/maxtrade_panel.jpg" alt="Maxtrade panel" width="467" height="355" /><p class="wp-caption-text">Maxtrade panel</p></div>
<p>The name of component is: <strong>MaxtradePanel</strong><br />
You can download component from here:<br />
<table style="border: 1px solid #CCC;" cellpadding="3" width="100%">
  <tr>
    <td width="35">
      <img src="http://blog.avalonbg.com/wp-content/plugins/downloads-manager/img/icons/winzip.gif" alt="http://blog.avalonbg.com/wp-content/plugins/downloads-manager/img/icons/winzip.gif">
    </td>
    <td>
      <b>download:</b> <a href="http://blog.avalonbg.com/?file_id=2">MaxtradePanel v.1.0.0.0</a> <small>(71.87KB)</small><br />
      <b>added:</b> 14/07/2009 <br />
      <b>clicks:</b> 96 <br />
      <b>description:</b> MaxtradePanel v.1.0.0.0 <br />
    </td>
  </tr>
</table><br />
The component is freeware.</p>
<br/><a href='http://wordpress.org/extend/plugins/mystat/'><img src='http://blog.avalonbg.com/wp-content/plugins/mystat/images/admin.png' style='vertical-align:middle;' title='myStat statistic for WordPress' border='0' /></a> Unique visitors to post: <b>2</b><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.avalonbg.com/2009/07/dot-net-panel-component/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to get the exact number of characters in a string, if it has a different encoding</title>
		<link>http://blog.avalonbg.com/2009/06/get-the-exact-number-of-characters/</link>
		<comments>http://blog.avalonbg.com/2009/06/get-the-exact-number-of-characters/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 07:40:31 +0000</pubDate>
		<dc:creator>wiley</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[QCube]]></category>
		<category><![CDATA[i18n]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.avalonbg.com/?p=224</guid>
		<description><![CDATA[How to get the exact number of characters in a string, if it has a different encoding.
In my php &#8211; QCubed project i need to get a exact length of substring from a string. To get a title from a whole string. In the standard way may use php function substr.

&#60;?php echo substr(QApplication::Translate('_NEWS_TEXT1_'), 0, 45) [...]]]></description>
			<content:encoded><![CDATA[<p>How to get the exact number of characters in a string, if it has a different encoding.<br />
In my php &#8211; QCubed project i need to get a exact length of substring from a string. To get a title from a whole string. In the standard way may use php function <span style="color: #008000;"><strong>substr</strong></span>.</p>
<pre class="brush: php;">
&lt;?php echo substr(QApplication::Translate('_NEWS_TEXT1_'), 0, 45) . ' ...'; ?&gt;
</pre>
<p>Where <span style="color: #008000;"><strong>QApplication::Translate(&#8216;_NEWS_TEXT1_&#8217;)</strong></span> is whole string get from a i18n implementation on QCubed. The problem is that string is a UTF-8 encoding, and in different language encoding function substr return different length of substring. The problem is that in UTF-8 encoding different characters have different numbers of bytes.<br />
eg.</p>
<pre class="brush: php;">
echo strlen('здрасти');
</pre>
<p>This code return 14 instead of expected 7. In other way:</p>
<pre class="brush: php;">
echo strlen('zdrasti');
</pre>
<p>return exactly 7.<br />
Тhis is so because the first string <span style="color: #008000;"><strong>&#8216;здрасти&#8217;</strong></span> is in UTF-8 Bulgarian language, where each character is different bytes length, and the second string <span style="color: #008000;"><strong>&#8216;zdrasti&#8217;</strong></span> is with one byte for one character.</p>
<p>Тo enable the first code example to show 45 characters, it is necessary to use that rate to increase this number to receive the exact number of bytes to 45 displayed characters.</p>
<pre class="brush: php;">
$kUtfString = strlen(QApplication::Translate('_NEWS_TEXT1_')) / mb_strlen(QApplication::Translate('_NEWS_TEXT1_'), 'UTF-8');
</pre>
<p>The function <span style="color: #008000;"><strong>mb_strlen</strong></span> return the real number of chars in string.</p>
<p>Solving the above problem that happens when the first change function as follows:</p>
<pre class="brush: php;">
&lt;?php echo substr(QApplication::Translate('_NEWS_TEXT1_'), 0, 45*$kUtfString) . ' ...';?&gt;
</pre>
<br/><a href='http://wordpress.org/extend/plugins/mystat/'><img src='http://blog.avalonbg.com/wp-content/plugins/mystat/images/admin.png' style='vertical-align:middle;' title='myStat statistic for WordPress' border='0' /></a> Unique visitors to post: <b>2</b><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.avalonbg.com/2009/06/get-the-exact-number-of-characters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change class onMouseover</title>
		<link>http://blog.avalonbg.com/2009/06/change-class-onmouseover/</link>
		<comments>http://blog.avalonbg.com/2009/06/change-class-onmouseover/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 14:31:32 +0000</pubDate>
		<dc:creator>wiley</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://blog.avalonbg.com/?p=219</guid>
		<description><![CDATA[How to change CSS class onMouseOver event handler:
Create two clases for normal button and for hover button.
One for normal button example:

.button{
  -moz-border-radius: 3px 3px 3px 3px;
  border: 3px double #a9a9a9;
  cursor: pointer;
}

One for hover button:

.button:hover{
  background: #f5f5dc;
}

Second class change background color on button.
 Unique visitors to post: 6]]></description>
			<content:encoded><![CDATA[<p>How to change CSS class onMouseOver event handler:<br />
Create two clases for normal button and for hover button.</p>
<p>One for normal button example:</p>
<pre class="brush: css;">
.button{
  -moz-border-radius: 3px 3px 3px 3px;
  border: 3px double #a9a9a9;
  cursor: pointer;
}
</pre>
<p>One for hover button:</p>
<pre class="brush: css;">
.button:hover{
  background: #f5f5dc;
}
</pre>
<p>Second class change background color on button.</p>
<br/><a href='http://wordpress.org/extend/plugins/mystat/'><img src='http://blog.avalonbg.com/wp-content/plugins/mystat/images/admin.png' style='vertical-align:middle;' title='myStat statistic for WordPress' border='0' /></a> Unique visitors to post: <b>6</b><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.avalonbg.com/2009/06/change-class-onmouseover/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	<img style='margin:0;padding:0;border:0;' width='1px' height='1px' src="http://blog.avalonbg.com/wp-content/plugins/mystat/mystat.php?act=time_load&id=17139&rnd=2008861630" /></channel>
</rss>
