User Matthew Savage - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T00:37:33Zhttp://stackoverflow.com/feeds/user/18434http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/437808/scripting-engine-host-for-applications1Scripting engine host for applications Matthew Savage2009-01-13T02:47:59Z2009-12-06T13:57:26Z
<p>We have an application which at certain times needs to execute 'tasks' in order to do some work. These tasks currently are just commands (read: dodgy VB scripts) being fired off and then monitoring the process for completion or aborting if it 'times out', however we don't have enough control over the execution.</p>
<p>I would like to integrate a scripting engine or scripting host to enable us to execute the scripts within our application (in another appdomain if possible) and maintain some control over them. I'd envisage that we have scripts which follow an interface similar to:</p>
<pre><code>void Initialize();
void Destroy();
void Execute();
void Abort();
int GetProgress();
</code></pre>
<p>Of course, the above is probably not what would be in the code, however you get the idea... Essentially from our application we could call <code>Initialize</code>, then <code>Execute</code>, poll <code>GetProgress</code> until the return value is 100 or whatever, then at the end either call <code>Destroy</code> or <code>Abort</code> then <code>Destroy</code> if we need to cancel or it goes past the timeout period.</p>
<p>The main thing that the scripts would need to be able to do is AD queries, and interact with the Shell (e.g. Map a network drive, or Disconnect one).</p>
<p>I've looked into a few options to do this - one which I have implemented a prototype of uses Boo as the language and essentially loads the script on the fly to compile and execute as an 'assembly' in memory. I like the way this works but I'm not sure how well it would be accepted not being a 'well known' language etc.</p>
<p>Other options I'm looking at are Python (IronPython), Ruby (IronRuby), PowerShell, and maybe VB, but I'm not sure about the ease of implementation with VB.</p>
<p>Any opinions, comments, suggestions or even resources which might point me in the right direction?</p>
http://stackoverflow.com/questions/1624965/google-maps-stealing-focus-when-map-is-below-the-fold0Google Maps stealing focus when map is below the fold.Matthew Savage2009-10-26T13:58:23Z2009-10-30T10:58:51Z
<p>I have a website which is using Google Maps to display the location of a property. This map is located below the fold on the website.</p>
<p>In IE8, Firefox, Safari etc this is working fine, but in IE7 (at the moment, specifically on Windows XP, can't really test on Vista/7 at the moment) the Maps seem to steal the focus and scrolls the page down.</p>
<p>I am unable to find any documentation which might indicate this is a known issue, or there is a workaround for it, but it would be really nice if I could stop it :) Or, if not, I might have to hack around it...</p>
http://stackoverflow.com/questions/1624965/google-maps-stealing-focus-when-map-is-below-the-fold/1649156#16491560Answer by Matthew Savage for Google Maps stealing focus when map is below the fold.Matthew Savage2009-10-30T10:58:51Z2009-10-30T10:58:51Z<p>So, I actually figured out what the issue was - and it wasn't actually related to Google Maps..</p>
<p>We had a jQuery UI Datepicker hooked up to a separate element, which wasn't actually on that page, but when the init method was being run it was jumping down specifically on that call.</p>
<p>Unusual, no idea why, but thats what it was... so I guess this question should be closed as invalid...</p>
http://stackoverflow.com/questions/1557060/pointers-for-data-returned-by-delegate-methods-in-macruby0Pointers for data returned by delegate methods in MacRubyMatthew Savage2009-10-12T21:33:18Z2009-10-27T19:52:38Z
<p>I'm working on a small MacRuby project, using 0.5b1, which is implementing the delegate methods required for Growl (the app is using Growl for notifications).</p>
<p>I would like to be able to respond to the Growl callbacks when the notification is clicked, however when you register the Growl delegate with <code>::GrowlApplicationBridge.setGrowlDelegate self</code> it asks the delegate for a <code>NSDictionary*</code> with the Growl registration information.</p>
<p>I have tried returning a standard NSDictionary instance, trying to coerce the object into a pointer etc, but every time I seem to get a segmentation fault (I guess this is because I'm passing back an object, not a pointer to the object).</p>
<p>I'm wondering if it is possible to obtain a pointer to the object its self, or using <code>p = Pointer.new("NSDictionary")</code> is it possible to assign the data somehow (using <code>p.assign(dict)</code> results in a type error as it is expecting an Integer).</p>
<p>I guess that the other option is to write an ObjC class to act as the delegate and just hook into that from Ruby, but that somewhat defeats the purpose....</p>
http://stackoverflow.com/questions/1216807/git-rebase-continually-fails-and-requires-manual-merge-intervention2Git rebase continually fails and requires manual merge interventionMatthew Savage2009-08-01T15:22:15Z2009-10-27T09:54:35Z
<p>I am having an issue with rebasing from master on to a 'deploy' branch within one of my repositories.</p>
<p>My repo is setup as follows:</p>
<pre><code>master - of course, the main branch
deploy - a branch created where files like Capfile, deploy.rb etc are created and configured - these changes will NEVER be merged back into Master
</code></pre>
<p>Generally my workflow is:</p>
<ol>
<li>Do development on the master branch... test, smile, commit.</li>
<li>Checkout the <code>deploy</code> branch</li>
<li>Execute <code>git rebase master</code> on the deploy branch - this used to work without a problem</li>
<li>Push to remote and then execute <code>cap deploy</code></li>
<li>Relax</li>
</ol>
<p>The problem I am now having is that when I execute <code>git rebase master</code> on the deploy branch it is coming up with a 3-way merge/manual merge required error (I don't think the error message is really generic enough to post). Git tells me to perform a merge then use <code>git rebase --continue</code> to finish - which never works.</p>
<p>What I have found 'does' work is running <code>git rebase master --interactive</code>, cleaning up the pick list (there is 5 or so repeated 'commits' but with different reference numbers (same message) in this list, so I'll choose one of them) and then manually do the merge. Once I have done this for each commit then I can continue the rebase and its all happy...</p>
<p>Until next time I need to perform a rebase.</p>
<p>So does anyone know what might be happy? The project isn't really 'secret' so if need be I can post messages, logs, branch graphs etc.</p>
<p>Thanks </p>
http://stackoverflow.com/questions/1620729/is-there-a-better-developer-toolbar-for-ie81Is there a better developer toolbar for IE8?Matthew Savage2009-10-25T12:10:24Z2009-10-25T15:03:50Z
<p>I've been pulling my hair out for the last few hours trying to wrestle with the IE8 developer toolbar while working with some styles not playing with IE7 mode properly...</p>
<p>Coming over from Firebug the difference is like... well lets just say its better then nothing.</p>
<p>What I'm wondering is, has there been any.. additions, patches, hacks, updates etc to improve the toolbar at all in IE8? It seems, like with most things associated with the IE line, this was really done as an afterthought and not much effort was put into making it work well... </p>
<p><strong>Update</strong>: So I was, it seems, not specific enough.. here is what is annoying me about the IE offerings:</p>
<ul>
<li>Style support - yeah, it is there, but it just doesn't feel right. It isn't easy to see the inheritance, and if you want to tweak an existing style you have to go into Attributes and add an override to the element.</li>
<li>HTML element location. This just seems a LOT cleaner in Firebug</li>
<li>Scrolling - If you have an element selected in the HTML pane, and you goto scroll in the CSS pane on the right it wont happen until you focus that pane.</li>
</ul>
<p>Most of all its just the small annoyances - I think I've been too spoiled by Firebug, and I want it in IE - but considering the 'closed'-ness of the product it would be hard to get this rectified. To be honest, if I could contribute I would, because it would make my life so much easier - but... yeah.</p>
http://stackoverflow.com/questions/1604409/sharepoint-rich-content-editor-munging-html-added-from-custom-toolbar-button0Sharepoint Rich Content Editor munging HTML added from custom toolbar buttonMatthew Savage2009-10-22T00:30:42Z2009-10-22T09:11:32Z
<p><strong>Summary</strong>: What I'm trying to ask - are we going about this the completely wrong way, or, is there a way to stop Sharepoint, or its rich editor, from munging the HTML which gets added?</p>
<p>I've been 'dropped' into a project revolving around Sharepoint 2007 (trust me, I'm not entirely pleased about it), and one of the things that is sought after is a way to use a rich-content-area for the users to put in 'rich content' and then add certain 'extras' to the content, such as expandable content areas, dialogs etc.</p>
<p>The initial plan of attack was to add in a custom button to the Sharepoint rich content editor toolbar, which we have code to do this, and it works etc, and attach javascript event handlers to certain elements - which also works - to a point.</p>
<p>One thing we are doing is using an <code><a></code> element and a subsequent <code><div></code> to setup a dialog (using jQuery UI to do the magic). When the user clicks the 'insert dialog' button the following is inserted into the editor:</p>
<pre><code><a href="#" class="dialog-trigger">Click me to open the dialog</a>
<div class="dialog-content">
this is some dialog content etc
</div>
</code></pre>
<p>When the page loads we hook onto the .dialog-trigger click method, grab the <code>a</code> element's sibling which is a <code>.dialog-content</code> and set that up as a dialog. This 'works' as long as you don't want to edit anything.</p>
<p>What I have found is that as soon as you start editing the content within the <code>.dialog-content</code> DIV the rich-content editor starts munging the HTML, for example, adding a list adds in the following HTML:</p>
<pre><code><li><div class=dialog-content>Some list item</div></li>
<li><div class=dialog-content>Some list item 2</div></li>
<li><div class=dialog-content>Another list item</div></li>
</code></pre>
<p>As you can imagine, this kind of breaks what we are trying to do.</p>
<p>To summarize what I'm trying to ask - are we going about this the completely wrong way, or, is there a way to stop Sharepoint, or its rich editor, from munging the HTML which gets added?</p>
http://stackoverflow.com/questions/1271788/session-variables-with-cucumber-stories2Session variables with Cucumber StoriesMatthew Savage2009-08-13T12:52:21Z2009-09-07T14:23:22Z
<p>I am working on some Cucumber stories for a 'sign up' application which has a number of steps.</p>
<p>Rather then writing a Huuuuuuuge story to cover all the steps at once, which would be <em>bad</em>, I'd rather work through each action in the controller like a regular user. My problem here is that I am storing the account ID which is created in the first step as a session variable, so when step 2, step 3 etc are visited the existing registration data is loaded.</p>
<p>I'm aware of being able to access <code>controller.session[..]</code> within RSpec specifications however when I try to do this in Cucumber stories it fails with the following error (and, I've also read somewhere this is an anti-pattern etc...):</p>
<p><em>Using controller.session[:whatever] or session[:whatever]</em></p>
<pre><code>You have a nil object when you didn't expect it!
The error occurred while evaluating nil.session (NoMethodError)
</code></pre>
<p><em>Using session(:whatever)</em></p>
<pre><code>wrong number of arguments (1 for 0) (ArgumentError)
</code></pre>
<p>So, it seems accession the session store isn't really possible. What I'm wondering is if it might be possible to (and I guess which would be best..):</p>
<ol>
<li>Mock out the session store etc</li>
<li>Have a method within the controller and stub that out (e.g. <code>get_registration</code> which assigns an instance variable...)</li>
</ol>
<p>I've looked through the RSpec book (well, skimmed) and had a look through WebRat etc, but I haven't really found an answer to my problem...</p>
<p>To clarify a bit more, the signup process is more like a state machine - e.g. the user progresses through four steps before the registration is complete - hence 'logging in' isn't really an option (it breaks the model of how the site works)...</p>
<p>In my spec for the controller I was able to stub out the call to the method which loads the model based on the session var - but I'm not sure if the 'antipattern' line also applies to stubs as well as mocks?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/543790/rails-inline-javascript-and-best-practices4Rails inline Javascript and Best PracticesMatthew Savage2009-02-12T22:32:12Z2009-08-14T12:54:24Z
<p>I'm <em>kinda</em> new to using Rails, and an app I am working on is progressing well - however I'm looking though the generated HTML and noticed things like...</p>
<pre><code><script type="text/javascript">
//<![CDATA[
Droppables.add(...);
//]]>
</script>
</code></pre>
<p>Sprinkled around the HTML, which of course matches up with places where I use:</p>
<pre><code><%= drop_receiving_element ... %>
</code></pre>
<p>What I'm wondering is... is there a better way to do this, or make it cleaner? Some of these script tags are coming from partials so putting them at the 'bottom of the page' doesn't really help in this situation.</p>
<p>Another option may be pushing all these 'tag blocks' into an array then writing them out in the <strong>application.rhtml</strong> file, but its still a bit messy...</p>
http://stackoverflow.com/questions/699492/using-google-gears-with-rails/1210374#12103740Answer by Matthew Savage for Using Google Gears with RailsMatthew Savage2009-07-31T02:23:55Z2009-07-31T02:23:55Z<p>I am looking into this myself - generally the idea is that depending on what you want to make available offline you need to setup on the client side (note, this is untested, and hence unverified - I'm just going from my understanding of what I have read - although I am planning on doing some experimentation in the next few weeks...)</p>
<p>In most situations I would recommend setting up standard restful resources with Rails, and then in your client library do something like the following:</p>
<ol>
<li>When the page is loaded, determine if Gears has loaded, and if your database is available on the client.</li>
<li>Create the database if necessary.</li>
<li>Using the worker process, intialize a call into your RESTful controller to obtain the data you need - and on the return of the data write it into the local database (using the worker process will allow for a 'multi threaded' experience and make sure you dont lock up the client.</li>
<li>Periodically poll the remote server checking for changes in the data - if needed pull down a fresh set and reload the local data cache.</li>
<li>When the client is offline switch to using the local client database.</li>
</ol>
<p>Obviously this is a read-only example, and relies on the existing architecture using AJAX client side calls to populate data in the page etc.</p>
<p>Your means might vary, but I recommend just having a play around - remember you don't <em>have</em> to use Rails plugins etc to do this - you can just roll the client side script by yourself - and you never know, once your done you might be able to refactor your work out into a great little gem or similar...</p>
http://stackoverflow.com/questions/1123402/grouping-fields-in-asp-net-mvc2Grouping fields in ASP.NET MVCMatthew Savage2009-07-14T04:16:16Z2009-07-14T04:28:54Z
<p>I am working on an ASP.NET MVC application which has a model for a business, linked to another model (business trading hours) in a one-to-many relationship.</p>
<p>When creating this entity we have a form where we would like to provide a fixed set of the BusinessTradingHours entities, so I have used something like the following (kind of what I am used to with Rails):</p>
<pre><code><!-- for Monday -->
<select id="TradingHours[1][OpenHours]" name="TradingHours[1][OpenHours]"><option>06:00</option></select>
<select id="TradingHours[1][CloseHours]" name="TradingHours[1][CloseHours]"><option>06:00</option></select>
<input id="TradingHours[1][IsClosed]" name="TradingHours[1][IsClosed]" type="checkbox" value="true" />
<!-- for Tuesday -->
<select id="TradingHours[2][OpenHours]" name="TradingHours[2][OpenHours]"><option>06:00</option></select>
<select id="TradingHours[2][CloseHours]" name="TradingHours[2][CloseHours]"><option>06:00</option></select>
<input id="TradingHours[2][IsClosed]" name="TradingHours[2][IsClosed]" type="checkbox" value="true" />
</code></pre>
<p>From my experience in Rails (which I know is not the same...) I would kind of expect to be able to do something like <code>var tradingHours = Request.Form["TradingHours"];</code> which would give me an Array, which I could then iterate over... is this possible?</p>
<p>Otherwise, how else would this be accomplished?</p>
http://stackoverflow.com/questions/771134/manipulating-a-thread-from-a-different-thread/771140#7711401Answer by Matthew Savage for Manipulating a thread from a different threadMatthew Savage2009-04-21T05:21:36Z2009-04-21T05:21:36Z<p>If you want to kill off a thread you have started yourself I would suggest holding a reference to it, such as a private field. When the application (or thread) is finishing off you can simply call <code>Thread.Abort()</code> on that thread.</p>
<p>For example:</p>
<pre><code>private Thread _myWorker;
void doSomething()
{
_myWorker = new Thread(...);
_myWorker.Start();
}
void killWorker()
{
_myWorker.Abort()
}
</code></pre>
<p>You should note that then you call <code>Abort()</code> on the thread it will raise a ThreadAbortException which you should catch within your worker code and handle to cleanup etc. For more details see <a href="http://msdn.microsoft.com/en-us/library/ty8d3wta.aspx" rel="nofollow">Thread.Abort</a></p>
<p>Additionally when your application shuts down its main thread (the message loop, aka Application.Run) the child threads will also be shut down.</p>
http://stackoverflow.com/questions/680200/application-log-aggregation-management-and-notifications5Application log aggregation, management and notifications...Matthew Savage2009-03-25T04:17:36Z2009-04-15T18:51:43Z
<p>I'm wondering what everyone is using for logging, log management and log aggregation on their systems.</p>
<p>I am working in a company which uses .NET for all it's applications and all systems are Windows based. Currently each application looks after its own logging and notifications of failures (e.g. if app A fails it will send out its own 'call for help' to an admin).</p>
<p>While this current practice works its a bit hacky and hard to manage. I've been trying to find some options for making this work better and I've come up with the following:</p>
<ul>
<li>log4net & Chainsaw (ah, if it works).</li>
<li>Logging via log4net or another framework into a central database & rolling our own management tool.</li>
<li>Logging to the Windows event log and using MOM or System Center Operations Manager to aggregate and manage each of these servers & their apps.</li>
<li>A hand-rolled solution to suck all the log files into one point and work some magic across them.</li>
</ul>
<p>Essentially what we are after is something which can pull log entries all together and allow for some analytics to be run across them, plus use a kind of event based system to, for example, send out a warning email when there have been 30+ warning level logs for an application in the last <code>x</code> minutes.</p>
<p>So is there anything I've missed, or something someone else can suggest?</p>
http://stackoverflow.com/questions/660531/msi-does-not-install-all-files-when-removepreviousversion-is-run1MSI does not install all files when RemovePreviousVersion is runMatthew Savage2009-03-18T23:45:57Z2009-04-14T14:46:08Z
<p>I have a MSI build using WiX version 3.</p>
<p>All previous installers for the product we are deploying worked fine with the configuration specified (that is: if previous version exists, remove, then install the new version) - however, the new MSIs we build don't install all files when it runs through the 'remove first' path.</p>
<p>If we manually remove the existing installation and then run the new version all the files are installed - and when I examine the MSI file in Orca the files and features are shown and seem to be fine.</p>
<p>We have tried running with verbose and extra logging turned on (<code>/l*vx</code>) however all we can see if that the files are not being registered & then installed.</p>
<p>Any thoughts or suggestions? This is driving us up the wall.</p>
http://stackoverflow.com/questions/732400/table-design/732471#7324710Answer by Matthew Savage for Table designMatthew Savage2009-04-09T01:31:55Z2009-04-09T01:31:55Z<p>Are you perhaps normalizing too far?</p>
<p>While you are reducing the cost of data being repeated you are possibly negating it by requiring 3 or 4 joins to get a whole address...</p>
<p>Personally I would stick to:</p>
<p>ADDRESS:</p>
<ul>
<li>ID</li>
<li>Street Address (e.g. 123 Joe Street)</li>
<li>City</li>
<li>State</li>
<li>Postcode (ZIP)</li>
<li>Country (e.g. US or AU)</li>
</ul>
<p>Of course you would have to index on things such as city/state/postcode/country, but it would possibly be a lot quicker then joining on multiple tables.</p>
<p>(Note: I'm not a DBA, so I can't back up my claims, but this is what I use and it works fine)</p>
http://stackoverflow.com/questions/660531/msi-does-not-install-all-files-when-removepreviousversion-is-run/661092#6610920Answer by Matthew Savage for MSI does not install all files when RemovePreviousVersion is runMatthew Savage2009-03-19T04:46:08Z2009-03-19T04:46:08Z<p>OK, well talking to someone else where I am helped me find a solution to the problem.</p>
<p>We added the property <code>REINSTALLMODE</code> and set it to <code>amus</code>. What does this mean?</p>
<p>By default the property is set to <code>omus</code> which means: Reinstall if the file is missing or older, rewrite registry for machine and user hives, reinstall shortcuts. Changing this to <code>amus</code> basically says: Reinstall all files.</p>
<p>So, not 100% sure what the cause was - I suspect there may have been strange locks or something, but setting to <code>amus</code> doesn't being on any adverse effects, so we'll stick with that.</p>
<p>Thanks for the suggestions.</p>
<p>(Also, more details on this property can be found here: <a href="http://msdn.microsoft.com/en-us/library/aa371182%28VS.85%29.aspx" rel="nofollow" title="MSDN: REINSTALLMODE Property">MSDN: REINSTALLMODE Property</a></p>
http://stackoverflow.com/questions/107794/importing-exporting-history-in-team-system/608896#6088960Answer by Matthew Savage for Importing/exporting history in Team SystemMatthew Savage2009-03-04T01:12:32Z2009-03-04T01:12:32Z<p>I don't know if you are still interested, but I just went through this with my current employer (my project was using SVN and they wanted to migrate it into TFS at another site).</p>
<p>These are the following steps I used:</p>
<ol>
<li>Run svndump on your current repo, and take the file to the intended target</li>
<li>Using a svn server (e.g. a local repository) import the file - for this I used <a href="http://www.visualsvn.com/server/download/" rel="nofollow">VisualSVN Server</a>.</li>
<li>Checkout the SVN repository to a local directory (e.g. <code>svn co <url> Proj_SVN</code>)</li>
<li>Run <a href="http://svnbridge.codeplex.com/" rel="nofollow">SvnBridge</a> (from CodePlex) on the same machine</li>
<li>Checkout the TFS repository to a local directory (e.g. <code>svn co http:// localhost:8080/<tfs_server>/<project_repo_path> Proj_TFS</code>)</li>
<li>Using <a href="http://svn2svn.codeplex.com/" rel="nofollow">Svn2Svn</a> (from codeplex) I run the following: <code>svn2svn /s:c:\temp\src\Proj_SVN /d:c:\temp\src\Proj_TFS /r:<start_rev>:<end_rev></code></li>
</ol>
<p>Depending on how many revisions, how much data you have and the speed of your network (e.g. it might be faster to run on the TFS server) it could take from 10 minutes onwards to complete each revision.</p>
<p>Anyway this is what I used and it worked for me (painful process though...) - your means might vary.</p>
http://stackoverflow.com/questions/505611/binary-deserialization-with-different-assembly-version4Binary Deserialization with different assembly versionMatthew Savage2009-02-03T00:33:57Z2009-02-03T20:38:48Z
<p>I have a project which uses BinaryFormatter to serialize a collection of structs with string and bool? datatypes.</p>
<p>The serialization/deserialization works fine, however if I were to change the assembly which does the work it fails to deserialize because of the header in the binary file indicating that it requires <code>Assembly x</code> instead of <code>Assembly y</code> to handle the data.</p>
<p>Is it possible to setup the serialization/deserialization to be assembly agnostic?</p>
http://stackoverflow.com/questions/500141/webcontrols-for-ruby-on-rails1'WebControls' for Ruby on RailsMatthew Savage2009-02-01T03:42:39Z2009-02-02T09:17:11Z
<p>I've recently started working with RoR for some projects and I quite like the framework - however coming from an ASP.NET background I'm quite fond of the idea of being able to purchase & drop in reusable components/control such as those from telerik, without having to 'reinvent'.</p>
<p>I suppose it would be possible to maybe create my own using partials or plugins or similar, but I'm wondering if there is anything out there already, or perhaps alternatives which could be massaged into place, like javascript widgets etc?</p>
http://stackoverflow.com/questions/406133/execute-process-as-normal-user-from-msi-wix-under-different-context/437790#4377900Answer by Matthew Savage for Execute process as normal user from MSI (wix) under different contextMatthew Savage2009-01-13T02:33:32Z2009-01-13T02:33:32Z<p>Unfortunately it would seem this isn't possible - I suppose it might be an option to write an extension for the MSI which does what I need in code some how - although it seems like a lot of work for a little reward.</p>
<p>What we've decided to do is use SMS to send out a chained package - the primary one which executes our application, which first depends on the installer being run.</p>
<p>Hope this helps someone else :)</p>
http://stackoverflow.com/questions/406133/execute-process-as-normal-user-from-msi-wix-under-different-context1Execute process as normal user from MSI (wix) under different contextMatthew Savage2009-01-02T05:48:46Z2009-01-13T02:33:32Z
<p>I'm trying to configure an installer for some software we use within the company.</p>
<p>The installer is pushed out to target machines via SMS, and it performs the following steps:</p>
<ol>
<li>Terminate any currently running instances of the app (the app is a utility, so this isn't an impact on the user).</li>
<li>Remove the previous version.</li>
<li>Install the updated version.</li>
</ol>
<p>What we want it to do is launch the installed executable (as the currently logged in user, not the system account which the SMS job runs as) once step 3 is completed.</p>
<p>I've tried adding a custom action as follows:</p>
<pre><code><CustomAction Id="Relaunch" Impersonate="yes" Return="asyncNoWait" FileKey="AppExeFile" Execute="commit" ExeCommand="acm" />
</code></pre>
<p>And in the <code>InstallExecuteSequence</code> element I have the following:</p>
<pre><code><Custom Action="Relaunch" OnExit="success" />
</code></pre>
<p>However when we try this, either as a SMS job or executing as an administrator nothing happens (e.g. the app isn't relaunched).</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/410579/binding-for-wpf-styles2Binding for WPF StylesMatthew Savage2009-01-04T06:47:53Z2009-01-04T08:45:18Z
<p>I'm trying to create a custom control - a button - which will have multiple styles applied to it depending on the value of a property within the data context.</p>
<p>What I was thinking is using something similar to:</p>
<pre><code><Button Style="{Binding Path=ButtonStyleProperty, Converter={StaticResource styleConverter}}" Text="{Binding Path=TextProp}" />
</code></pre>
<p>And in code... Implement an IValueConverter which does something similar to the code below in the <code>ConvertTo</code> method:</p>
<pre><code>switch(value as ValueEnums)
{
case ValueEnums.Enum1:
FindResource("Enum1ButtonStyle") as Style;
break;
... and so on.
}
</code></pre>
<p>However I'm not entirely sure about how to pull out the style object and even if this is possible at all...</p>
<p>What I am doing in the mean time is handling the <code>DataContextChanged</code> event, then attaching a handler to the <code>PropertyChanged</code> event of the object being bound to the button - then running the switch statement in there.</p>
<p>Its not quite perfect but until I can find a better solution it seems like that is what I'll have to use.</p>
http://stackoverflow.com/questions/373366/c-object-initializers-and-v2-0-compiler-error0C# Object Initializers and v2.0 compiler errorMatthew Savage2008-12-17T01:07:23Z2008-12-30T13:08:06Z
<p>I'm having an issue setting up one of my projects in TeamCity (v4.0), specifically when it comes to using Object Initializers.</p>
<p>The project builds fine normally, however it would seem that TeamCity transforms the build file into something it likes (some MSBuild mutation) and when it comes to compiling the code for a part of the solution it balks when it sees an Object Initializer.</p>
<p>Specifically the errors are:</p>
<pre><code>[11:16:21]: ErrorView.xaml.cs(22, 187): error CS1026: ) expected
[11:16:21]: ErrorView.xaml.cs(22, 208): error CS0116: A namespace does not directly contain members such as fields or methods
[11:16:21]: ErrorView.xaml.cs(27, 16): error CS1518: Expected class, delegate, enum, interface, or struct
[11:16:21]: ErrorView.xaml.cs(35, 16): error CS1518: Expected class, delegate, enum, interface, or struct
[11:16:21]: ErrorView.xaml.cs(46, 91): error CS1031: Type expected
[11:16:21]: ErrorView.xaml.cs(46, 119): error CS0116: A namespace does not directly contain members such as fields or methods
[11:16:21]: ErrorView.xaml.cs(48, 17): error CS1022: Type or namespace definition, or end-of-file expected
</code></pre>
<p>When I look into this further it would seem the problem ties back to the transformation of the build file to TeamCity format using CSC from the v2.0 framework directory.</p>
<p>Is it possible to compile code using object initializers (a .NET 3.0 feature) with the .NET 2.0 compiler (I would assume not, though I may be missing something), and if not, does anyone know a way to force it to use the 3.0 compiler (if one exists) or the 3.5 compiler?</p>
<p>For those interested, the CSC command being executed is:</p>
<pre><code>C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Csc.exe /noconfig /nowarn:1701,1702 /errorreport:prompt /warn:4 /define:DEBUG;TRACE
/reference:..\..\..\build\blah.Logging.dll /reference:..\..\..\build\blah.Presentation.Interfaces.dll
/reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualBasic.dll /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationCore.dll"
/reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationFramework.dll"
/reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationFramework.Luna.dll"
/reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll /reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Design.dll
/reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll /reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll
/reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll
/reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll
/reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll
/reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\UIAutomationProvider.dll"
/reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\WindowsBase.dll" /debug+ /debug:full /filealign:512
/keyfile:..\..\..\resources\blah.snk /optimize- /out:obj\Debug\blah.dll
/resource:obj\Debug\blah.UserInterface.Properties.Resources.resources
/resource:obj\Debug\blah.UserInterface.blah.exe.license /target:library
/win32icon:blah.ico SignalStrengthIndicator.xaml.cs TrayNotifier.xaml.cs ConnectedView.xaml.cs ConnectionProgressView.xaml.cs NetworkPasswordView.xaml.cs
TrayProgress.xaml.cs NetworkConnectionView.xaml.cs ClassFiles\NetworkTypeConverter.cs
ClassFiles\SecurityImageConverter.cs ClassFiles\SecurityTooltipConverter.cs
ClassFiles\SignalStrengthTooltipConverter.cs ClassFiles\SignalVisibilityConverter.cs
ClassFiles\SynchronizedObservableCollection.cs ConnectionOption.xaml.cs
DisconnectionProgressView.xaml.cs ErrorView.xaml.cs ..\..\..\config\assemblyversion.cs
Properties\Resources.Designer.cs Properties\Settings.Designer.cs
</code></pre>
<p>Thanks!</p>
<p>Update: I have partially (read: I'm not happy with it) fixed the problem by changing the build runner from Nant to command runner - this just executed the Nant build file as it was intended without any manipulation, though the feedback level is different. Any other suggestions would be appreciated.</p>
http://stackoverflow.com/questions/399222/i-still-dont-get-delegates/399239#3992395Answer by Matthew Savage for I still don't get DelegatesMatthew Savage2008-12-30T00:46:15Z2008-12-30T00:46:15Z<p>As mentioned by Joel - BeginInvoke() will execute the delegate Asynchronously - and you will need to setup an Async callback to retrieve the return value if the target returns data (using EndInvoke).</p>
<p>The following link is a good article on using Delegates for Async Programming: <a href="http://msdn.microsoft.com/en-us/library/2e08f6yc.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/2e08f6yc.aspx</a></p>
<p>Also (this is in C# - sorry) you can handle the callback using lambda expressions:</p>
<pre><code>Action myAction = () => Console.WriteLine("This is an async call!");
myAction.BeginInvoke(asyncResult => Console.WriteLine("Async Done!"), null);
</code></pre>
http://stackoverflow.com/questions/342543/gui-locking-up-when-using-printdialog-and-printpreviewdialog-in-net/373428#3734281Answer by Matthew Savage for GUI Locking up when using PrintDialog and PrintPreviewDialog in .netMatthew Savage2008-12-17T01:52:30Z2008-12-17T01:52:30Z<p>Another option would be spinning up a new UI thread:</p>
<pre><code>ThreadStart ts = () =>
{
printDocument.Print();
// Start the message loop to prevent the thread from finishing straight away.
System.Windows.Forms.Application.Run();
};
Thread t = new Thread(ts);
t.SetApartmentState(ApartmentState.STA);
t.Start();
</code></pre>
<p>Keep in mind this code isn't tested and may need some tuning (especially the message loop part) - and you might also want to keep in mind you will need to shut down the thread at some time - so perhaps you might want a class to handle the interaction and lifetime management.</p>
http://stackoverflow.com/questions/303916/ioc-and-user-interfaces0IoC and User InterfacesMatthew Savage2008-11-20T00:09:33Z2008-11-20T17:46:15Z
<p>I'm trying to wrap my head around the best way to use IoC within my application for dependency injection, however I have a little issue.</p>
<p>I am using a loose implementation of the MVP pattern with a WPF app. Essentially, a presenter class is instantiated, and a view and task (e.g. IEmployeeView and IEmployeeTask for EmployeePresenter) are injected into the presenter.</p>
<p>I would like to use an IoC container (I'm trying out Unity, though I guess this would also happen with others such as ninject or Structure Map) instead of manually injecting these instances, however if the presenter is created (or resolved from an IoC container) on an async delegate call, or an event thread (e.g. not STA threaded) then creating a new instance of a WPF window throws the following exception:</p>
<blockquote>
<p>The current build operation (build key
Build Key[<em>namespace</em>.Window1, null])
failed: The calling thread must be
STA, because many UI components
require this.</p>
</blockquote>
<p>Now, I know that new window instances etc need to be STA, however is it possible to use an IoC Container to do the dependency injection even when the UI must be created on an STA thread?</p>
<p>From looking at this problem it would seem that the class/type being resolved is instantiated at the resolve time, not when its registered...</p>
http://stackoverflow.com/questions/276906/does-compositewpf-support-multiple-windows-shells1Does CompositeWPF support multiple windows/shells?Matthew Savage2008-11-10T02:24:58Z2008-11-18T17:41:23Z
<p>I'm looking at using CompositeWPF (<a href="http://www.codeplex.com/CompositeWPF" rel="nofollow">http://www.codeplex.com/CompositeWPF</a>) - aka Prism, to build an application I am working on.</p>
<p>The application isn't a traditional LOB application, however it does present data and state information to the user.</p>
<p>One thing which I am unsure of is if CompositeWPF supports more than one Window or Shell. I would like to have my application notify users with a border-less window which appears in the lower RHS of the screen (think MSN notification) but still use the idea of views being injected into the region etc.</p>
<p>In addition to this I would like to be able to react to a user action (e.g. double click on something), hide the main window and present a progress dialog while work is being performed.</p>
<p>So, is this possible?</p>
http://stackoverflow.com/questions/264163/wpf-dispatcher-invoke-hanging3WPF Dispatcher.Invoke 'hanging'Matthew Savage2008-11-05T02:01:54Z2008-11-10T23:58:19Z
<p>I have a somewhat complex WPF application which seems to be 'hanging' or getting stuck in a Wait call when trying to use the dispatcher to invoke a call on the UI thread.</p>
<p>The general process is:</p>
<ol>
<li>Handle the click event on a button</li>
<li>Create a new thread (STA) which: creates a new instance of the presenter and UI, then calls the method <strong>Disconnect</strong></li>
<li>Disconnect then sets a property on the UI called <strong>Name</strong></li>
<li>The setter for Name then uses the following code to set the property:</li>
</ol>
<pre><code>
if(this.Dispatcher.Thread != Thread.CurrentThread)
{
this.Dispatcher.Invoke(DispatcherPriority.Normal, (ThreadStart)delegate{
this.Name = value; // Call same setter, but on the UI thread
});
return;
}
SetValue(nameProperty, value); // I have also tried a member variable and setting the textbox.text property directly.
</code></pre>
<p>My problem is that when the dispatcher <strong>invoke</strong> method is called it seems to hang every single time, and the callstack indicates that its in a sleep, wait or join within the Invoke implementation.</p>
<p>So, is there something I am doing wrong which I am missing, obvious or not, or is there a better way of calling across to the UI thread to set this property (and others)?</p>
<p><strong>Edit:</strong> The solution was to call System.Windows.Threading.Dispatcher.Run() at the end of the thread delegate (e.g. where the work was being performed) - Thanks to all who helped.</p>
http://stackoverflow.com/questions/267215/to-azure-or-not-to-azure/267317#2673171Answer by Matthew Savage for To Azure or Not to Azure?Matthew Savage2008-11-06T00:45:38Z2008-11-06T00:45:38Z<p>I'm still not entirely convinced with Azure yet, the concept is somewhat sound but until we know how much it will cost, the reliability, service guarantees etc I wouldn't quite jump ship to it.</p>
<p>As ARKBAN said, its still a tech preview, so perhaps in a few months you'll be able to re-evaluate and decide then.</p>
<p>If your looking for something to host a .NET based 'service' you could keep a watch on EC2 because they're brining in a Windows Server option (<a href="http://aws.amazon.com/windows/" rel="nofollow">http://aws.amazon.com/windows/</a>) which might be a viable option to having 'scalable' services (however I imagine it would be somewhat more manual then Azure)</p>
http://stackoverflow.com/questions/252309/when-should-i-tell-my-boss-that-im-thinking-about-looking-for-another-job/252636#2526363Answer by Matthew Savage for When should I tell my boss that I'm thinking about looking for another job?Matthew Savage2008-10-31T05:02:39Z2008-10-31T05:02:39Z<p>I wouldn't be concerned about using your boss as a reference. In my experience most places only contact your references <em>after</em> you have interviewed with them and they are:</p>
<ul>
<li>looking to decide which candidate too choose (e.g. you are tied with someone else)</li>
<li>about to give you an offer but would like to verify your abilities etc</li>
<li>are concerned about the salary you are asking and want to make sure you are worth it.</li>
</ul>
<p>For every job I have ever applied for I have provided <strong>References available upon request</strong> in place of contact details.</p>
<p>This has 2 benefits - you know how closely they are looking at your application, and you know when they are about to contact your references.</p>
<p>So, coming back to the original question, don't sweat telling him, use the above advise, if you get offered a position, then talk to him about it.</p>
http://stackoverflow.com/questions/437808/scripting-engine-host-for-applications/1855431#1855431Comment by Matthew Savage on Scripting engine host for applications Matthew Savage2009-12-07T02:16:49Z2009-12-07T02:16:49ZThanks for the suggestion, however due to environment constraints (COE, Windows XP etc) we were unable to use PS, mainly because PS wasn't part of the base OS build and installing that dependency would be a huge pain for the platform guys.
The scripts also were not actually for the UI, they were to be for 'admin' type staff to write tasks in which would then be executed on standard users machines... think logon script, but not...http://stackoverflow.com/questions/1557060/pointers-for-data-returned-by-delegate-methods-in-macruby/1633270#1633270Comment by Matthew Savage on Pointers for data returned by delegate methods in MacRubyMatthew Savage2009-11-06T12:00:01Z2009-11-06T12:00:01ZThis seems promising.. I cant remember if I tried this myself, but from memory I was actually returning a new NSDictionary... I'll have to dig up the code and give it a try... thanks!http://stackoverflow.com/questions/1620729/is-there-a-better-developer-toolbar-for-ie8/1620985#1620985Comment by Matthew Savage on Is there a better developer toolbar for IE8?Matthew Savage2009-10-25T15:16:23Z2009-10-25T15:16:23ZThanks - this, I think, is what I was after (debug bar) - unfortunately it doesn't seem to play nicely with the latest version of IE8 (maybe this is just me, but the source view doesn't get past the HEAD tags...)
Oh well!http://stackoverflow.com/questions/1303671/overriding-rails-mislav-willpaginate-plugin/1325422#1325422Comment by Matthew Savage on Overriding Rails mislav-will_paginate pluginMatthew Savage2009-09-29T13:02:18Z2009-09-29T13:02:18ZWhy not make this a plugin which extends will_paginate, or fork/branch will_paginate to include this support and submit a pull-request? http://stackoverflow.com/questions/1271788/session-variables-with-cucumber-stories/1275231#1275231Comment by Matthew Savage on Session variables with Cucumber StoriesMatthew Savage2009-08-14T10:21:20Z2009-08-14T10:21:20ZThanks for the input... I've updated my question with some more details, but what you have suggested doesn't really help as it would involve adding functionality specifically for the tests, which to me seems like more of an 'anti-pattern' - but, would stubbing out controller methods break this rule?http://stackoverflow.com/questions/1123402/grouping-fields-in-asp-net-mvc/1123419#1123419Comment by Matthew Savage on Grouping fields in ASP.NET MVCMatthew Savage2009-07-14T05:17:29Z2009-07-14T05:17:29ZOMG why didn't I see/remember this... I read Scott's blog like.. religiously... thanks for pointing it out :)http://stackoverflow.com/questions/1123402/grouping-fields-in-asp-net-mvc/1123424#1123424Comment by Matthew Savage on Grouping fields in ASP.NET MVCMatthew Savage2009-07-14T04:30:43Z2009-07-14T04:30:43ZI think your confused with ASP.NET WebForms and ASP.NET MVC (Which is what I am using) - MVC doesn't have the page/control model with code behind like WebForms does...http://stackoverflow.com/questions/771134/manipulating-a-thread-from-a-different-thread/771147#771147Comment by Matthew Savage on Manipulating a thread from a different threadMatthew Savage2009-04-21T06:21:26Z2009-04-21T06:21:26ZThis is quite subjective - if your threads are for a single unit of work then calling Thread.Abort() shouldn't leave it in a dirty state (provided you handle the abort properly). If you have a thread which is then calling out to lot of other methods then it gets messier. Its really a case of looking at what you are doing and determining the best approach.http://stackoverflow.com/questions/660531/msi-does-not-install-all-files-when-removepreviousversion-is-run/747956#747956Comment by Matthew Savage on MSI does not install all files when RemovePreviousVersion is runMatthew Savage2009-04-20T04:52:42Z2009-04-20T04:52:42ZThanks for the additional info :)http://stackoverflow.com/questions/660531/msi-does-not-install-all-files-when-removepreviousversion-is-runComment by Matthew Savage on MSI does not install all files when RemovePreviousVersion is runMatthew Savage2009-03-19T02:51:03Z2009-03-19T02:51:03Z@Rob Sanders - none of the files are locked (from what I can see). Before the uninstall is run a process is kicked off to kill the running app.http://stackoverflow.com/questions/660531/msi-does-not-install-all-files-when-removepreviousversion-is-run/660573#660573Comment by Matthew Savage on MSI does not install all files when RemovePreviousVersion is runMatthew Savage2009-03-19T02:47:02Z2009-03-19T02:47:02ZThanks for the input - Mine is also set to After="InstallInitialize" - so I'm still at a loss for what the cause of this problem is :|http://stackoverflow.com/questions/390564/should-i-learn-rails-or-merb/391619#391619Comment by Matthew Savage on Should I learn Rails or Merb?Matthew Savage2009-02-28T02:57:26Z2009-02-28T02:57:26ZI also recommend looking at Peepcode - and envy casts (though these are a little weird..) - its a pay-for product, but their screen casts are really top notch. http://stackoverflow.com/questions/543790/rails-inline-javascript-and-best-practices/543822#543822Comment by Matthew Savage on Rails inline Javascript and Best PracticesMatthew Savage2009-02-12T22:53:20Z2009-02-12T22:53:20ZI realize this is the best practice in general, but I'm wondering about this from a Rails perspective. A lot of rails apps I have seen make use of these script generators which seem to just output script blocks where ever they are called...http://stackoverflow.com/questions/357076/best-way-to-hide-a-window-from-the-alt-tab-program-switcher/357598#357598Comment by Matthew Savage on Best way to hide a window from the Alt-Tab program switcher?Matthew Savage2009-02-08T01:35:49Z2009-02-08T01:35:49ZWhile this seems unclean, it works :)http://stackoverflow.com/questions/505611/binary-deserialization-with-different-assembly-version/508827#508827Comment by Matthew Savage on Binary Deserialization with different assembly versionMatthew Savage2009-02-05T23:41:13Z2009-02-05T23:41:13ZOne thing you'll need to be aware of is that if you have nested types (e.g. a custom collection of custom objects) you'll need to be loading multiple assemblies... try stepping through the overloaded BindToType method.