﻿<?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 - V1 » Business Objects and Data Access (How do I?)  » Subcalssing SF Business Objects</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Sat, 02 May 2026 23:34:59 GMT</lastBuildDate><ttl>20</ttl><item><title>Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost29980.aspx</link><description>I want to start subclassing SF Buisness Objects (so I can imbed ny own Code in some of the methods) &amp;nbsp;and am not sure how to do this. I have successfully subclassed a few controls (TextBoxes, Lables) etc and they are working fine, so I am using a similar approcah for Buisness Objects.&lt;br/&gt;&lt;br/&gt;I tried :&amp;nbsp;&amp;nbsp; &lt;br/&gt;&lt;br/&gt;&lt;font color=#0000ff size=2 face=Consolas&gt;&lt;font color=#0000ff size=2 face=Consolas&gt;&lt;font color=#0000ff size=2 face=Consolas&gt;[quote]public class KernelBO : MicroFour.StrataFrame.Business.BusinessLayer&lt;br/&gt;{&lt;br/&gt;}[/quote]&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=2 face=Consolas&gt;&lt;font size=2 face=Consolas&gt;My project compiles ok. I then created a new Business Object in the normal way , and went in manually and changed the generated code &lt;br/&gt;&lt;br/&gt;[quote]from:&lt;br/&gt;public partial class SquBO : MicroFour.StrataFrame.Business.BusinessLayer&lt;br/&gt;to:&lt;br/&gt;public partial class SquBO : KernelBaseSF.KernelBO[/quote]&lt;br/&gt;&lt;br/&gt;&lt;font color=#2b91af size=2 face=Consolas&gt;&lt;font color=#2b91af size=2 face=Consolas&gt;&lt;font color=#2b91af size=2 face=Consolas&gt;but got an error in compiling the Business Objects Project (KernelBaseSF.KernelBO does not contain a constructor that takes 2 arguments&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;&lt;font color=#2b91af size=2 face=Consolas&gt;&lt;font color=#2b91af size=2 face=Consolas&gt;&lt;font color=#2b91af size=2 face=Consolas&gt;What am I doing wrong here ?&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;&lt;font color=#2b91af size=2 face=Consolas&gt;&lt;font color=#2b91af size=2 face=Consolas&gt;&lt;font color=#2b91af size=2 face=Consolas&gt;&amp;nbsp;&lt;br/&gt;&lt;br/&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=2 face=Consolas&gt;&lt;font size=2 face=Consolas&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;</description><pubDate>Fri, 20 May 2011 10:34:45 GMT</pubDate><dc:creator>Ger Cannoll</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost30008.aspx</link><description>[quote]&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlTopic_ctlPanelBar_ctlTopicsRepeater_ctl02_lblFullMessage"&gt;I removed the line and typed it in again......and now it compiles ok without an error [/quote] &lt;br/&gt;&amp;nbsp;&lt;br/&gt;Don't ya love it when that happens. I can't tell you how many hours I've wasted on things like this..... &amp;nbsp;&lt;span&gt;:crazy:&lt;/span&gt; &lt;br/&gt;&lt;br/&gt;&lt;/span&gt;As to having custom code for SetDefaultValues, you would override the OnSetDefaultValues method.&amp;nbsp; You'll want to call the base method to ensure that the event gets raised for others to consume. &lt;br/&gt;&lt;br/&gt;&lt;span&gt;[codesnippet]//-- In your base class....&lt;br/&gt;protected override void OnSetDefaultValues()&lt;br/&gt;{&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //-- Call base method to actually raise event for other consumers.&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; base.OnSetDefaultValues();&lt;br/&gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //-- Add you customization code.&lt;br/&gt;}[/codesnippet]&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;Depending on your needs, you can call the base class first (as shown) which will raise the event, then execute your custom code (i.e. you want any other work to be done [i]before[/i] you do yours) OR you can call it afterwards, meaning you want to have your custom work done before the event is raised and thus available to any consumers of the event. </description><pubDate>Fri, 20 May 2011 10:34:45 GMT</pubDate><dc:creator>Greg McGuffey</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost30004.aspx</link><description>Hi Greg.&lt;br/&gt;&lt;br/&gt;I removed the line and typeed it in again......and now it compiles ok without an error .&lt;br/&gt;&lt;br/&gt;Now I want to add in functionality&amp;nbsp; (into my Bae Class) to run code in the SetDefaultValues method of the Business Object. How do I code this in in my Base Class.</description><pubDate>Fri, 20 May 2011 03:42:53 GMT</pubDate><dc:creator>Ger Cannoll</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost30003.aspx</link><description>Hmmm....It's in System.ComponentModel, so not sure what your problem is.&amp;nbsp; Could you post a sample of the stripped down app?</description><pubDate>Thu, 19 May 2011 16:58:56 GMT</pubDate><dc:creator>Greg McGuffey</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost30002.aspx</link><description>Hi Greg. ve stripped out all the InitailizeComponent etc stuff and have it down to what you have suggested, but its coming up with a problem on Icontainer....type or namespace Icontainer could not be found.&amp;nbsp; I've included all the namespaces I think are required, including System.ComponentModel </description><pubDate>Thu, 19 May 2011 16:28:53 GMT</pubDate><dc:creator>Ger Cannoll</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost30000.aspx</link><description>&lt;span&gt;You do not need the initialize component. That is specific to the actual BOs.&amp;nbsp; For an extended BusinessLayer, you'd use&lt;br/&gt;something like this: &lt;br/&gt;&lt;br/&gt;[codesnippet]&lt;/span&gt;&lt;font size="2"&gt;&lt;span style="font-family: Courier New;" id="ctl00_ctlContentPlaceHolder_ctl00_ctlTopic_ctlPanelBar_ctlTopicsRepeater_ctl01_lblFullMessage"&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font color="#0000ff"&gt;&lt;font color="#0000ff"&gt;&lt;font color="#0000ff"&gt;public class KernelBO : MicroFour.StrataFrame.Business.BusinessLayer&lt;br/&gt;{&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public KernelBO() : base() {}&lt;br/&gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public KernelBO(Icontainer container) : base( container ) {}&lt;br/&gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public KernelBO(SerializationInfo info, StreamingContext context) :base( info, context ) {}&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;br style="font-family: Courier New;"&gt;&lt;span style="font-family: Courier New;"&gt;}&lt;/span&gt;&lt;/font&gt;[/codesnippet]&lt;br/&gt;&lt;br/&gt;You would then add any specific code as needed.&amp;nbsp; For instance I did a BusinessLayer to support auditing and added event handlers to add/edit/delete events of base.&lt;br/&gt;&lt;/span&gt;</description><pubDate>Thu, 19 May 2011 14:40:43 GMT</pubDate><dc:creator>Greg McGuffey</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost29999.aspx</link><description>I have put in constructor code when subclassing the SF buisnes object but am getting errors on Icontainer line and InitializeComponent. I basically took these snippets of code from the BuisnessObjects created ut of the Busimess Object Mapper. Not sure if I need the InitializeComponent line ??&lt;br/&gt;&lt;br/&gt;My full Subclassing Code is:&lt;br/&gt;&lt;br/&gt;&lt;font color=#0000ff size=2 face=Consolas&gt;&lt;font color=#0000ff size=2 face=Consolas&gt;&lt;font color=#0000ff size=2 face=Consolas&gt;[quote]using System;&lt;br/&gt;using System.Collections.Generic;&lt;br/&gt;using System.Linq;&lt;br/&gt;using System.Text;&lt;br/&gt;using System.Drawing;&lt;br/&gt;using MicroFour.StrataFrame.UI;&lt;br/&gt;using MicroFour.StrataFrame.Business;&lt;br/&gt;using MicroFour.StrataFrame.UI.Windows.Forms.DevEx;&lt;br/&gt;using DevExpress.XtraEditors;&lt;br/&gt;using System.ComponentModel;&lt;br/&gt;using System.Data;&lt;br/&gt;using System.Data.SqlClient;&lt;br/&gt;using System.Runtime.Serialization;&lt;br/&gt;using System.Diagnostics;&lt;br/&gt;namespace KernelBaseSF&lt;br/&gt;{&lt;br/&gt;// 16-05-11 Subclass Business Object&lt;br/&gt;public class KernelBO : MicroFour.StrataFrame.Business.BusinessLayer&lt;br/&gt;{&lt;br/&gt;public KernelBO()&lt;br/&gt;: base()&lt;br/&gt;{ InitializeComponent(); }&lt;br/&gt;　&lt;br/&gt;public KernelBO(Icontainer container)&lt;br/&gt;: base()&lt;br/&gt;{&lt;br/&gt;container.Add(this);&lt;br/&gt;InitializeComponent();&lt;br/&gt;}&lt;br/&gt;public KernelBO(SerializationInfo info, StreamingContext context)&lt;br/&gt;:base(info,context)&lt;br/&gt;{&lt;br/&gt;InitializeComponent();&lt;br/&gt;}&lt;br/&gt;}[/quote]&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;&lt;font size=2 face=Consolas&gt;&lt;font size=2 face=Consolas&gt;&lt;/font&gt;&lt;/font&gt;</description><pubDate>Thu, 19 May 2011 10:25:24 GMT</pubDate><dc:creator>Ger Cannoll</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost29995.aspx</link><description>To sub-class a BO, you are actually sub-classing the BusinessLayer as you have done. Then, you change the inherits in the BO to point to your sub-classing of the BusinessLayer.&lt;br/&gt;&lt;br/&gt;&lt;span&gt;[codesnippet]//-- sample customized BusinessLayer&lt;br/&gt;public class HelloWorldLayer : MicroFour.StrataFrame.Business.BusinessLayer&lt;br/&gt;{&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public string GetGreeting()&amp;nbsp; { return "Hello World!"; }&lt;br/&gt;}&lt;br/&gt;&lt;br/&gt;//-- Change BO to inherit from this business layer.&lt;br/&gt;public class HelloWorldBO : HelloWorldLayer&lt;br/&gt;{&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //....&lt;br/&gt;}[/codesnippet]&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;When doing the sub-class of BusinessLayer, you might need to explicitly implement the constructors, just calling the base constructors.&amp;nbsp; </description><pubDate>Wed, 18 May 2011 01:27:31 GMT</pubDate><dc:creator>Greg McGuffey</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost29994.aspx</link><description>Ok Greg, still not clear on what I have to do to SubClass the SF BO.&lt;br/&gt;&lt;br/&gt;My starting point was:&lt;br/&gt;&lt;br/&gt;&lt;font color=#0000ff size=2 face=Consolas&gt;&lt;font color=#0000ff size=2 face=Consolas&gt;&lt;font color=#0000ff size=2 face=Consolas&gt;[quote]public class KernelBO : MicroFour.StrataFrame.Business.BusinessLayer&lt;br/&gt;{&lt;br/&gt;}[/quote]&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;&lt;font size=2 face=Consolas&gt;&lt;font size=2 face=Consolas&gt;&lt;/font&gt;&lt;/font&gt;Is there something more I need to add in here ?&lt;br/&gt;&lt;br/&gt;Say I&amp;nbsp;go to the code&amp;nbsp;(That is created from the |Business Object mapper) whcih will have code like:&lt;br/&gt;&lt;br/&gt;&lt;font size=2 face=Consolas&gt;&lt;font size=2 face=Consolas&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2 face=Consolas&gt;&lt;font color=#0000ff size=2 face=Consolas&gt;&lt;font color=#0000ff size=2 face=Consolas&gt;[quote]public partial class SmaBO : MicroFour.StrataFrame.Business.BusinessLayer[/quote]&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#2b91af size=2 face=Consolas&gt;&lt;font color=#2b91af size=2 face=Consolas&gt;&lt;font color=#2b91af size=2 face=Consolas&gt;&lt;br/&gt;&lt;br/&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;Do I Need to change this code ?&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&amp;nbsp;</description><pubDate>Tue, 17 May 2011 16:27:29 GMT</pubDate><dc:creator>Ger Cannoll</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost29991.aspx</link><description>You're headed in the right direction.&amp;nbsp;&amp;nbsp; You DO want to sub class BusinessLayer, then inherit you BOs from this.&amp;nbsp; &lt;br/&gt;&lt;br/&gt;My comments were probably a bit confusing, as in my mind, I have classes that inherit from BusinessLayer and are intended to extend the base functionality (like you want to do with your set default values code) and then there are BOs which also inherit from BusinessLayer (or a sub class of BusinessLayer), but they are then built with the BO mapper.&amp;nbsp; However, they are all sub-classes of BusinessLayer.&amp;nbsp; &lt;br/&gt;&lt;br/&gt;If you look in the designer file of a BO, you'll see ALL the other stuff you have to do to get a working BO. So, there is kind of this division between BusinessLayer, providing base functionality/common properties and BO, providing implementations for some of the common properties and providing data specific properties (to support data binding). BusinessLayer is exactly the place to put common code for BOs. BOs are the actual classes that interact with data and are bindable to controls.&amp;nbsp; &lt;br/&gt;&lt;br/&gt;To get a class that you can instantiate, you need to either have the BO mapper do the work or you need to do that manually (ugh).&amp;nbsp; &lt;br/&gt;&lt;br/&gt;&lt;span&gt;[codesnippet]//-- So, this is NOT going to work at some point&lt;br/&gt;//&amp;nbsp;&amp;nbsp; ...BusinessLayer has a bunch of NotImplemented methods/properties &lt;br/&gt;BusinessLayer busLayer1 = new BusinessLayer();&lt;br/&gt;&lt;br/&gt;//-- This will work, because we are providing an actual BO.&lt;br/&gt;//&amp;nbsp;&amp;nbsp; but only need the base functionality of the BusinessLayer.&lt;br/&gt;BusinessLayer busLayer2 = new CustomersBO();&lt;br/&gt;&lt;br/&gt;//-- And of course this will work too...&lt;br/&gt;CustomersBO customers = new CustomersBO();&lt;br/&gt;[/codesnippet]&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;So, you do want to sub-class BusinessLayer and add you SetDefaultValues handler.&amp;nbsp; Then you want to change the inheritance of BOs that need this functionality as you did. You then would instantiate only BOs, though you can have BusinessLayer type variables pointing to BOs. &lt;br/&gt;&lt;br/&gt;Is this making more sense?&amp;nbsp; </description><pubDate>Tue, 17 May 2011 13:22:50 GMT</pubDate><dc:creator>Greg McGuffey</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost29989.aspx</link><description>&lt;span style="text-decoration: underline;"&gt;Hi Greg.&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;If subclassing the SF Business Objects is not the way to go, I'm wondering whats the best way of inserting my own functionality into the SF Business Objects.&lt;br/&gt;&lt;br/&gt;For instance, I will now have code that I want to insert in the SetDefaultValues event of a Buisness Object (following on from another thread) . I would see this going into most of my Business Objects.The code that will run will take data from another BUsiness Object and insert DataDriven values into the Business Object&lt;br/&gt;&lt;br/&gt;So what I want to do, is Subclass the Business Object (SF One) and add in code to the SetDefaultValues event.&lt;br/&gt;&lt;br/&gt;I could call the code from every Business Object I create, &amp;nbsp;but was looking for a more OO way of doing it</description><pubDate>Tue, 17 May 2011 11:55:39 GMT</pubDate><dc:creator>Ger Cannoll</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost29986.aspx</link><description>The error you are getting is likely because your base class and derived class don't have matching constructors.&amp;nbsp; I.e. the following will bomb:&lt;br/&gt;&lt;br/&gt;&lt;span&gt;[codesnippet]public class BaseBusinessLayer : MicroFour.StrataFrame.Business.BusinessLayer&lt;br/&gt;{&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //-- Default, no argument constructor inferred&lt;br/&gt;}&lt;br/&gt;&lt;br/&gt;public class DerivedBO : BaseBusinessLayer&lt;br/&gt;{&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //-- Oops, what constructor of base class is to be called here?&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&amp;nbsp;&amp;nbsp;&amp;nbsp; There is no constructor in BaseBusinessLayer with two constructors.&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public DerivedBO (int index, int companyID) {}&lt;br/&gt;}[/codesnippet]&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;All you need to do is explicitly call the correct constructor of the base class:&lt;br/&gt;&lt;br/&gt;&lt;span&gt;[codesnippet]&lt;/span&gt;&lt;span&gt;public class DerivedBO : BaseBusinessLayer&lt;br/&gt;{&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //-- Explicitly call desired constructor of base class.&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public DerivedBO (int index, int companyID) &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : BaseBusinessLayer() &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {}&lt;br/&gt;}&lt;/span&gt;&lt;span&gt;[/codesnippet]&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;Also, BusinessLayer (and sub-classes of it) isn't really meant to be directly instantiated. They define an interface for common data and functionality for actual BOs (i.e. BOs built via the BO mapper).&amp;nbsp; There are lots of methods/properties that will through NotImplemented exceptions if just left as-is.</description><pubDate>Tue, 17 May 2011 10:10:16 GMT</pubDate><dc:creator>Greg McGuffey</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost29985.aspx</link><description>Hi Terry&lt;br/&gt;&lt;br/&gt;I have had another look at the artcile and it seems to concentrate on Subclassing a specific BuisnessObject that was created in an application.&lt;br/&gt;&lt;br/&gt;All I want to do is subclass the StrataFrame BusinesObject Class so I can insert my own specific code wherever required&lt;br/&gt;&lt;br/&gt;Perhaps someone from SF might jump in </description><pubDate>Tue, 17 May 2011 07:58:50 GMT</pubDate><dc:creator>Ger Cannoll</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost29984.aspx</link><description>That is exactly the one it is. So no need to send it.&lt;div&gt;Sorry.</description><pubDate>Tue, 17 May 2011 07:13:18 GMT</pubDate><dc:creator>Terry Bottorff</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost29983.aspx</link><description>Hi Terry.&lt;br/&gt;&lt;br/&gt;Yes, Please email it.&lt;br/&gt;&lt;br/&gt;Not sure if its the same one as an article on the LesPinter.com about Subclassing in general. I found that helpful for subclassing the standard controls, and there is also a section in there about subclassing BusinessObjects. I started reading it, but it seemd to be extremely complicated and went on to a few pages.... I was expecting it to take one or two lines to subclass.. but&amp;nbsp;perhaps I am wrong&amp;nbsp;, so I decided to post here in the hope that there is a simple way of subclassing Business Objects .... I presume most people subclass BUisness Objects as it is supposed to be best practise.</description><pubDate>Tue, 17 May 2011 02:44:27 GMT</pubDate><dc:creator>Ger Cannoll</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost29982.aspx</link><description>I have a copy if you want me to email it too you?&lt;div&gt;Terry Bottorff</description><pubDate>Mon, 16 May 2011 20:44:29 GMT</pubDate><dc:creator>Terry Bottorff</dc:creator></item><item><title>RE: Subcalssing SF Business Objects</title><link>http://forum.strataframe.net/FindPost29981.aspx</link><description>&lt;font size=3 face="Times New Roman"&gt;Hi Gerard,&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;&lt;font face="Times New Roman"&gt;&lt;font size=3&gt;There used to be an article available from this website named "Subclassing Business Objects" written by Les Pinter, but I cannot find it now.&amp;nbsp; It might help you if somebody can find it.&lt;/font&gt;&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;&lt;font face="Times New Roman"&gt;&lt;font size=3&gt;&lt;span style="FONT-FAMILY: 'Times New Roman'; font-size: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA"&gt;&lt;font color=#000000&gt;&lt;font color=#1f5080&gt;I wish I could help you directly, but I am still a novice.&amp;nbsp; I only remember that the procedure was not at all what I expected.&amp;nbsp; I'm sure somebody from StrataFrame will help you soon.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;&lt;font face="Times New Roman"&gt;&lt;font size=3&gt;&lt;span style="FONT-FAMILY: 'Times New Roman'; font-size: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA"&gt;Sam Tenney&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;</description><pubDate>Mon, 16 May 2011 18:32:55 GMT</pubDate><dc:creator>Sam Tenney</dc:creator></item></channel></rss>