<?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>San Jose Web Design &#124; San Francisco Website Design &#124; Development Company &#187; Mark.C</title>
	<atom:link href="http://www.xillent.com/author/mark-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xillent.com</link>
	<description>Xillent Studios</description>
	<lastBuildDate>Mon, 16 Feb 2026 06:54:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to declare variables in the .NET framework using C#</title>
		<link>http://www.xillent.com/blog/codesharing/how-to-declare-variables-in-the-net-framework-using-c/</link>
		<comments>http://www.xillent.com/blog/codesharing/how-to-declare-variables-in-the-net-framework-using-c/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 01:43:22 +0000</pubDate>
		<dc:creator>Mark.C</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Code Sharing]]></category>

		<guid isPermaLink="false">http://blog.xillent.com/?p=24</guid>
		<description><![CDATA[<p>DEFINITIONS: A variable is a specific location used to store data. In order to declare a variable you have to state a data type. Some common data types are: HOW TO: Examples of declaring ints: Examples of declaring doubles: Examples &#8230; <a href="http://www.xillent.com/blog/codesharing/how-to-declare-variables-in-the-net-framework-using-c/" class="readMore">Read More</a></p><p>The post <a href="http://www.xillent.com/blog/codesharing/how-to-declare-variables-in-the-net-framework-using-c/">How to declare variables in the .NET framework using C#</a> appeared first on <a href="http://www.xillent.com">San Jose Web Design | San Francisco Website Design | Development Company</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>DEFINITIONS:<br />
A variable is a specific location used to store data.  In order to declare a variable you have to state a data type.  Some common data types are:</p>
<p>int  // used for integers<br />
double // used for real numbers<br />
bool  // used for true or false statements<br />
string  // used for a sequence of text characters</p>
<p>HOW TO:<br />
Examples of declaring ints:</p>
<p>int x, xillent, Xillent, XillentCorp;  // declares an int<br />
int x = 0;  // initializes x to an integer, in this case 0</p>
<p>Examples of declaring doubles:</p>
<p>double x, X, Xillent, XillentCorp; // declares a double<br />
double x = 4.5; // initializes x to a real number, in this case 4.5</p>
<p>Examples of using bool:</p>
<p>bool x, xillent, Xillent, XillentCorp;  // declares a bool<br />
bool x = true;  // initializes x to true</p>
<p>Examples of using string:</p>
<p>string x, xillent, Xillent, XillentCorp;  // declares a string<br />
string x = &#8220;Xillent is a website design company.&#8221;;  // initializes x to a string, in this case &#8220;Xillent is a website design company.&#8221;</p>
<p>The post <a href="http://www.xillent.com/blog/codesharing/how-to-declare-variables-in-the-net-framework-using-c/">How to declare variables in the .NET framework using C#</a> appeared first on <a href="http://www.xillent.com">San Jose Web Design | San Francisco Website Design | Development Company</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.xillent.com/blog/codesharing/how-to-declare-variables-in-the-net-framework-using-c/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Xillent CSS rollover menu bar</title>
		<link>http://www.xillent.com/blog/codesharing/css/xillent-css-rollover-menu-bar/</link>
		<comments>http://www.xillent.com/blog/codesharing/css/xillent-css-rollover-menu-bar/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 00:56:56 +0000</pubDate>
		<dc:creator>Mark.C</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://blog.xillent.com/?p=11</guid>
		<description><![CDATA[<p>The method used to create the orange menu bar seen on Xillent doesn&#8217;t use any lists, unlike many other CSS rollover menus found on the web. All that is used here is one containing div, and four smaller inner divs. &#8230; <a href="http://www.xillent.com/blog/codesharing/css/xillent-css-rollover-menu-bar/" class="readMore">Read More</a></p><p>The post <a href="http://www.xillent.com/blog/codesharing/css/xillent-css-rollover-menu-bar/">Xillent CSS rollover menu bar</a> appeared first on <a href="http://www.xillent.com">San Jose Web Design | San Francisco Website Design | Development Company</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>The method used to create the orange menu bar seen on Xillent doesn&#8217;t use any lists, unlike many other CSS rollover menus found on the web.  All that is used here is one containing div, and four smaller inner divs.</p>
<pre class="brush: css; title: ; notranslate">
#menutab {
background: url(../images/menubar2.gif) no-repeat top;
height: 34px;
width: 900px;
color: #FFF;
margin: 20px auto;
font-size: 14px;
}

#menutab a { color: #FFF; text-decoration: none; }
#menutab a:hover { color: #FFF; text-decoration: none; }
#menutab a:visited { color: #FFF; text-decoration: none; }

#tab1 {
height: 34px;
width: 225px;
display: block;
float: left;
text-align: center;
margin: 0px;
padding: 0px;
}

#tab1 a:hover {
background:url(../images/menubar2.gif);
height: 34px;
width: 225px;
display: block;
background-position: 0px -34px;
}

#tab2 {
height: 34px;
width: 225px;
display: block;
float: left;
text-align: center;
}

#tab2 a:hover {
background:url(../images/menubar2.gif);
height: 34px;
width: 225px;
display: block;
background-position: -225px -34px;
}

#tab3 {
height: 34px;
width: 225px;
display: block;
float: left;
text-align: center;
}

#tab3 a:hover {
background:url(../images/menubar2.gif) no-repeat;
height: 34px;
width: 225px;
display: block;
background-position: -225px -34px;
}

#tab4 {
height: 34px;
width: 225px;
display: block;
float: left;
text-align: center;
}

#tab4 a:hover {
background:url(../images/menubar2.gif) no-repeat;
height: 34px;
width: 225px;
display: block;
background-position: -675px -34px;
}
</pre>
<p>There is only one image used, as well.  It is the entire length of the menu bar that the links sit inside of.  Take a look.</p>
<p><a href="http://blog.xillent.com/wp-content/uploads/2008/11/menubar2.gif"><img class="aligncenter size-medium wp-image-13" title="menubar2" src="http://blog.xillent.com/wp-content/uploads/2008/11/menubar2-590x45.gif" alt="" width="590" height="45" /></a></p>
<p>The top half of the image is the off state, and the lower half is the on state.  We then change the background position of the divs so when you rollover each one, it moves the background image into place, giving it the hover effect.  Below you will see the HTML.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div id=&quot;menutab&quot;&gt;
&lt;div id=&quot;tab1&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;div style=&quot;padding-top: 7px;&quot;&gt;Web Design and Development&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div id=&quot;tab2&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;div style=&quot;padding-top: 7px;&quot;&gt;Search Engine Optimization&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div id=&quot;tab3&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;div style=&quot;padding-top: 7px;&quot;&gt;Application Programming&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div id=&quot;tab4&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;div style=&quot;padding-top: 7px;&quot;&gt;E-Commerce&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
</pre>
<p>There is an inline style set in each href to center the text in each div, but that could have been done in the external style sheet as well.  Have fun!</p>
<p>The post <a href="http://www.xillent.com/blog/codesharing/css/xillent-css-rollover-menu-bar/">Xillent CSS rollover menu bar</a> appeared first on <a href="http://www.xillent.com">San Jose Web Design | San Francisco Website Design | Development Company</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.xillent.com/blog/codesharing/css/xillent-css-rollover-menu-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to Xillent</title>
		<link>http://www.xillent.com/blog/xillent-talk/companynews/welcome-to-xillent/</link>
		<comments>http://www.xillent.com/blog/xillent-talk/companynews/welcome-to-xillent/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 01:08:21 +0000</pubDate>
		<dc:creator>Mark.C</dc:creator>
				<category><![CDATA[Company News]]></category>

		<guid isPermaLink="false">http://blog.xillent.com/?p=9</guid>
		<description><![CDATA[<p>Hey there! We are happy to see that you found your way to our Xillent Blog. This is the place for anyone interested in source codes of all kinds, news and info about web design and development, plus you&#8217;ll find &#8230; <a href="http://www.xillent.com/blog/xillent-talk/companynews/welcome-to-xillent/" class="readMore">Read More</a></p><p>The post <a href="http://www.xillent.com/blog/xillent-talk/companynews/welcome-to-xillent/">Welcome to Xillent</a> appeared first on <a href="http://www.xillent.com">San Jose Web Design | San Francisco Website Design | Development Company</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>Hey there!  We are happy to see that you found your way to our Xillent Blog.  This is the place for anyone interested in source codes of all kinds, news and info about web design and development, plus you&#8217;ll find the latest new about our company, Xillent.  So please browse through our files, read about Xillent and see what we do.</p>
<p>The post <a href="http://www.xillent.com/blog/xillent-talk/companynews/welcome-to-xillent/">Welcome to Xillent</a> appeared first on <a href="http://www.xillent.com">San Jose Web Design | San Francisco Website Design | Development Company</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.xillent.com/blog/xillent-talk/companynews/welcome-to-xillent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
