User Ashley Davis - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T10:19:50Zhttp://stackoverflow.com/feeds/user/25868http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1876274/the-model-in-mvvm-business-object-or-something-else/1889757#18897571Answer by Ashley Davis for The model in MVVM: business object or something else?Ashley Davis2009-12-11T17:52:27Z2009-12-14T18:30:07Z<p>From the other answers it should be obvious that the relationship between ViewModel and Model is somewhat fuzzy. Be aware that there is nothing stopping you from having ViewModel and Model in the same class, and when your requirements in a particular area are simple enough maybe this is all that you need!</p>
<p>How you structure the separation between ViewModel and Model will very much depend on the needs of the project or software that requires it, how demanding your deadlines are and how much you care about having a well structured and maintainable code base.</p>
<p>Separating ViewModel and Model is simply a way of structuring your code. There are many different ways of structuring your code, even within this pattern! It should be no surprise then that you will hear different approaches preached by different programmers. The main thing is that the separation can help to simplify and make reusable the independent portions of code. When you have cleanly separated business data, business logic and presentation logic you can easily mix, match and reuse your views, logic and data to create new UIs. The separated and simplified code is also often easier to understand, test, debug and maintain.</p>
<p>Obviously not everyone will agree with this answer. I think that is part of the inherent fuzziness of the problem. In general you need to consider and trade-off the advantages versus the costs of having a separation between ViewModel and Model and know that it is not always a simple task to decide what goes in the ViewModel and what goes in the Model. It will probably help to lay down some ground rules that you or your organisation will follow and then evolve your rules as you understand which level of separation best suits your problem domain.</p>
<p>I think it is worth mentioning that I used to use a similar approach to MVVM when programming Windows Forms and the fact the WPF has more direct support for this (in the form of data binding and commands) has really made my day.</p>
http://stackoverflow.com/questions/776193/how-to-propagate-errors-exceptions-that-occur-during-wpf-data-binding3How to propagate errors & exceptions that occur during WPF data binding?Ashley Davis2009-04-22T08:25:58Z2009-12-14T14:06:15Z
<p>Every so often I find that I have accidentally broken data binding in my application. Either by renaming a property and not renaming it in the XAML or by a property throwing an exception for some reason.</p>
<p>By default data binding errors are logged to debug output and exceptions that are thrown are caught and suppressed.</p>
<p>Is there an easy way to have an exception thrown after the debug output is logged?</p>
<p>I want to know as soon as possible if data binding is broken (ideally picking it up in an automated test) and not risk the chance that it might go unnoticed until tested by a human.</p>
http://stackoverflow.com/questions/491312/is-there-a-wpf-cheat-sheet-outhere/1888642#18886420Answer by Ashley Davis for Is there a WPF Cheat Sheet outhere?Ashley Davis2009-12-11T15:01:20Z2009-12-11T15:01:20Z<p>Refcardz have a free WPF cheat sheet. You can view it online. To download it as a PDF you need to register with the site.</p>
<p><a href="http://blog.codebeach.com/2009/11/free-wpf-cheat-sheet.html" rel="nofollow">http://blog.codebeach.com/2009/11/free-wpf-cheat-sheet.html</a></p>
http://stackoverflow.com/questions/1156569/xaml-alternatives/1887170#18871701Answer by Ashley Davis for XAML AlternativesAshley Davis2009-12-11T10:26:09Z2009-12-11T10:26:09Z<p>This might be something to watch. There is nothing to download from the website yet though.</p>
<p>D'oh: The Super Productive Windows GUI Language</p>
<p><a href="http://doh.xn--majkrsft-e0ab.se/" rel="nofollow">http://doh.xn--majkrsft-e0ab.se/</a></p>
http://stackoverflow.com/questions/512679/lua-com-programming/1867273#18672731Answer by Ashley Davis for Lua COM ProgrammingAshley Davis2009-12-08T14:22:14Z2009-12-08T14:22:14Z<p>You can roll your own system using CInvoke and some custom C/C++ code combined with Lua meta-tables.</p>
<p><a href="http://www.nongnu.org/cinvoke/" rel="nofollow">http://www.nongnu.org/cinvoke/</a></p>
<p>From experience though I can't recommend this, it is pretty complicated and requires a lot of effort to get it right and make it bulletproof. </p>
http://stackoverflow.com/questions/862250/what-is-the-best-way-to-implement-the-graphics-for-a-selected-item-in-a-wpf-user0What is the best way to implement the graphics for a selected item in a WPF user control?Ashley Davis2009-05-14T08:42:34Z2009-11-04T10:00:02Z
<p>I have implemented a few different WPF user controls. In doing so I have also implemented a few different ways of implementing the graphics for when an item is selected.</p>
<p>I want to find out how others are doing this and what they think is the best way of doing it?</p>
<p>Only one solution per answer please. </p>
<p>To avoid confusion here are some examples of graphics to indicate that an item is selected:</p>
<ul>
<li> Adding graphics to the adorner layer for an element.
<li> Changing the color of an element based on an 'IsSelected' property in the data.
<li> Procedurally showing/hiding an element in the XAML that indicates selection.
</ul>
http://stackoverflow.com/questions/1037452/is-there-an-easy-way-to-embed-a-javascript-interpreter-in-a-c-application0Is there an easy way to embed a Javascript interpreter in a C# application?Ashley Davis2009-06-24T10:02:44Z2009-10-26T12:37:56Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/172753/embedding-javascript-engine-into-net-c">Embedding JavaScript engine into .NET (C#)</a> </p>
</blockquote>
<p>Is there an easy way to embed Javascript in a C# application? </p>
<p>I want to make my C# application scriptable. </p>
<p>I have used Lua for this in the past but would like to use Javascript in this instance. LuaInterface is a nice C# wrapper for the C Lua API and it made it really easy to embed Lua in C# and a lot less painful than writing a Managed C++ wrapper for the Lua API (I have tried that as well). </p>
<p>Are there any C# libraries around for embedding Javascript that are as easy to use as LuaInterface?</p>
http://stackoverflow.com/questions/1392864/is-there-a-way-to-determine-the-width-and-height-of-a-wpf-window-before-showing-i0Is there a way to determine the width and height of a WPF Window before showing it?Ashley Davis2009-09-08T09:08:12Z2009-09-13T07:20:31Z
<p>I am trying to center a WPF Window on the current position of the mouse cursor. Getting the mouse coordinates is no problem, but I need to determine the width and height of the window in order to calculate the offset for setting the 'Left' and 'Top' properties.</p>
<p>Is there a way to determine the width and height of a window before showing it (calling the 'Show' method)?</p>
<p>I have 'SizeToContent' set to true on my window so that the content determines the actual window size. I have already tried calling 'Measure' and was expecting this to set 'DesiredSize' but it didn't.</p>
http://stackoverflow.com/questions/1361362/why-is-the-scrollviewer-scrollchanged-event-only-raised-after-a-small-delay-follo0Why is the ScrollViewer ScrollChanged event only raised after a small delay following a call to ScrollToVerticalOffset/ScrollToHorizontalOffset?Ashley Davis2009-09-01T09:01:02Z2009-09-01T21:54:40Z
<p>I was working with ScrollViewer and I noticed that when calling ScrollToHorizontalOffset or ScrollToVerticalOffset that this appears to have a delayed effect in raising the ScrollChanged event. I also noticed that the HorizontalOffset/VerticalOffset properties don't immediately have the value that was just set. After a small amount of time the ScrollChanged event is raised and the properties do have the right values.</p>
<p>Does anyone know the reason for this delayed effect? Why doesn't it update immediately? Is there anyway to force it to update immediately?</p>
http://stackoverflow.com/questions/985903/how-to-derive-a-new-class-from-datatemplate-and-then-use-it-in-place-of-datatempl0How to derive a new class from DataTemplate and then use it in place of DataTemplate?Ashley Davis2009-06-12T09:51:58Z2009-08-25T09:00:01Z
<p>How do I derive a new class from DataTemplate and then use it in place of DataTemplate?</p>
<p>For example, in C#:</p>
<pre><code>public class DerivedDataTemplate : DataTemplate
{
}
</code></pre>
<p>Then in XAML:</p>
<pre><code><local: DerivedDataTemplate DataType="{x:Type local:SomeType}">
<Grid>
... UI here ...
</Grid>
</local:DerivedDataTemplate>
</code></pre>
<p>When I try to use my derived data template class the follow exception is generated:</p>
<p>System.Windows.Markup.XamlParseException was unhandled
Message="'Grid' object cannot be added to 'DerivedDataTemplate'. Object of type 'System.Windows.Controls.Grid' cannot be converted to type 'System.Windows.FrameworkElementFactory'.</p>
<p>Does anyone know how to work around this exception and successfully use a class derived from DataTemplate?</p>
http://stackoverflow.com/questions/1207764/how-to-dynamically-populate-a-wpf-grid-using-data-binding0How to dynamically populate a WPF grid using data binding?Ashley Davis2009-07-30T16:33:50Z2009-07-30T16:46:07Z
<p>I am looking for a way to populate a single grid using data bindings.</p>
<p>The way I do this at the moment is by using an ItemsControl where each item is represented as a Grid with the columns that I need. The main reason I want a single grid is to make the widths of all columns line up. </p>
<p>Is there way for the Grid panel to be used with ItemsControl so that there is a single grid to contain all the items?</p>
<p>Or is there another solution?</p>
http://stackoverflow.com/questions/1200385/is-there-a-way-to-determine-parameter-values-passed-to-a-lua-function-from-within2Is there a way to determine parameter values passed to a Lua function from within a call to the debug hook handling the 'call' event?Ashley Davis2009-07-29T13:43:55Z2009-07-29T23:23:12Z
<p>I have written a Lua script that uses the debug API (<code>debug.sethook</code>) to hook calls and returns. I use it to print out a nicely formatted call tree - which is very useful for debugging.</p>
<p>In the hook handler function I increment or decrement a global <code>indentLevel</code> variable based on whether the event is 'call' or 'return' (or 'tail return'). I then use <code>debug.getinfo</code> to get info about the calling function and dump it to stdout at the current indent level.</p>
<p>For 'call' events I would like to also print out the parameter values that were passed to the particular call. Presumably I could do this in a C/C++ implementation of the hook handler function by looking at the Lua stack. </p>
<p>Does anyone know if there is a way to determine the parameter values from within the debug handler function in Lua?</p>
http://stackoverflow.com/questions/96265/what-is-a-better-way-to-create-a-game-loop-on-the-iphone-other-than-using-nstimer6What is a better way to create a game loop on the iPhone other than using NSTimer?Ashley Davis2008-09-18T19:55:35Z2009-07-13T06:38:42Z
<p>I am programming a game on the iPhone. I am currently using NSTimer to trigger my game update/render. The problem with this is that (after profiling) I appear to lose a lot of time between updates/renders and this seems to be mostly to do with the time interval that I plug into NSTimer. </p>
<p>So my question is what is the best alternative to using NSTimer?</p>
<p>One alternative per answer please.</p>
http://stackoverflow.com/questions/1086188/is-is-possible-to-return-an-object-or-value-from-a-python-script-to-the-hosting-a1Is is possible to return an object or value from a Python script to the hosting application?Ashley Davis2009-07-06T09:23:41Z2009-07-06T16:48:56Z
<p>For example in Lua you can place the following line at the end of a script:</p>
<pre><code>return <some-value/object>
</code></pre>
<p>The value/object that is returned can then be retrieved by the hosting application.</p>
<p>I use this pattern so that scripts can represent factories for event handlers. The script-based event handlers are then used to extend the application. For example the hosting application runs a script called 'SomeEventHandler.lua' which defines and returns an object that is an event handler for 'SomeEvent' in your application.</p>
<p>Can this be done in Python? Or is there a better way to achieve this?</p>
<p>More specifically I am embedding IronPython in my C# application and am looking for a way to instance these script-based event handlers which will allow the application to be extended using Python.</p>
http://stackoverflow.com/questions/1079265/how-do-i-create-a-c-event-handler-that-can-be-handled-in-ironpython/1079431#10794312Answer by Ashley Davis for How do I create a C# event handler that can be handled in IronPython?Ashley Davis2009-07-03T13:46:17Z2009-07-03T13:46:17Z<p>I figured it out.</p>
<p>The class needs to be public as well as the event.</p>
<p>eg</p>
<pre><code>public class Foo
{
...
public event EventHandler Bar;
}
</code></pre>
http://stackoverflow.com/questions/1079265/how-do-i-create-a-c-event-handler-that-can-be-handled-in-ironpython2How do I create a C# event handler that can be handled in IronPython?Ashley Davis2009-07-03T13:01:38Z2009-07-03T13:46:17Z
<p>How do I create a C# event handler that can be handled in IronPython?</p>
<p>Note that I am using IronPython 2.0.1. I am able to handle events from system classes with no problems (eg Window.KeyDown) but when I try to define my own C# event an exception is raised when I attempt to hook it from IronPython.</p>
<p>The exception thrown is ArgumentTypeException and it has the message "cannot add to private event". The message seems odd considering the event I am trying to hook is public.</p>
<p>My C# class looks like this:</p>
<pre><code>class Foo
{
...
public event EventHandler Bar;
}
</code></pre>
<p>My IronPython setup code looks like this:</p>
<pre><code>ScriptEngine engine = Python.CreateEngine();
ScriptRuntime runtime = engine.Runtime;
ScriptScope scope = runtime.CreateScope();
ScriptSource source = engine.CreateScriptSourceFromFile("Test.py");
Foo bar = new Foo();
scope.SetVariable("Foo", bar);
source.Execute(scope); <-- Exception is thrown here.
</code></pre>
<p>My IronPython script looks like this:</p>
<pre><code>def BarHandler(*args):
pass
Foo.Bar += BarHandler
</code></pre>
<p>Does anyone know if I am doing this wrong? </p>
<p>Or is something wrong with IronPython?</p>
http://stackoverflow.com/questions/956076/how-to-lookup-and-invoke-a-net-typeconverter-for-a-particular-type1How to lookup and invoke a .Net TypeConverter for a particular type?Ashley Davis2009-06-05T14:11:33Z2009-06-05T14:38:12Z
<p>I would like to implement a general purpose runtime type conversion function that makes use .Net TypeConverters to do the conversion. </p>
<p>Does anyone know how to how to look up and invoke a TypeConverter for a particular type?</p>
<p>Consider this C# example:</p>
<pre><code>//
// Convert obj to the type specified by 'toType'.
//
object ConvertTo(object obj, Type toType)
{
if (TypeIsEqualOrDerivesFrom(obj.GetType(), toType)) <-- I know how to implement this.
{
// The type of obj is the same as the type specified by 'toType' or
// the type of obj derives from the type specified by 'toType'.
return obj;
}
if (TypeConverterExists(obj.GetType(), toType) <-- How do I implement this?
{
// There exists a type convertor that is capable of converting from
// the type of obj to the type specified by 'toType'.
return InvokeTypeConverter(obj, toType); <-- How do I implement this?
}
throw new TypeConversionFailedException();
}
</code></pre>
http://stackoverflow.com/questions/776193/how-to-propagate-errors-exceptions-that-occur-during-wpf-data-binding/847268#8472680Answer by Ashley Davis for How to propagate errors & exceptions that occur during WPF data binding?Ashley Davis2009-05-11T08:56:45Z2009-05-11T08:56:45Z<p>After some procrastination I finally set about coding a solution to my original issue.</p>
<p>My solution uses a custom trace listener (originally suggested by John) that logs to an output window. The output window is automatically displayed and bought to the foreground when an error occurs.</p>
<p>Here is my trace listener:</p>
<p><code></p>
<pre>
public class ErrorLogTraceListener : TraceListener
{
public override void Write(string message)
{
...
}
public override void WriteLine(string message)
{
...
}
}
</pre>
<p></code></p>
<p>TraceListener is defined in System.Diagnostics.</p>
<p>The custom trace listener must be hooked into the system to be used. The official way to do this is to set something in the registry and then use the App.config file to configure the trace listener. </p>
<p>However I found that there is a much easier way to do this programmatically:</p>
<p><code></p>
<pre>
ErrorLogTraceListener listener = new ErrorLogTraceListener();
PresentationTraceSources.Refresh();
PresentationTraceSources.DataBindingSource.Listeners.Add(listener);
PresentationTraceSources.DataBindingSource.Switch.Level = SourceLevels.Error;
</pre>
<p></code></p>
<p>PresentationTraceSources is also defined in System.Diagnostics.</p>
<p>For more information on trace sources see Mike Hillberg's <a href="http://blogs.msdn.com/mikehillberg/archive/2006/09/14/WpfTraceSources.aspx" rel="nofollow">blog</a>.</p>
<p>Bea Stollnitz has some useful info on her <a href="http://www.beacosta.com/blog/?p=52" rel="nofollow">blog</a>.</p>
http://stackoverflow.com/questions/785202/is-there-any-way-to-programmatically-determine-in-c-c-how-many-parameters-a-lua0Is there any way to programmatically determine in C/C++ how many parameters a Lua function expects?Ashley Davis2009-04-24T09:43:39Z2009-04-30T10:21:36Z
<p>Is there a way to determine how many parameters a Lua function takes just before calling it from C/C++ code?</p>
<p>I looked at <code>lua_Debug</code> and <code>lua_getinfo</code> but they don't appear to provide what I need.</p>
<p>It may seem a bit like I am going against the spirit of Lua but I really want to bullet proof the interface that I have between Lua and C++. When a C++ function is called from Lua code the interface verifies that Lua has supplied the correct number of arguments and the type of each argument is correct. If a problem is found with the arguments a <code>lua_error</code> is issued.</p>
<p>I'd like to have similar error checking the other way around. When C++ calls a Lua function it should at least check that the Lua function doesn't declare more parameters than are necessary.</p>
http://stackoverflow.com/questions/166050/can-anyone-recommend-a-free-internet-based-private-wiki5Can anyone recommend a free internet-based private Wiki?Ashley Davis2008-10-03T09:12:38Z2009-03-06T22:32:40Z
<p>I'm starting a programming project soon with a group of friends. We will all be working remotely most of the time. I'd like to start an online wiki that we can all access but it needs to be something that is free, private and accessible only to the team. Can anyone suggest a good host for this kind of wiki? Ideally it would have a feature that allows me to back up the wiki to local storage.</p>
http://stackoverflow.com/questions/615068/how-can-i-make-my-c-activex-control-print-nicely-in-excel/615600#6156001Answer by Ashley Davis for How can I make my C++ ActiveX control print nicely in Excel?Ashley Davis2009-03-05T16:42:15Z2009-03-05T16:42:15Z<p>After much head scratching I figured out the solution to my problem.</p>
<p>The <code>OnDraw</code> function generated by the Visual Studio 2005 wizard sets up a clipping region by calling the function <code>SelectClipRgn</code>. It was this clipping setup that was causing ActiveX control to appear clipped when printed. Commenting out the code makes the ActiveX control print out perfectly. Commenting out the code doesn't appear to cause any other problems either - at least not in my case. </p>
<p>I can only assume that whatever coordinate system is used for clipping is not compatible with the coordinate system used when drawing to a metafile DC.</p>
<p>Here are some links to useful info that I found about printing ActiveX controls:</p>
<p><a href="http://www.codeproject.com/KB/COM/officeatlprint.aspx" rel="nofollow">http://www.codeproject.com/KB/COM/officeatlprint.aspx</a></p>
<p><a href="http://www.codeproject.com/KB/COM/WirgerPrintArticle.aspx" rel="nofollow">http://www.codeproject.com/KB/COM/WirgerPrintArticle.aspx</a></p>
<p><a href="http://support.microsoft.com/kb/81497" rel="nofollow">http://support.microsoft.com/kb/81497</a></p>
<p><a href="http://support.microsoft.com/kb/84984" rel="nofollow">http://support.microsoft.com/kb/84984</a></p>
http://stackoverflow.com/questions/615068/how-can-i-make-my-c-activex-control-print-nicely-in-excel1How can I make my C++ ActiveX control print nicely in Excel?Ashley Davis2009-03-05T14:45:44Z2009-03-05T16:42:15Z
<p>I am trying to get my ActiveX control to print out nicely in Excel. </p>
<p>The control is written in C++. Originally I generated the control using the Visual Studio 2005 wizard. I have tested this with a simple wizard generated control to experiment with the OnDraw function and I discovered that even a control straight out of the wizard doesn't print well either. It appears to clip out a large portion of the control - which by default renders a black outline and some text in the centre.</p>
<p>The function IDataObject_GetData is called on my ActiveX control which in turn creates a metafile and renders to it.</p>
<p>Does anyone know how to get an ActiveX control to print out nicely? Alternatively links to useful information will be appreciated.</p>
http://stackoverflow.com/questions/594391/can-activex-properties-to-be-accessed-from-visual-basic-be-procedurally-generat2Can ActiveX properties (to be accessed from Visual Basic) be procedurally generated at run-time?Ashley Davis2009-02-27T11:22:19Z2009-02-27T14:21:27Z
<p>Does anyone know if it is possible to generate ActiveX properties at run-time? </p>
<p>I only need to be able to get and set these properties from Visual Basic. </p>
<p>My ActiveX control is coded in C++ and I already know how to create properties by implementing hard-coded C++ get and put functions. However I have potentially a large set of properties for this ActiveX control and ideally the property set exposed will change depending on the internal state of the ActiveX control.</p>
<p>I am hoping there is a way to generate properties from data, such as the following XML:</p>
<pre><code><Properties>
<Property>
<Name>SomeProperty</Name>
<Type>Int</Type>
<DefaultValue>10</DefaultValue>
</Property>
...
<Properties>
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/569950/what-causes-visual-basic-run-time-error-2147319765-8002802b-in-excel-when-an-a/589883#5898830Answer by Ashley Davis for What causes Visual Basic Run-time error -2147319765 (8002802b) in Excel when an ActiveX control has been instanced?Ashley Davis2009-02-26T09:58:08Z2009-02-26T09:58:08Z<p>After talking to Microsoft I found out the cause of the problem I was having.</p>
<p>When creating an ActiveX control using the VS 2005/2008 wizard you need to check the 'Connection points' check box in the 'Options' page. This adds, among other things, IConnectionPointContainerImpl as a base class for your ATL class, which in turn implements IConnectionPointContainer.</p>
<p>Failure to do this means that you can't insert your ActiveX control into an Excel document via Visual Basic more than once. The second time you execute the script you start getting the 'automation errors'.</p>
<p>The answer to the problem was simple enough and it worked, although I am still not sure how it actually relates to the 'automation error' and leaves me wondering why the error messages are not more informative.</p>
http://stackoverflow.com/questions/569950/what-causes-visual-basic-run-time-error-2147319765-8002802b-in-excel-when-an-a1What causes Visual Basic Run-time error -2147319765 (8002802b) in Excel when an ActiveX control has been instanced?Ashley Davis2009-02-20T15:22:19Z2009-02-26T09:58:08Z
<p>I have created an ActiveX control using C++. I use Visual Basic code to instance the control in an Excel worksheet. I can only run the VB script once, subsequent runs cause the following runtime error when attempting to access the 'ActiveSheet' variable:</p>
<pre><code>Microsoft Visual Basic
Run-time error '-2147319765 (8002802b)':
Automation error
Element not found
</code></pre>
<p>I am trying to work out what causes this error and how I can fix it?</p>
<p>As an experiment I tried creating a simple ActiveX control generated by Visual Studio wizards (in both VS 2005 & 2008). I didn't add or modify any code in this test case. The simple test case still causes this error.</p>
<p>Other ActiveX controls in the system don't cause this error (eg I tried instancing 'Bitmap Image') from VB code.</p>
<p>This is the VB code (a macro that I recorded, but hand-coded VB has the same issue):</p>
<pre><code>Sub Macro1()
ActiveSheet.OLEObjects.Add(ClassType:="test.test_control.1" _
, Link:=False, DisplayAsIcon:=False).Select
End Sub
</code></pre>
<p>Can anyone give me an answer on this? Alternatively any pointers to resources that may help will be appreciated.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/413425/how-do-i-get-the-hwnd-for-an-activex-control-after-the-control-has-been-initialis/420521#4205211Answer by Ashley Davis for How do I get the HWND for an ActiveX control after the control has been initialised/activated?Ashley Davis2009-01-07T14:40:05Z2009-01-07T14:40:05Z<p>After some trial and error and I found the answer I was after.</p>
<p>In the constructor of your ATL ActiveX control you to add the following line of code:</p>
<pre><code>m_bWindowOnly = true;
</code></pre>
<p>This causes the window for the control to be created (rather than just reusing the HWND of the parent window). After this the m_hWnd member of the control class can be used to access the HWND for the control's window.</p>
http://stackoverflow.com/questions/413425/how-do-i-get-the-hwnd-for-an-activex-control-after-the-control-has-been-initialis1How do I get the HWND for an ActiveX control after the control has been initialised/activated?Ashley Davis2009-01-05T15:19:14Z2009-01-07T14:40:05Z
<p>I am creating an ATL 8.0 based ActiveX control in C++ using Visual Studio 2008. I need to create a sub-window and attach it to the ActiveX control. </p>
<p>How do I get access to the HWND that is owned by the ActiveX control?</p>
<p>Which ATL function can I override in order to use the HWND after the control's window has been created?</p>
http://stackoverflow.com/questions/96898/what-is-the-hardest-technical-question-you-have-had-to-answer-in-an-interview3What is the hardest technical question you have had to answer in an interview?Ashley Davis2008-09-18T20:59:45Z2008-11-27T05:05:31Z
<p>Different companies use different technical questions to try and figure out who the good programmers are.</p>
<p>What is the hardest technical question or problem you have ever had to solve in an interview?</p>
http://stackoverflow.com/questions/114011/how-do-i-get-the-current-size-of-a-matrix-stack-in-opengl2How do I get the current size of a matrix stack in OpenGL?Ashley Davis2008-09-22T09:43:14Z2008-09-22T09:47:54Z
<p>How do I get the current size of a matrix stack (GL_MODELVIEW, GL_PROJECTION, GL_TEXTURE) in OpenGL?</p>
<p>I want this so that I can do some error checking to ensure that in certain parts of the code I can check that the matrix stacks have been left in the original condition.</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/105492#10549239Answer by Ashley Davis for What was your first home computer?Ashley Davis2008-09-19T20:46:24Z2008-09-19T20:46:24Z<p><img src="http://www.comparestoreprices.co.uk/images/fl/flair-melissa-&-doug-wooden-abacus.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/1876274/the-model-in-mvvm-business-object-or-something-else/1889757#1889757Comment by Ashley Davis on The model in MVVM: business object or something else?Ashley Davis2009-12-11T23:14:08Z2009-12-11T23:14:08ZBy the way I have used INotifyPropertyChanged on both my Windows Forms and WPF models, and these days I also use ObservableCollection where it makes sense (pre-WPF I had a similar implementation of my own). There is probably a more perfect level of code separation than that, but with perfection comes cost and I use these tools in my data model because I can then bind the UI directly to the model where it makes sense. I would agreed that this may not be a perfect separation of concerns, but I have to make code to deadlines and find that my approach works pretty well in practice. http://stackoverflow.com/questions/1876274/the-model-in-mvvm-business-object-or-something-else/1889757#1889757Comment by Ashley Davis on The model in MVVM: business object or something else?Ashley Davis2009-12-11T23:05:38Z2009-12-11T23:05:38ZOne of the main points that I want to get across is that whether you have a combined ViewModel/Model or two layers of abstraction, or even more layers of abstraction depends on your needs and requirements. There is no easy way to explain how to make that separation. It requires some experience, some ideals as to how to write well structured code but also depends very heavily on how much time you have to attend to it and what your deadlines are, etc. You may have another opinion however, which I imagine is completely valid in your situation. http://stackoverflow.com/questions/1876274/the-model-in-mvvm-business-object-or-something-else/1879231#1879231Comment by Ashley Davis on The model in MVVM: business object or something else?Ashley Davis2009-12-11T16:53:40Z2009-12-11T16:53:40ZI though you had a good answer until the end. I don't really understand why you wouldn't expect INotifyPropertyChanged to be implemented on a model? I often implement this on the model, how else would you expect multiple views to be notified of changes to the core business data? (eg your model could be an Employee class. If Employee.Name is changed for a particular instance you want the View/ViewModel to be notified of that change).http://stackoverflow.com/questions/1156569/xaml-alternativesComment by Ashley Davis on XAML AlternativesAshley Davis2009-12-11T10:19:26Z2009-12-11T10:19:26ZI love WPF and normally wouldn't consider going back to Windows Forms, but I am also in the camp that thinks what the hell were they thinking with XAML! On one hand I can applaud Microsoft for using a standard like XML, but on the hand after using it I wish they had designed a custom UI definition language that had direct support for data binding and all the other 'mini-languages' that you have to use with XAML.http://stackoverflow.com/questions/1593454/how-can-i-databind-to-properties-of-uielement-itemsComment by Ashley Davis on How can I databind to properties of UIElement itemsAshley Davis2009-11-06T10:47:22Z2009-11-06T10:47:22ZYou need a more complete example of your problem before it can be understood enough to provide an answer. Please show where 'Items' comes from and what type of objects it contains, also please show your UIElement subclasses and any relevant styles and data templates.http://stackoverflow.com/questions/323547/binding-converter-and-multibinding/329472#329472Comment by Ashley Davis on Binding Converter and multibindingAshley Davis2009-10-06T09:42:50Z2009-10-06T09:42:50ZThis is not an answer.http://stackoverflow.com/questions/505397/built-in-wpf-ivalueconverters/505469#505469Comment by Ashley Davis on Built-in WPF IValueConvertersAshley Davis2009-10-06T09:08:50Z2009-10-06T09:08:50ZSee this line for more examples: <a href="http://blogs.msdn.com/llobo/archive/2008/05/19/wpf-3-5-sp1-feature-stringformat.aspx" rel="nofollow">blogs.msdn.com/llobo/archive/…</a>http://stackoverflow.com/questions/1361362/why-is-the-scrollviewer-scrollchanged-event-only-raised-after-a-small-delay-follo/1364834#1364834Comment by Ashley Davis on Why is the ScrollViewer ScrollChanged event only raised after a small delay following a call to ScrollToVerticalOffset/ScrollToHorizontalOffset?Ashley Davis2009-09-02T08:21:54Z2009-09-02T08:21:54ZThanks for your answer. I don't really need to have it triggered immediately and it wasn't exactly a problem, I was just curious as to why it works the way it does.http://stackoverflow.com/questions/665719/wpf-animate-listbox-scrollviewer-horizontaloffset/665798#665798Comment by Ashley Davis on WPF - Animate ListBox.ScrollViewer.HorizontalOffset?Ashley Davis2009-08-04T08:39:17Z2009-08-04T08:39:17ZDo you mean ScrollToHorizontalOffset instead of SetHorizontalOffset? http://stackoverflow.com/questions/1207764/how-to-dynamically-populate-a-wpf-grid-using-data-binding/1207844#1207844Comment by Ashley Davis on How to dynamically populate a WPF grid using data binding?Ashley Davis2009-08-03T14:36:44Z2009-08-03T14:36:44ZFor anyone else who is interested here are some links to DataGrid info & tutorials:
<a href="http://windowsclient.net/wpf/wpf35/wpf-35sp1-toolkit-datagrid-feature-walkthrough.aspx" rel="nofollow">windowsclient.net/wpf/wpf35/…</a>.
<a href="http://www.codeproject.com/KB/WPF/WPFDataGrid.aspx" rel="nofollow">codeproject.com/KB/WPF/…</a>
<a href="http://blogs.msdn.com/jaimer/archive/2008/08/13/dabbling-around-the-new-wpf-datagrid-part-1.aspx" rel="nofollow">blogs.msdn.com/jaimer/archive/…</a>
<a href="http://blogs.msdn.com/jaimer/archive/2009/01/20/styling-microsoft-s-wpf-datagrid.aspx" rel="nofollow">blogs.msdn.com/jaimer/archive/…</a>
http://stackoverflow.com/questions/1207764/how-to-dynamically-populate-a-wpf-grid-using-data-binding/1207844#1207844Comment by Ashley Davis on How to dynamically populate a WPF grid using data binding?Ashley Davis2009-07-30T20:33:10Z2009-07-30T20:33:10ZIs there any sample code that demonstrates how to use this?http://stackoverflow.com/questions/1207764/how-to-dynamically-populate-a-wpf-grid-using-data-binding/1207828#1207828Comment by Ashley Davis on How to dynamically populate a WPF grid using data binding?Ashley Davis2009-07-30T20:27:45Z2009-07-30T20:27:45ZI should clarify, I only need the grid for layout, not for selection. So I don't think it does what I need. Thanks anyway.http://stackoverflow.com/questions/698/is-there-an-ide-that-provides-code-completion-for-python/24344#24344Comment by Ashley Davis on Is there an IDE that provides code completion for PythonAshley Davis2009-07-10T14:06:40Z2009-07-10T14:06:40Z+1 because I Like PyScripter.
It does understand doc strings, but only when you are debugging a Python script. It would be nice if the Code Explorer window understood doc strings.http://stackoverflow.com/questions/1086188/is-is-possible-to-return-an-object-or-value-from-a-python-script-to-the-hosting-a/1086213#1086213Comment by Ashley Davis on Is is possible to return an object or value from a Python script to the hosting application?Ashley Davis2009-07-06T09:38:41Z2009-07-06T09:38:41ZHow do you reference the function? The thing I really like in Lua about returning an object from the script is that the object is completely anonymous. You don't have to have some class name or global variable name that both the script and hosting application must agree on.http://stackoverflow.com/questions/1037452/is-there-an-easy-way-to-embed-a-javascript-interpreter-in-a-c-application/1037776#1037776Comment by Ashley Davis on Is there an easy way to embed a Javascript interpreter in a C# application?Ashley Davis2009-06-25T10:41:47Z2009-06-25T10:41:47ZManaged JScript would be great, but it sounds like it is no longer available: <a href="http://stackoverflow.com/questions/775339/where-can-you-download-managed-jscript-for-the-dlr" rel="nofollow" title="where can you download managed jscript for the dlr">stackoverflow.com/questions/775339/…</a>