User bennage - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T10:50:12Zhttp://stackoverflow.com/feeds/user/6855http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1561063/msmq-cannot-delete-or-purge-a-queue1MSMQ cannot delete or purge a queuebennage2009-10-13T15:39:25Z2009-10-13T16:59:16Z
<p>I'm very new to MSMQ.
We have a critical system using MSMQ and it is not able to start due to insufficient resources. It appears that MSMQ is at capacity.
I am trying to purge messages (or even delete unneccessary queues), but I receive the following error when purging:</p>
<p>Cannot delete all messages from queue.
Error: Access to Message Queuing system is denied.</p>
<p>What are my options? Is there a way to delete queues when the services is off?</p>
http://stackoverflow.com/questions/208123/what-is-the-best-practice-for-compiling-silverlight-and-wpf-in-one-project/210364#2103647Answer by bennage for What is the best practice for compiling Silverlight and WPF in one project?bennage2008-10-16T21:22:36Z2009-09-11T14:31:25Z<p><em>Update: goes to show that there is almost always an easier way. :-)</em></p>
<p>The first step is to use conditional compilation to segregate the Silverlight specific code. (I'm assuming that your "default" target with be WPF.)</p>
<p>Secondly, you'll need a build script that will compile the code for each platform, setting the appropriate defines and assembly references.</p>
<p>Take a look at the open-source <a href="http://www.codeplex.com/caliburn" rel="nofollow">Caliburn project</a>. It does all this.</p>
<p>Here's an example from Caliburn's ExtensionMethods class.</p>
<pre><code> public static T GetResource<T>(this FrameworkElement element, object key)
{
DependencyObject currentElement = element;
while (currentElement != null)
{
var frameworkElement = currentElement as FrameworkElement;
if (frameworkElement != null && frameworkElement.Resources.Contains(key))
return (T)frameworkElement.Resources[key];
#if !SILVERLIGHT
currentElement = (LogicalTreeHelper.GetParent(currentElement) ??
VisualTreeHelper.GetParent(currentElement));
#else
currentElement = VisualTreeHelper.GetParent(currentElement);
#endif
}
if (Application.Current.Resources.Contains(key))
return (T)Application.Current.Resources[key];
return default(T);
}
</code></pre>
<p>If you open Caliburn in VS and compile it, it complies against the standard framework. The references are for .NET 3.5 and WPF, not Silverlight. That is also why the pre-processing directives are "!SILVERLIGHT".</p>
<p>In your build script (Caliburn uses NAnt), you'll have a target that sets the defines for each platform, for example, Caliburn's Silverlight target is:</p>
<pre><code><target name="config-platform-silverlight20">
<property name="nant.settings.currentframework" value="silverlight-2.0"/>
<property name="build.platform" value="silverlight-2.0"/>
<property name="build.defines" value="${global.build.defines},SILVERLIGHT,SILVERLIGHT_20,NO_WEB,NO_REMOTING,NO_CONVERT,NO_PARTIAL_TRUST,NO_EXCEPTION_SERIALIZATION,NO_SKIP_VISIBILITY,NO_DEBUG_SYMBOLS"/>
<property name="current.path.bin" value="${path.bin}/silverlight-2.0/${build.config}"/>
<property name="current.path.test" value="${path.bin}/silverlight-2.0/tests" />
<property name="current.path.lib" value="${path.lib}/Silverlight" />
</target>
</code></pre>
<p>Then here is the target that invoke the actual Silverlight build:</p>
<pre><code><target name="platform-silverlight20" depends="config">
<if test="${framework::exists('silverlight-2.0')}">
<echo message="Building Caliburn ${build.version} for Silverlight v2.0."/>
<call target="config-platform-silverlight20"/>
<copy todir="${current.path.bin}">
<fileset basedir="${current.path.lib}">
<include name="*.dll"/>
<include name="*.xml"/>
</fileset>
</copy>
<call target="core"/>
<call target="messaging"/>
<call target="actions"/>
<call target="commands"/>
<call target="package-platform"/>
</if>
<if test="${not(framework::exists('silverlight-2.0'))}">
<echo message="Silverlight v2.0 is not available. Skipping platform."/>
</if>
</target>
</code></pre>
<p>Finally, here is an example of the "core" target that is responsible for producing the Caliburn.Core.dll:</p>
<pre><code><target name="core" depends="config, ensure-platform-selected">
<mkdir dir="${current.path.bin}"/>
<csc keyfile="${path.src}/Caliburn.snk" noconfig="true" warnaserror="false" target="library" debug="${build.debug}" optimize="${build.optimize}" define="${build.defines}"
output="${current.path.bin}/Caliburn.Core.dll"
doc="${current.path.bin}/Caliburn.Core.xml">
<sources basedir="${path.src}">
<include name="${build.asminfo}"/>
<include name="Caliburn.Core/**/*.cs"/>
</sources>
<references basedir="${current.path.bin}">
<include name="mscorlib.dll"/>
<include name="System.dll"/>
<include name="System.Core.dll"/>
<!--WPF-->
<include name="PresentationCore.dll"/>
<include name="PresentationFramework.dll"/>
<include name="WindowsBase.dll"/>
<!--Silverlight-->
<include name="System.Windows.dll" />
</references>
<nowarn>
<warning number="1584"/>
</nowarn>
</csc>
</target>
</code></pre>
<p>Notice the way it's referencing the necessary assemblies.</p>
<p>You'll probably need to edit your NAnt.exe.config (if you are using NAnt) to match the correct version of the Silverlight framework. For Silverlight RTW, the framework version will be 2.0.31005.0.</p>
<p>
http://stackoverflow.com/questions/1411071/nhibernate-sometimes-i-want-one-item-other-times-i-want-them-all/1411253#14112530Answer by bennage for NHibernate: sometimes I want one item, other times I want them allbennage2009-09-11T14:30:22Z2009-09-11T14:30:22Z<p>You could use a derived property in your mapping file (rather than performing the logic in the property). It might look something like this:</p>
<pre><code><property name="LatestRevision"
forumla="select top r.f1, r.f2, r.etc from Revisions order by revised desc"
type="Revision" />
</code></pre>
<p>For more info on this approach search for 'nhibernate derived properties'.</p>
<p><a href="https://www.hibernate.org/hib%5Fdocs/nhibernate/1.2/reference/en/html%5Fsingle/" rel="nofollow">https://www.hibernate.org/hib%5Fdocs/nhibernate/1.2/reference/en/html%5Fsingle/</a></p>
http://stackoverflow.com/questions/299992/design-time-rendering-of-silverlight-controls-in-expression-blend-22Design-time rendering of Silverlight controls in Expression Blend 2bennage2008-11-18T20:18:34Z2009-08-29T16:26:12Z
<p>I'm working on some Silverlight controls and I would like to explicitly handle the way they appear in Blend.
Specifically, these controls have dependencies that are initialized at runtime, and thus throw exceptions in the designer. But even in the absence of the exception, I would like to make them appear a certain way in Blend.</p>
<p>I know that this is possible with WPF (using myassembly.VisualStudio.Design.dll), but I haven't been able to find info on doing this with Silverlight.</p>
<p>I have seen the hack described <a href="http://blogs.msdn.com/expression/archive/2008/10/27/simulating-sample-data-in-blend-2-sp1.aspx" rel="nofollow">here</a> that checks does this:</p>
<pre><code>bool designTime = (System.Windows.Browser.HtmlPage.IsEnabled == false);
</code></pre>
<p>I would prefer a more explicit solution though.</p>
http://stackoverflow.com/questions/286093/rhino-mocks-asserting-that-a-method-is-called-exactly-one-time3Rhino Mocks: Asserting that a method is called exactly one timebennage2008-11-13T02:32:54Z2009-07-22T04:56:21Z
<p>I want to assert that a method is called exactly one time. </p>
<p><em>Update: I'm using RhinoMocks 3.5.</em></p>
<p>Here's what I thought would work:</p>
<pre><code>[Test]
public void just_once()
{
var key = "id_of_something";
var source = MockRepository.GenerateStub<ISomeDataSource>();
source.Expect(x => x.GetSomethingThatTakesALotOfResources(key))
.Return(new Something())
.Repeat.Once();
var client = new Client(soure);
// the first call I expect the client to use the source
client.GetMeMyThing(key);
// the second call the result should be cached
// and source is not used
client.GetMeMyThing(key);
}
</code></pre>
<p>I want this test to fail if the second invocation of GetMeMyThing() calls source.GetSomethingThatTakesALotOfResources().</p>
http://stackoverflow.com/questions/317258/why-not-partial-class-to-build-the-viewmodel-in-mvvm-pattern/318865#3188651Answer by bennage for why not partial class to build the ViewModel in MVVM pattern? bennage2008-11-25T21:05:59Z2008-11-25T21:05:59Z<p>In some cases this may be useful, but generally the ViewModel (or PresentationModel) has a different set of concerns that would muddle the rest of the model.</p>
<p>For example, imagine that you have an object model that represents an order processing workflow (everybody's favorite example.) This same model might be underlying a WPF, a web site, and perhaps even other services.
Within the WPF application there will be WPF-specific concerns for presentation. Adding these concerns to primary model (even as partial classes) results in a violation of SRP. Ultimately, it would obscure the intent of model and make it difficult for consumers of the model to know which parts of it where essential and which were incidental.</p>
http://stackoverflow.com/questions/240621/using-wpf-in-iis7-or-a-windows-service/243164#2431640Answer by bennage for Using WPF in IIS7 or a windows service?bennage2008-10-28T12:55:52Z2008-11-18T22:08:00Z<p>I've worked with a company that is using WPF in an IIS hosted renderer, though you have to have a hotfix from Microsoft installed.
My understanding is that this hotfix is not publicly available, but is likely to be released in December.</p>
http://stackoverflow.com/questions/284472/how-can-i-raise-an-event-from-anywhere-in-my-wpf-application/290975#2909750Answer by bennage for How can I raise an event from anywhere in my WPF application?bennage2008-11-14T18:39:36Z2008-11-15T17:21:14Z<p>One solution to problem is to use an <a href="http://martinfowler.com/eaaDev/EventAggregator.html" rel="nofollow">Event Aggregator</a>. The pattern itself is platform independent.</p>
<p>Jeremy Miller has a post about building your own event aggregator <a href="http://codebetter.com/blogs/jeremy.miller/archive/2008/01/11/build-your-own-cab-extensible-pub-sub-event-aggregator-with-generics.aspx" rel="nofollow">here</a>.</p>
<p><strong>However, <a href="http://www.codeplex.com/CompositeWPF" rel="nofollow">Composite WPF</a> (formerly Prism) does this and it's optimized for WPF.</strong> The specifics can be found <a href="http://msdn.microsoft.com/en-us/library/cc707857.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/286519/how-do-i-trigger-a-style-change-if-datacontext-is-null-or-not-using-wpf/287047#2870475Answer by bennage for How do I trigger a style change if DataContext is null or not using WPFbennage2008-11-13T14:22:35Z2008-11-13T14:22:35Z<p>Given the scenario you describe, I would set the properties with a style and a data trigger. The data trigger would use the default binding which is the data context. </p>
<p>An example might look like this:</p>
<pre><code><Border>
<Border.Style>
<Style TargetType="Border">
<Setter Property="Background"
Value="Orange" />
<Style.Triggers>
<DataTrigger Binding="{Binding}"
Value="{x:Null}">
<Setter Property="Background"
Value="Yellow" />
</DataTrigger>
</Style.Triggers>
</Style>
</Border.Style>
</Border>
</code></pre>
<p>The border will be orange unless the data context is null, in which case the background is yellow.</p>
http://stackoverflow.com/questions/286093/rhino-mocks-asserting-that-a-method-is-called-exactly-one-time/286125#2861250Answer by bennage for Rhino Mocks: Asserting that a method is called exactly one timebennage2008-11-13T02:51:57Z2008-11-13T02:51:57Z<p>Here is what I just did (as recommended by <a href="http://twitter.com/rayhouston/statuses/1003171744" rel="nofollow">Ray Houston</a>). I would still appreciate a more elegant solution...</p>
<pre><code>[Test]
public void just_once()
{
var key = "id_of_something";
var source = MockRepository.GenerateStub<ISomeDataSource>();
// set a positive expectation
source.Expect(x => x.GetSomethingThatTakesALotOfResources(key))
.Return(new Something())
.Repeat.Once();
var client = new Client(soure);
client.GetMeMyThing(key);
// set a negative expectation
source.Expect(x => x.GetSomethingThatTakesALotOfResources(key))
.Return(new Something())
.Repeat.Never();
client.GetMeMyThing(key);
}
</code></pre>
http://stackoverflow.com/questions/259104/ambient-occlusion-shader-effect-in-wpf/266304#2663042Answer by bennage for Ambient Occlusion Shader Effect in WPF?bennage2008-11-05T19:36:28Z2008-11-05T19:36:28Z<p>If you have an understanding of terms like "<a href="http://www-viz.tamu.edu/students/bmoyer/617/ambocc/" rel="nofollow">ambient occlusion</a>" then you should probably be working with XNA.
XNA as an API is not difficult to learn, but as was mentioned, it is intended for game development. There are lots of great <a href="http://creators.xna.com/en-US/education/" rel="nofollow">XNA tutorials</a> out there.</p>
<p><strong>You can use both WPF and XNA in concert</strong>, read more about that <a href="http://stackoverflow.com/questions/43596/how-well-does-wpf-blend-with-xna-in-real-life">here</a>.</p>
<p>Can you tell us more about what you are trying to do?</p>
http://stackoverflow.com/questions/170907/is-there-a-downside-to-adding-an-anonymous-empty-delegate-on-event-declaration/264376#2643762Answer by bennage for Is there a downside to adding an anonymous empty delegate on event declaration?bennage2008-11-05T04:55:44Z2008-11-05T04:55:44Z<p>It is my understanding that the empty delegate is thread safe, whereas the null check is not.</p>
http://stackoverflow.com/questions/47343/do-you-know-any-wpf-based-text-editor-control/157562#1575623Answer by bennage for Do you know any WPF based text editor control?bennage2008-10-01T13:22:36Z2008-10-29T17:38:58Z<p>I don't know of any WPF-based text editor, and I've looked around for one.</p>
<p>Products like <a href="http://www.codeplex.com/Kaxaml" rel="nofollow">Kaxaml</a> use the <strong>non-WPF</strong> editor <a href="http://www.scintilla.org/SciTE.html" rel="nofollow">SciTE</a> I believe. I know that <a href="http://devlicio.us/blogs/rob_eisenberg/default.aspx" rel="nofollow">Rob Eisenberg</a> started work on one, but I don't think he blogged about it (and I think he set it aside.)</p>
<p>The next version of <a href="http://blogs.zdnet.com/microsoft/?p=1610" rel="nofollow">Visual Studio (2010) is said to have a WPF-based text editor</a>.</p>
<p>The <strong>short answer</strong> is that currently <strong>there isn't one</strong>.</p>
http://stackoverflow.com/questions/166295/disabling-a-eventtrigger-storyboard-dynamically/215762#2157620Answer by bennage for Disabling a EventTrigger\Storyboard Dynamicallybennage2008-10-19T00:10:38Z2008-10-19T00:10:38Z<p>You can't do what you are asking for with triggers in Silverlight. There's not a way to have a conditional in the trigger.
You can wire up the Loaded event, check your condition there, and if it's met start the storyboard. However, there is not a XAML-only equivalent.</p>
http://stackoverflow.com/questions/135299/sprite-character-animation-in-silverlight-v2/212704#2127040Answer by bennage for Sprite / Character animation in Silverlight (v2)bennage2008-10-17T15:43:52Z2008-10-17T15:43:52Z<p>I just posted <a href="http://devlicio.us/blogs/christopher_bennage/archive/2008/10/17/frame-based-bitmap-animations-in-silverlight.aspx" rel="nofollow">some code</a> using Bill's suggestion regarding the Rectange and ImageBrush.</p>
http://stackoverflow.com/questions/212111/convert-wpf-application-to-silverlight/212189#2121894Answer by bennage for Convert WPF Application to SilverLightbennage2008-10-17T13:47:36Z2008-10-17T13:47:36Z<p>Will and Bogdan's answers are correct. The keyword here is "minimal".
Rob Eisenberg has a list of differences <a href="http://devlicio.us/blogs/rob_eisenberg/archive/2008/07/26/silverlight-problems-that-affect-me.aspx" rel="nofollow">here</a> (though this was pre-RTW).</p>
<h3><a href="http://devlicio.us/blogs/rob_eisenberg/archive/2008/07/26/silverlight-problems-that-affect-me.aspx" rel="nofollow">List of Differences in WPF & Silverlight</a></h3>
http://stackoverflow.com/questions/9591/what-wpf-books-would-you-recommend/210281#2102817Answer by bennage for What WPF books would you recommend?bennage2008-10-16T20:56:16Z2008-10-16T20:56:16Z<h2><a href="http://rads.stackoverflow.com/amzn/click/0672329859" rel="nofollow">Sams Teach Yourself WPF in 24 Hours</a>.</h2>
<p>I'm one of the authors, so my opinion is biased.
Our book is structured around building four applications. It's not as in-depth as Nathan's or Petzold's books. Its intent is not to be exhaustive (or a reference), rather it is a means to coming up to speed quickly on WPF. Likewise, to provide a foundation so that you won't feel overwhelmed when you encounter some of the various nooks and crannies in the technology.</p>
http://stackoverflow.com/questions/82323/how-to-set-grid-column-maxwidth-depending-on-window-or-screen-size-in-xaml/157780#1577801Answer by bennage for How to Set Grid Column MaxWidth depending on Window or Screen Size in XAMLbennage2008-10-01T14:10:28Z2008-10-01T14:10:28Z<p>I think the XAML-only approach is somewhat circuitous, but here is a way to do it.</p>
<pre><code><Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" >
<!-- This contains our real grid, and a reference grid for binding the layout-->
<Grid x:Name="Container">
<!-- hidden because it's behind the grid below -->
<Grid x:Name="LayoutReference">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<!-- We need the border, because the column doesn't have an ActualWidth -->
<Border x:Name="ReferenceBorder"
Background="Black" />
<Border Background="White" Grid.Column="1" />
<Border Background="Black" Grid.Column="2" />
</Grid>
<!-- I made this transparent, so we can see the reference -->
<Grid Opacity="0.9">
<Grid.ColumnDefinitions>
<ColumnDefinition x:Name="Column1"
MaxWidth="{Binding ElementName=ReferenceBorder,Path=ActualWidth}"/>
<ColumnDefinition x:Name="Column2"
MinWidth="50" />
<ColumnDefinition x:Name="Column3"
Width="{ Binding ElementName=Column1, Path=Width }"/>
</Grid.ColumnDefinitions>
<Label Grid.Column="0" Background="Green"/>
<GridSplitter Grid.Column="0" Width="5" />
<Label Grid.Column="1" Background="Yellow" />
<Label Grid.Column="2" Background="Red" />
</Grid>
</Grid>
</Page>
</code></pre>
http://stackoverflow.com/questions/104520/wpf-validation-for-the-whole-form/157665#1576650Answer by bennage for WPF Validation for the whole formbennage2008-10-01T13:45:57Z2008-10-01T13:45:57Z<p>The description of your problem is a little vague to me. I mean, I'm not exactly sure what your difficulty is.
Assuming that the DataContext is some sort of presenter or controller that has a propetry representing the customer instance, and ValidateCommand is a property of type ICommand:</p>
<pre><code> <StackPanel>
<TextBox Text="{Binding CurrentCustomer.FirstName}" />
<TextBox Text="{Binding CurrentCustomer.LastName}" />
<Button Content="Validate"
Command="{Binding ValidateCommand}"
CommandParameter="{Binding CurrentCustomer}" />
<ItemsControl ItemsSource="{Binding CurrentCustomer.BrokenRules}" />
</StackPanel>
</code></pre>
<p>This XAML is really simplified, of course, and there are other ways to do it.
As a Web developer who is now heavily involved with WPF, I find most tasks like this significantly easier in WPF.</p>
http://stackoverflow.com/questions/1561063/msmq-cannot-delete-or-purge-a-queue/1561556#1561556Comment by bennage on MSMQ cannot delete or purge a queuebennage2009-10-15T16:59:50Z2009-10-15T16:59:50ZYes, after raising the Quota for the service I was able to access the queue. Though there seems to have been a secondary problem where the account I was using lost rights as well, but the service trying to read the queue had rights and could do so after raising the quota. This was on MSMQ 2.0 btw.http://stackoverflow.com/questions/1561063/msmq-cannot-delete-or-purge-a-queueComment by bennage on MSMQ cannot delete or purge a queuebennage2009-10-13T16:33:49Z2009-10-13T16:33:49ZOk, it seems that rights on individual queues have somehow changed. Still trying to figure it out.http://stackoverflow.com/questions/1561063/msmq-cannot-delete-or-purge-a-queue/1561107#1561107Comment by bennage on MSMQ cannot delete or purge a queuebennage2009-10-13T15:52:08Z2009-10-13T15:52:08ZI am using Queue Explorer. I don't believe that it is the account rights, I have been able to add/delete/purge queues in the past. This seems to be connected to the fact that the queues are too full.http://stackoverflow.com/questions/1411071/nhibernate-sometimes-i-want-one-item-other-times-i-want-them-all/1411253#1411253Comment by bennage on NHibernate: sometimes I want one item, other times I want them allbennage2009-09-11T21:38:39Z2009-09-11T21:38:39ZGood to know though. I didn't know it was restricted to simple types.http://stackoverflow.com/questions/208123/what-is-the-best-practice-for-compiling-silverlight-and-wpf-in-one-project/210364#210364Comment by bennage on What is the best practice for compiling Silverlight and WPF in one project?bennage2009-09-11T14:31:40Z2009-09-11T14:31:40ZThanks, corrected.http://stackoverflow.com/questions/299992/design-time-rendering-of-silverlight-controls-in-expression-blend-2/300170#300170Comment by bennage on Design-time rendering of Silverlight controls in Expression Blend 2bennage2008-11-19T01:51:57Z2008-11-19T01:51:57ZPerfect! Thanks!http://stackoverflow.com/questions/296261/using-a-wpf-custom-control-how-can-i-give-my-custom-control-a-name-to-access-itComment by bennage on Using a WPF Custom Control, How can I give my custom control a name to access it via the code behind?bennage2008-11-17T18:51:10Z2008-11-17T18:51:10ZCan you provide an example of the XAML causing the problem?http://stackoverflow.com/questions/286519/how-do-i-trigger-a-style-change-if-datacontext-is-null-or-not-using-wpf/287047#287047Comment by bennage on How do I trigger a style change if DataContext is null or not using WPFbennage2008-11-13T14:28:10Z2008-11-13T14:28:10ZHmm, after rereading your question, I don't think that I really answered it.http://stackoverflow.com/questions/242356/how-to-automatically-extend-the-tab-control-as-items-are-added-to-it-without-creaComment by bennage on How to automatically extend the tab control as items are added to it without creating a scroll bar?bennage2008-10-31T21:23:54Z2008-10-31T21:23:54ZDo you mean that you want the tab strip to get bigger? For example, if you pace the tab strip to the left, do you want strip to get wider (start a 2nd column) after it reaches the bottom?http://stackoverflow.com/questions/120914/what-is-the-recomended-way-to-skin-an-entire-application-in-wpf/126578#126578Comment by bennage on What is the recomended way to skin an entire application in WPF?bennage2008-10-30T13:01:13Z2008-10-30T13:01:13ZAlso, some odd bits and pieces have built in keys that you just have to know about. For example, the separators in menus.
<a href="http://devlicious.com/blogs/christopher_bennage/archive/2008/06/19/styling-separators-in-wpf.aspx" rel="nofollow">devlicious.com/blogs/christopher_bennage/…</a>http://stackoverflow.com/questions/9033/hidden-features-of-c/32706#32706Comment by bennage on Hidden Features of C#?bennage2008-10-27T05:23:37Z2008-10-27T05:23:37ZI use '@' all the time, but I never thought of spanning multiple lines! :-Phttp://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066Comment by bennage on Hidden Features of C#?bennage2008-10-27T05:22:21Z2008-10-27T05:22:21ZHow is this a C# feature? I thought this was F#? Can you explain more?