<?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>The Blog of Travis Gneiting &#187; Software Engineering</title>
	<atom:link href="http://www.blog.travisgneiting.com/category/software-engineering/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blog.travisgneiting.com</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jan 2012 03:45:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:7px; float: right; padding-right: 0; margin: 3px;"><!-- Ad number: 1 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-3961093531196233"; google_alternate_color = "FFFFFF";
		google_ad_width = 180; google_ad_height = 150;
		google_ad_format = "180x150_as"; google_ad_type = "text_image";
		google_ad_channel ="1685894941"; google_color_border = "336699";
		google_color_link = "0000FF"; google_color_bg = "FFFFFF";
		google_color_text = "000000"; google_color_url = "008000";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>Notes on SQLMembership Provider using the MembershipProvider Class</title>
		<link>http://www.blog.travisgneiting.com/2011/11/15/notes-on-sqlmembership-provider-using-the-membershipprovider-class/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=notes-on-sqlmembership-provider-using-the-membershipprovider-class</link>
		<comments>http://www.blog.travisgneiting.com/2011/11/15/notes-on-sqlmembership-provider-using-the-membershipprovider-class/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 01:42:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Membership]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=277</guid>
		<description><![CDATA[1. Set the tag to use &#8220;forms&#8221; in the config 2. use the reg_sql to generate the SQL tables for use with SQLMembership Provider. 3. Add]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>1. Set the <authentication> tag to use &#8220;forms&#8221; in the config<br />
2. use the reg_sql to generate the SQL tables for use with SQLMembership Provider.<br />
3. Add <membership default provider = Sqlprovider and set application name in config.<br />
4. Can use membership.createuser(&#8220;UN&#8221;,&#8221;PW&#8221;,&#8221;Email&#8221;) to create user.<br />
5. Methods include:Createuser, ValidateUser, DeleteUser, FinduserByName,finduserByEmail,GenPassword<br />
6.Options to capture other user info with ProfileSystem, and defining provider properties in webconfig. Or simply adding additional tables.</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2011/11/15/notes-on-sqlmembership-provider-using-the-membershipprovider-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Table to Excel XLS code</title>
		<link>http://www.blog.travisgneiting.com/2011/11/15/table-to-excel-xls-code/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=table-to-excel-xls-code</link>
		<comments>http://www.blog.travisgneiting.com/2011/11/15/table-to-excel-xls-code/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 20:37:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=274</guid>
		<description><![CDATA[Dim StringWriter1 As IO.StringWriter Dim StringBuilder1 As StringBuilder = New StringBuilder StringWriter1 = New IO.StringWriter(StringBuilder1) Dim TextWriter1 As HtmlTextWriter = New HtmlTextWriter(oStringWriter) label.RenderControl(oTextWriter) Response.Clear() Response.ClearHeaders() Response.ContentType = &#8220;application/vnd.xls&#8221; Response.AddHeader(&#8220;Content-Disposition&#8221;, &#8220;attachment;filename=WLMS-exlfile.xls&#8221;) Response.Write(StringWriter1.ToString()) Response.Flush() Response.End()]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p> Dim StringWriter1 As IO.StringWriter<br />
            Dim StringBuilder1 As StringBuilder = New StringBuilder<br />
            StringWriter1 = New IO.StringWriter(StringBuilder1)<br />
            Dim TextWriter1 As HtmlTextWriter = New HtmlTextWriter(oStringWriter)<br />
            label.RenderControl(oTextWriter)<br />
            Response.Clear()<br />
            Response.ClearHeaders()<br />
            Response.ContentType = &#8220;application/vnd.xls&#8221;<br />
            Response.AddHeader(&#8220;Content-Disposition&#8221;, &#8220;attachment;filename=WLMS-exlfile.xls&#8221;)<br />
            Response.Write(StringWriter1.ToString())<br />
            Response.Flush()<br />
            Response.End()</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2011/11/15/table-to-excel-xls-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting the SelectedValue of RadioButtonList &amp; DropDownList in GridView EditItemTemplate</title>
		<link>http://www.blog.travisgneiting.com/2011/06/19/setting-the-selectedvalue-of-radiobuttonlist-dropdownlist-in-gridview-edititemtemplate/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=setting-the-selectedvalue-of-radiobuttonlist-dropdownlist-in-gridview-edititemtemplate</link>
		<comments>http://www.blog.travisgneiting.com/2011/06/19/setting-the-selectedvalue-of-radiobuttonlist-dropdownlist-in-gridview-edititemtemplate/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 03:54:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=238</guid>
		<description><![CDATA[Here is a trick one, because IntelliSense doesn&#8217;t bring up the &#8220;SelectedValue&#8221; property for a RadioButtonList, or a DropDownList in an EditItemTemplate for GridViews you may forget that &#8220;SelectedValue&#8221; is an actual property of these controls. Here is how you can set the selected value of a RadioButtonList inside an EditItemTemplate]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Here is a trick one, because <em>IntelliSense </em>doesn&#8217;t bring up the &#8220;SelectedValue&#8221; property for a RadioButtonList, or a DropDownList in an EditItemTemplate for GridViews you may forget that &#8220;SelectedValue&#8221; is an actual property of these controls.</p>
<p>Here is how you can set the selected value of a RadioButtonList inside an EditItemTemplate</p>
<div id="wpshdo_1" class="wp-synhighlighter-outer"><div id="wpshdt_1" class="wp-synhighlighter-expanded"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_1"></a><a id="wpshat_1" class="wp-synhighlighter-title" href="#codesyntax_1"  onClick="javascript:wpsh_toggleBlock(1)" title="Click to show/hide code block">Source code</a></td><td align="right"><a href="#codesyntax_1" onClick="javascript:wpsh_code(1)" title="Show code only"><img border="0" style="border: 0 none" src="http://www.blog.travisgneiting.com/wp-content/plugins/wp-synhighlight/themes/default/images/code.png" /></a>&nbsp;<a href="#codesyntax_1" onClick="javascript:wpsh_print(1)" title="Print code"><img border="0" style="border: 0 none" src="http://www.blog.travisgneiting.com/wp-content/plugins/wp-synhighlight/themes/default/images/printer.png" /></a>&nbsp;<a href="http://www.blog.travisgneiting.com/wp-content/plugins/wp-synhighlight/About.html" target="_blank" title="Show plugin information"><img border="0" style="border: 0 none" src="http://www.blog.travisgneiting.com/wp-content/plugins/wp-synhighlight/themes/default/images/info.gif" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_1" class="wp-synhighlighter-inner" style="display: block;"><pre class="html4strict" style="font-family:monospace;"><span class="sc2">&lt;asp:TemplateField HeaderText<span class="sy0">=</span><span class="st0">&quot;Payment&quot;</span>&gt;</span>
<span class="sc2">&lt;ItemTemplate&gt;</span>
    <span class="sc2">&lt;asp:<span class="kw3">Label</span> <span class="kw3">ID</span><span class="sy0">=</span><span class="st0">&quot;lablePayment&quot;</span> runat<span class="sy0">=</span><span class="st0">&quot;server&quot;</span> <span class="kw3">Text</span><span class="sy0">=</span><span class="st0">'&lt;%#Eval(&quot;PayName&quot;)%&gt;</span></span>' /&gt;
<span class="sc2">&lt;<span class="sy0">/</span>ItemTemplate&gt;</span>
<span class="sc2">&lt;EditItemTemplate&gt;</span>
  <span class="sc2">&lt;asp:RadioButtonList Runat <span class="sy0">=</span> <span class="st0">&quot;server&quot;</span> <span class="kw3">ID</span><span class="sy0">=</span><span class="st0">&quot;rblPaymentType&quot;</span> SelectedValue<span class="sy0">=</span><span class="st0">'&lt;%#Eval(&quot;PayTypeID&quot;)%&gt;</span></span>'&gt;
    <span class="sc2">&lt;asp:ListItem <span class="kw3">Text</span><span class="sy0">=</span><span class="st0">&quot;Check&quot;</span> <span class="kw3">Value</span><span class="sy0">=</span><span class="st0">&quot;1&quot;</span>&gt;&lt;<span class="sy0">/</span>asp:ListItem&gt;</span>
    <span class="sc2">&lt;asp:ListItem <span class="kw3">Text</span><span class="sy0">=</span><span class="st0">&quot;Credit Card&quot;</span> <span class="kw3">Value</span><span class="sy0">=</span><span class="st0">&quot;2&quot;</span>&gt;&lt;<span class="sy0">/</span>asp:ListItem&gt;</span>
  <span class="sc2">&lt;<span class="sy0">/</span>asp:RadioButtonList&gt;</span>
<span class="sc2">&lt;<span class="sy0">/</span>EditItemTemplate&gt;</span>
<span class="sc2">&lt;<span class="sy0">/</span>asp:TemplateField&gt;</span></pre></div></div>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2011/06/19/setting-the-selectedvalue-of-radiobuttonlist-dropdownlist-in-gridview-edititemtemplate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:7px; float: left; padding-left: 0px; margin: 3px;"><!-- Ad number: 2 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-3961093531196233"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel ="1685894941"; google_color_border = "E3FA11";
		google_color_link = "FFFFFF"; google_color_bg = "A2AB2B";
		google_color_text = "000000"; google_color_url = "FFFFFF";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>Compiled Language vs. Interpreted Language</title>
		<link>http://www.blog.travisgneiting.com/2011/02/07/compiled-language-vs-interpreted-language/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=compiled-language-vs-interpreted-language</link>
		<comments>http://www.blog.travisgneiting.com/2011/02/07/compiled-language-vs-interpreted-language/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 15:44:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Engineering]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=210</guid>
		<description><![CDATA[Programming languages generally fall into one of the following categories, Compiled Language or Interpreted Language. Compiled Languages are reduced to a set of machine instructions before being saved as an executable file. In general, a compiled program will execute faster thatn an interpreted program because the Interpreted program must be reduced to machine language at [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><span style="font-size: xx-small;">Programming languages generally fall into one of the following categories, Compiled Language or Interpreted Language. Compiled Languages are reduced to a set of machine instructions before being saved as an executable file. In general, a compiled program will execute faster thatn an interpreted program because the Interpreted program must be reduced to machine language at runtime.</p>
<p>Interpreted languages that code is saved in the same format and developed in. Interpreted languages offer more flexability like modifying themselves by adding or changing functions at runtime. Development time can also be reduced with interpreted languages, because the application dose not need to be compiled before each test.</p>
<p>In theory any language can be compiled or interpreted. The Microsoft .NET language is compiled to Common Intermediate Language (CIL) which is compiled into native machine code.</p>
<p></span></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2011/02/07/compiled-language-vs-interpreted-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conditional Hyperlink in template</title>
		<link>http://www.blog.travisgneiting.com/2011/01/11/conditional-hyperlink-in-template/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=conditional-hyperlink-in-template</link>
		<comments>http://www.blog.travisgneiting.com/2011/01/11/conditional-hyperlink-in-template/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 02:44:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=208</guid>
		<description><![CDATA[&#60;% #IIf((Eval(&#8220;id&#8221;) Is System.DBNull.Value), Eval(&#8220;Last&#8221;) &#38; &#8220;, &#8220; &#38; Eval(&#8220;First&#8221;), &#8220;&#60;a href=&#8221; ../default.aspx?id=&#8221; &#38; Eval(&#8220;id&#8221;) &#38; &#8220;&#62;&#8221; &#38; Eval(&#8220;Last&#8221;) &#38; &#8220;, &#8220; &#38; Eval(&#8220;First&#8221;) &#38; &#8220;&#60;/a&#62;&#8221;)%&#62;]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><span style="font-size: xx-small;"><font size="1">&lt;%</p>
<p></font></span><span style="color: #0000ff; font-size: xx-small;"><span style="color: #0000ff; font-size: xx-small;">#</span></span><span style="font-size: xx-small;">IIf((Eval(</span><span style="color: #a31515; font-size: xx-small;"><span style="color: #a31515; font-size: xx-small;">&#8220;id&#8221;</span></span><span style="font-size: xx-small;">) </span><span style="color: #0000ff; font-size: xx-small;"><span style="color: #0000ff; font-size: xx-small;">Is</span></span><span style="font-size: xx-small;"> System.DBNull.Value), Eval(</span><span style="color: #a31515; font-size: xx-small;"><span style="color: #a31515; font-size: xx-small;">&#8220;Last&#8221;</span></span><span style="font-size: xx-small;">) &amp; </span><span style="color: #a31515; font-size: xx-small;"><span style="color: #a31515; font-size: xx-small;">&#8220;, &#8220;</span></span><span style="font-size: xx-small;"> &amp; Eval(</span><span style="color: #a31515; font-size: xx-small;"><span style="color: #a31515; font-size: xx-small;">&#8220;First&#8221;</span></span><span style="font-size: xx-small;">), </span><span style="color: #a31515; font-size: xx-small;"><span style="color: #a31515; font-size: xx-small;">&#8220;&lt;a href=&#8221;</span></span><span style="font-size: xx-small;"> ..</span><span style="color: #a31515; font-size: xx-small;"><span style="color: #a31515; font-size: xx-small;">/default.aspx?id=&#8221;</span></span><span style="font-size: xx-small;"> &amp; Eval(</span><span style="color: #a31515; font-size: xx-small;"><span style="color: #a31515; font-size: xx-small;">&#8220;id&#8221;</span></span><span style="font-size: xx-small;">) &amp; </span><span style="color: #a31515; font-size: xx-small;"><span style="color: #a31515; font-size: xx-small;">&#8220;&gt;&#8221;</span></span><span style="font-size: xx-small;"> &amp; Eval(</span><span style="color: #a31515; font-size: xx-small;"><span style="color: #a31515; font-size: xx-small;">&#8220;Last&#8221;</span></span><span style="font-size: xx-small;">) &amp; </span><span style="color: #a31515; font-size: xx-small;"><span style="color: #a31515; font-size: xx-small;">&#8220;, &#8220;</span></span><span style="font-size: xx-small;"> &amp; Eval(</span><span style="color: #a31515; font-size: xx-small;"><span style="color: #a31515; font-size: xx-small;">&#8220;First&#8221;</span></span><span style="font-size: xx-small;">) &amp; </span><span style="color: #a31515; font-size: xx-small;"><span style="color: #a31515; font-size: xx-small;">&#8220;&lt;/a&gt;&#8221;</span></span><span style="font-size: xx-small;">)%&gt; </span></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2011/01/11/conditional-hyperlink-in-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entity Framework Links</title>
		<link>http://www.blog.travisgneiting.com/2010/02/04/web-development-links/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=web-development-links</link>
		<comments>http://www.blog.travisgneiting.com/2010/02/04/web-development-links/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 17:59:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Engineering]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=43</guid>
		<description><![CDATA[Mozilla Development Center - https://developer.mozilla.org/en/Web_Development  MSDN &#8211; Entity Framework - http://msdn.microsoft.com/en-us/library/bb386964.aspx  Entity Framework &#8211; http://naspinski.net/post/Getting-started-with-Linq-To-Entities.aspx  MSDN &#8211; The ADO.NET Entity Framework- http://msdn.microsoft.com/en-us/data/aa937723.aspx  MSDN &#8211; .Net Framework Class Library - http://msdn.microsoft.com/en-us/library/ms229335.aspx  MSDN &#8211; Data Development Videos (Entity Framework) &#8211; http://msdn.microsoft.com/en-us/data/cc300162.aspx  MSDN &#8211; When to use Linq to SQL vs When to use Linq to Entity - [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><strong>Mozilla Development Center </strong>-<a href="http://msdn.microsoft.com/en-us/library/bb386964.aspx"> https://developer.mozilla.org/en/Web_Development</a> </p>
<p><strong>MSDN &#8211; Entity Framework </strong>-<a href="http://msdn.microsoft.com/en-us/library/bb386964.aspx"> http://msdn.microsoft.com/en-us/library/bb386964.aspx</a> </p>
<p><strong>Entity Framework</strong> &#8211; <a href="http://naspinski.net/post/Getting-started-with-Linq-To-Entities.aspx">http://naspinski.net/post/Getting-started-with-Linq-To-Entities.aspx</a> </p>
<p><strong>MSDN &#8211; The ADO.NET Entity Framework</strong>- <a href="http://msdn.microsoft.com/en-us/data/aa937723.aspx">http://msdn.microsoft.com/en-us/data/aa937723.aspx<strong></strong></a> </p>
<p><strong>MSDN &#8211; .Net Framework Class Library </strong>- <a href="http://msdn.microsoft.com/en-us/library/ms229335.aspx">http://msdn.microsoft.com/en-us/library/ms229335.aspx<strong></strong></a> </p>
<p><strong>MSDN &#8211; Data Development Videos <em>(Entity Framework) &#8211; </em></strong><a href="http://msdn.microsoft.com/en-us/data/cc300162.aspx">http://msdn.microsoft.com/en-us/data/cc300162.aspx</a> </p>
<p><strong>MSDN &#8211; When to use Linq to SQL vs When to use Linq to Entity -</strong> <a href="http://msdn.microsoft.com/en-us/library/cc161164.aspx">http://msdn.microsoft.com/en-us/library/cc161164.aspx</a></p>
<p>Eight Entity Framework Tutorials on DataDeveloper.NET - <a href="http://thedatafarm.com/blog/data-access/eight-entity-framework-tutorials-on-datadeveloper-net/">http://thedatafarm.com/blog/data-access/eight-entity-framework-tutorials-on-datadeveloper-net/</a><a href="http://msdn.microsoft.com/en-us/data/bb738689.aspx"> </a></p>
<p>Application Scenarios (Entity Framework) &#8211; <a href="http://msdn.microsoft.com/en-us/data/bb738689.aspx">http://msdn.microsoft.com/en-us/data/bb738689.aspx</a> <br />
<a href="http://code.msdn.microsoft.com/EFDocSamples2008">http://code.msdn.microsoft.com/EFDocSamples2008</a> <u><br />
</u></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2010/02/04/web-development-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XtraReport Bindings</title>
		<link>http://www.blog.travisgneiting.com/2010/02/04/xtrareport-bindings/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=xtrareport-bindings</link>
		<comments>http://www.blog.travisgneiting.com/2010/02/04/xtrareport-bindings/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 17:10:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Engineering]]></category>
		<category><![CDATA[DevExpress]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=31</guid>
		<description><![CDATA[Change Private WithEvents bindingSource1 As System.Windows.Forms.BindingSource To Public WithEvents bindingSource1 As System.Windows.Forms.BindingSource Also the bindingSource Datasource needs to be changed in the report code. Me.bindingSource1.DataSource = GetType(TypeofObject) For the report viewer, again bind the bindingSource Datasource Dim objects As objects objects = GetAllObjects() Dim Report1 As New XtraReport1 Report1.bindingSource1.DataSource = objects ReportViewer1.Report = Report1]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><code>Change
<pre class="brush: vb.net">Private WithEvents bindingSource1 As System.Windows.Forms.BindingSource</pre>
<p></code></p>
<p>To <code>
<pre class="brush: vb.net">Public WithEvents bindingSource1 As System.Windows.Forms.BindingSource</pre>
<p></code></p>
<p>Also the bindingSource Datasource needs to be changed in the report code.</p>
<pre class="brush: vb.net">Me.bindingSource1.DataSource = GetType(TypeofObject)</pre>
<p>For the report viewer, again bind the bindingSource Datasource</p>
<pre class="brush: vb.net">Dim objects As objects
objects = GetAllObjects()
Dim Report1 As New XtraReport1
Report1.bindingSource1.DataSource = objects
ReportViewer1.Report = Report1</pre>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2010/02/04/xtrareport-bindings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:7px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 3 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-3961093531196233"; google_alternate_color = "FFFFFF";
		google_ad_width = 336; google_ad_height = 280;
		google_ad_format = "336x280_as"; google_ad_type = "text_image";
		google_ad_channel ="1685894941"; google_color_border = "336699";
		google_color_link = "0000FF"; google_color_bg = "FFFFFF";
		google_color_text = "000000"; google_color_url = "008000";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>Software Functional Specifications</title>
		<link>http://www.blog.travisgneiting.com/2009/02/24/software-functional-specifications/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=software-functional-specifications</link>
		<comments>http://www.blog.travisgneiting.com/2009/02/24/software-functional-specifications/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 18:59:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Engineering]]></category>
		<category><![CDATA[Functional]]></category>
		<category><![CDATA[Specification]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=26</guid>
		<description><![CDATA[A few good links on Functional Specifications. http://en.wikipedia.org/wiki/Functional_specification http://www.mojofat.com/tutorial/]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>A few good links on Functional Specifications.</p>
<p><a title="http://en.wikipedia.org/wiki/Functional_specification" href="http://en.wikipedia.org/wiki/Functional_specification" target="_blank">http://en.wikipedia.org/wiki/Functional_specification</p>
<p>http://www.mojofat.com/tutorial/</a></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2009/02/24/software-functional-specifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebMethods For Use With Visual Studio and AJAX</title>
		<link>http://www.blog.travisgneiting.com/2009/01/05/webmethods-for-use-with-visual-studio-and-ajax/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=webmethods-for-use-with-visual-studio-and-ajax</link>
		<comments>http://www.blog.travisgneiting.com/2009/01/05/webmethods-for-use-with-visual-studio-and-ajax/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 20:48:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[webmethod]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=20</guid>
		<description><![CDATA[The webmethod tag is an attribute added to a Public methods to indicate the method should be exposed as part of an XML Web service.  Below is an example of applying the WebMethod attribute. &#60;WebMethod()&#62; _ Public Shared Function FunctionName(ByVal Parameter As String) As ObjectName Dim ObjectName As Object = Object Return ObjectName End Function [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>The webmethod tag is an attribute added to a Public methods to indicate the method should be exposed as part of an XML Web service.  Below is an example of applying the WebMethod attribute.</p>
<p><code><br />
&lt;WebMethod()&gt; _<br />
Public Shared Function FunctionName(ByVal Parameter As String) As ObjectName<br />
Dim ObjectName As Object = Object<br />
Return ObjectName<br />
End Function</code></p>
<p>The Web method can now be called via javascript on the client. Below is an example of calling the webmethod from the client.<br />
<code><br />
PageMethods.FunctionName(Parameter1, onComplete, OnTimeOut, onError);</code></p>
<p>Here is a great link with additional information for web methods:</p>
<p><a href="http://www.novologies.com/post/2009/05/06/Cleaner-Faster-Ajax-in-ASPNET.aspx">http://www.novologies.com/post/2009/05/06/Cleaner-Faster-Ajax-in-ASPNET.aspx</a></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2009/01/05/webmethods-for-use-with-visual-studio-and-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery Show Hide Div Example Tutorial</title>
		<link>http://www.blog.travisgneiting.com/2008/11/06/jquery-show-hide-div-example-tutorial/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-show-hide-div-example-tutorial</link>
		<comments>http://www.blog.travisgneiting.com/2008/11/06/jquery-show-hide-div-example-tutorial/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 16:14:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=18</guid>
		<description><![CDATA[&#60;script type=&#8221;text/javascript&#8221; language=&#8221;javascript&#8221;&#62; &#60;!&#8211; $(document).ready(function(){ $(&#8216;#btnAddNew&#8217;).click(function(){ var isVisible = $(&#8216;#divNew&#8217;).is(&#8216;:visible&#8217;); if (isVisible == false){ $(&#8220;#divNew&#8221;).animate({ height: &#8216;show&#8217;, opacity: &#8216;show&#8217; }, &#8216;fast&#8217;); } else{ $(&#8220;#divNew&#8221;).animate({ height: &#8216;hide&#8217;, opacity: &#8216;hide&#8217; }, &#8216;fast&#8217;); } return false; }); }); &#8211;&#62; &#60;/script&#62;]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>&lt;script type=&#8221;text/javascript&#8221; language=&#8221;javascript&#8221;&gt;<br />
&lt;!&#8211;</p>
<p>$(document).ready(function(){</p>
<p>$(&#8216;#btnAddNew&#8217;).click(function(){<br />
var isVisible = $(&#8216;#divNew&#8217;).is(&#8216;:visible&#8217;);<br />
if (isVisible == false){<br />
$(&#8220;#divNew&#8221;).animate({ height: &#8216;show&#8217;, opacity: &#8216;show&#8217; }, &#8216;fast&#8217;);<br />
} else{<br />
$(&#8220;#divNew&#8221;).animate({ height: &#8216;hide&#8217;, opacity: &#8216;hide&#8217; }, &#8216;fast&#8217;);<br />
}<br />
return false;<br />
});<br />
});</p>
<p>&#8211;&gt;<br />
&lt;/script&gt;</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2008/11/06/jquery-show-hide-div-example-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

