﻿<?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 » WinForms (How do I?)  » Using DevExpress controls in SF...</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Mon, 25 May 2026 01:45:27 GMT</lastBuildDate><ttl>20</ttl><item><title>Using DevExpress controls in SF...</title><link>http://forum.strataframe.net/FindPost15263.aspx</link><description>Hi,&lt;/P&gt;&lt;P&gt;I want to start using some DevEx controls in my SF project like the RibbonControl, XTraNavBar and XTraTreeList, for the XTraNavBar and XTraTreeList I would like to bind some data.&lt;/P&gt;&lt;P&gt;Is there any special procedure to start using this controls in a SF project?&amp;nbsp;</description><pubDate>Wed, 01 Oct 2008 01:20:05 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: Using DevExpress controls in SF...</title><link>http://forum.strataframe.net/FindPost19831.aspx</link><description>Hello&lt;br&gt;
&lt;br&gt;
I try these Example all i read in this thread but i am &lt;br&gt;
still not able to run the code based on DevExpress RibbonForm.&lt;br&gt;
&lt;br&gt;
Seems i am too stupid for this simple task.&lt;br&gt;
&lt;br&gt;
Can anyone send me maybe sample project to setup&lt;br&gt;
this problem.&lt;br&gt;
&lt;br&gt;
Thank you very much&lt;br&gt;
&lt;br&gt;
Rainer</description><pubDate>Wed, 01 Oct 2008 01:20:05 GMT</pubDate><dc:creator>Rainer Kempf, RK</dc:creator></item><item><title>RE: Using DevExpress controls in SF...</title><link>http://forum.strataframe.net/FindPost19606.aspx</link><description>Hi Trent&lt;br&gt;
&lt;br&gt;
[codesnippet]ll, basically you are creating your own BaseForm and cutting out the code from our BaseForm.  In that sample, I just took all of the code in the BaseForm class, created another class that inherited from the XtraForm, then added our code in that class.  So at this point you are not inheriting anything from the actual SF class....the code has just been copied over (or as we like to say "backed up" [BigGrin] ).  So if we make a change to the BaseForm, you would not be inheriting that change.  You would have to go over and copy that code out and update your base form.[/codesnippet]&lt;br&gt;
&lt;br&gt;
I will try to do this more clear. I download and check the sample you post for use the XtraRibbon form. Then I copy the forms to my own application and implement a Ribbon in my main form.&lt;br&gt;
&lt;br&gt;
Everthing works fine, but I have a small concern:&lt;br&gt;
&lt;br&gt;
The sample code  in MyBaseForm.vb has a copyright leyend form you that says: "' © Copyright, 2005 MicroFour, Inc., All rights reserved."&lt;br&gt;
&lt;br&gt;
You post that if you change something in the BaseForm then as the code is not inherited we have to copy the code and update the base form.&lt;br&gt;
&lt;br&gt;
I look for the BaseForm in SF last version, the one I found has a more recent Copyright and if a copy all that code and put in the form of the sample gives me an error in this line:&lt;br&gt;
&lt;br&gt;
Implements MicroFour.StrataFrame.UI.Windows.Forms.IContainerControl&lt;br&gt;
&lt;br&gt;
As I first test the sample code and works, I use the code of the sample. My questions is how safe is use that code at this point. And what file is BaseForm.vb in the SF source code, and what modifications must I do in order to replace MyBaseForm.vb just as you do in the sample.&lt;br&gt;
&lt;br&gt;
Hope this time has more sense to you.&lt;br&gt;
&lt;br&gt;
Regards</description><pubDate>Tue, 23 Sep 2008 00:48:11 GMT</pubDate><dc:creator>Juan Carlos Pazos</dc:creator></item><item><title>RE: Using DevExpress controls in SF...</title><link>http://forum.strataframe.net/FindPost19598.aspx</link><description>I really don't understand what you are asking or what your problem is here...sorry :ermm:&amp;nbsp; You will need to elaborate.</description><pubDate>Mon, 22 Sep 2008 15:44:06 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Using DevExpress controls in SF...</title><link>http://forum.strataframe.net/FindPost19596.aspx</link><description>Hi Trent&lt;br&gt;
&lt;br&gt;
Any comments about the last post.&lt;br&gt;
&lt;br&gt;
Regards</description><pubDate>Mon, 22 Sep 2008 13:54:26 GMT</pubDate><dc:creator>Juan Carlos Pazos</dc:creator></item><item><title>RE: Using DevExpress controls in SF...</title><link>http://forum.strataframe.net/FindPost19536.aspx</link><description>Hi&lt;br&gt;
&lt;br&gt;
I'm playing too with the Ribbon, just do the same that you do in your sample app. and all works fine.&lt;br&gt;
&lt;br&gt;
I note that the sample in MyBaseForm.vb the code is from 2005, it says "' © Copyright, 2005 MicroFour, Inc., All rights reserved."&lt;br&gt;
&lt;br&gt;
I look for the corresponding code of the BaseForm from the last SF version, and if I put that code replacinng the one in the sample it always give me an error in this line&lt;br&gt;
&lt;br&gt;
Implements MicroFour.StrataFrame.UI.Windows.Forms.IContainerControl&lt;br&gt;
&lt;br&gt;
Is safly use the code from the sample?&lt;br&gt;
&lt;br&gt;
If not, can you tell me exactly wich code should I look for?&lt;br&gt;
&lt;br&gt;
Regards</description><pubDate>Fri, 19 Sep 2008 02:11:03 GMT</pubDate><dc:creator>Juan Carlos Pazos</dc:creator></item><item><title>RE: Using DevExpress controls in SF...</title><link>http://forum.strataframe.net/FindPost15285.aspx</link><description>Well, basically you are creating your own BaseForm and cutting out the code from our BaseForm.&amp;nbsp; In that sample, I just took all of the code in the BaseForm class, created another class that inherited from the XtraForm, then added our code in that class.&amp;nbsp; So at this point you are not inheriting anything from the actual SF class....the code has just been copied over (or as we like to say "backed up" :D).&amp;nbsp; So if we make a change to the BaseForm, you would not be inheriting that change.&amp;nbsp; You would have to go over and copy that code out and update your base form.</description><pubDate>Tue, 01 Apr 2008 10:14:14 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Using DevExpress controls in SF...</title><link>http://forum.strataframe.net/FindPost15280.aspx</link><description>Hi Trent,&lt;P&gt;[quote][b]Trent L. Taylor (04/01/2008)[/b][hr]Keep in mind that this could inadvertantly set you adrift if we make a change to the BaseForm class.[/quote]&lt;/P&gt;&lt;P&gt;Can you be more specific in this comment, I am not looking for trouble, just nice solutions :P</description><pubDate>Tue, 01 Apr 2008 09:27:30 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: Using DevExpress controls in SF...</title><link>http://forum.strataframe.net/FindPost15276.aspx</link><description>You can refer to this post about creating your own SF base form.&amp;nbsp; Keep in mind that this could inadvertantly set you adrift if we make a change to the BaseForm class.&amp;nbsp; But this will get you want you want: &lt;A href="http://forum.strataframe.net/FindPost14003.aspx"&gt;http://forum.strataframe.net/FindPost14003.aspx&lt;/A&gt;</description><pubDate>Tue, 01 Apr 2008 09:12:22 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Using DevExpress controls in SF...</title><link>http://forum.strataframe.net/FindPost15267.aspx</link><description>Trent, &lt;P&gt;One more thing, DevEx has a RibbonForm class which is very nice and may fit some of my needs, this form inherits from a DevExpress class not SF ...&lt;/P&gt;&lt;P&gt;[codesnippet]&lt;FONT color=#0000ff size=2&gt;&lt;/P&gt;&lt;P&gt;Inherits&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;FONT color=#000000&gt; DevExpress.XtraBars.Ribbon.RibbonForm&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;[/codesnippet]&lt;/P&gt;&lt;P&gt;All SF forms inherits from&amp;nbsp;&lt;FONT size=2&gt;&lt;FONT color=#000000&gt;MicroFour.StrataFrame.UI.Windows.Forms.StandardForm, so how can I have the best of both worlds,&amp;nbsp;the DevEx RibbonForm that will work with SF&amp;nbsp;Security, Localization, etc.?&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size=2&gt;&lt;IMG src="http://forum.strataframe.net/Uploads/Images/9ac80866-2f14-425f-be1f-a8af.png"&gt;&lt;/P&gt;&lt;/FONT&gt;</description><pubDate>Mon, 31 Mar 2008 21:54:19 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: Using DevExpress controls in SF...</title><link>http://forum.strataframe.net/FindPost15264.aspx</link><description>Nope...drop and go :)</description><pubDate>Mon, 31 Mar 2008 13:19:56 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item></channel></rss>