﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>StrataFrame Forum / StrataFrame Application Framework / Business Objects and Data Access (How do I?)  / New C# Component / Latest Posts</title><generator>InstantForum.NET v4.1.4</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>forum@strataframe.net</webMaster><lastBuildDate>Sat, 05 Jul 2008 19:22:12 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: New C# Component</title><link>http://forum.strataframe.net/Topic16113-6-1.aspx</link><description>Yup...you got it figured out.  Looks good :)</description><pubDate>Mon, 05 May 2008 10:12:24 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: New C# Component</title><link>http://forum.strataframe.net/Topic16113-6-1.aspx</link><description>The catch...close the solution.  Then, reopen it and add the item manually to the appropriate tab in the toolbox.&lt;/P&gt;&lt;P&gt;So far, so good...now, on to the report.</description><pubDate>Sat, 03 May 2008 15:02:00 GMT</pubDate><dc:creator>Bill Cunnien</dc:creator></item><item><title>RE: New C# Component</title><link>http://forum.strataframe.net/Topic16113-6-1.aspx</link><description>After adding a new component to the project, I altered the code to look like this:&lt;/P&gt;&lt;FONT color=#0000ff size=2&gt;&lt;P&gt;using&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;FONT color=#000000&gt; Aspire.Model;&lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;using&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;FONT color=#000000&gt; MicroFour.StrataFrame.Business;&lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;using&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;FONT color=#000000&gt; System;&lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;using&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;FONT color=#000000&gt; System.ComponentModel;&lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;using&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;FONT color=#000000&gt; System.Collections.Generic;&lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;using&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;FONT color=#000000&gt; System.Diagnostics;&lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;using&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;FONT color=#000000&gt; System.Text;&lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;namespace&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;FONT color=#000000&gt; Aspire.Shipping.Datasources&lt;BR&gt;&lt;/FONT&gt;{&lt;BR&gt;    &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;public&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;partial&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;class&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#2b91af size=2&gt;PackingListDS&lt;/FONT&gt;&lt;FONT size=2&gt; : &lt;/FONT&gt;&lt;FONT color=#2b91af size=2&gt;BusinessBindingSource&lt;BR&gt;    &lt;/FONT&gt;&lt;FONT size=2&gt;{&lt;BR&gt;        &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;public&lt;/FONT&gt;&lt;FONT size=2&gt; PackingListDS()&lt;BR&gt;        {&lt;BR&gt;            InitializeComponent();&lt;BR&gt;            &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;this&lt;/FONT&gt;&lt;FONT size=2&gt;.BusinessObject = &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;new&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#2b91af size=2&gt;PackingListBO&lt;/FONT&gt;&lt;FONT size=2&gt;();&lt;BR&gt;        }&lt;BR&gt;        &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;public&lt;/FONT&gt;&lt;FONT size=2&gt; PackingListDS(&lt;/FONT&gt;&lt;FONT color=#2b91af size=2&gt;IContainer&lt;/FONT&gt;&lt;FONT size=2&gt; container)&lt;BR&gt;        {&lt;BR&gt;            container.Add(&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;this&lt;/FONT&gt;&lt;FONT size=2&gt;);&lt;BR&gt;            InitializeComponent();&lt;BR&gt;        }&lt;BR&gt;    }&lt;BR&gt;}&lt;/P&gt;&lt;/FONT&gt;&lt;P&gt;I did nothing to the designer.cs file.  Is this correct?  How do I get the component added to the toolbox?&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR&gt;Bill</description><pubDate>Sat, 03 May 2008 14:10:23 GMT</pubDate><dc:creator>Bill Cunnien</dc:creator></item><item><title>New C# Component</title><link>http://forum.strataframe.net/Topic16113-6-1.aspx</link><description>I have seen the design of a VB component that inherits from BusinessBindingSource; however, I cannot see to create a C# component that does the same thing (my VB to C# translation skills are not always up to par).  My goal is to create an extended component for a specific business object.  The XBBS will be dropped onto an XtraReport as a datasource.  Any pointers would be appreciated?&lt;/P&gt;&lt;P&gt;Bill</description><pubDate>Sat, 03 May 2008 13:12:11 GMT</pubDate><dc:creator>Bill Cunnien</dc:creator></item></channel></rss>