User Thomas Bratt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T20:28:29Zhttp://stackoverflow.com/feeds/user/15985http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/13049/whats-the-difference-between-struct-and-class-in-net/171090#1710903Answer by Thomas Bratt for What's the difference between struct and class in .Net?Thomas Bratt2008-10-04T22:07:32Z2009-12-10T15:54:45Z<p>A short summary of each, with differences highlighted in italics:</p>
<p><strong>Classes Only:</strong></p>
<ul>
<li>Can support inheritance</li>
<li>Are reference types and so are always allocated on the heap</li>
</ul>
<p><strong>Structs Only:</strong></p>
<ul>
<li>Cannot support inheritance</li>
<li>Are value types and so are allocated on the stack, unless boxed</li>
</ul>
<p><strong>Both Classes and Structs:</strong></p>
<ul>
<li>Are compound data types typically used to contain a few variables that have some logical relationship</li>
<li>Can contain methods and events</li>
<li>Can support interfaces</li>
</ul>
http://stackoverflow.com/questions/74466/how-do-i-use-an-icon-that-is-a-resource-in-wpf/1870823#18708230Answer by Thomas Bratt for How do I use an icon that is a resource in WPF?Thomas Bratt2009-12-09T00:20:41Z2009-12-09T00:20:41Z<p>A common usage pattern is to have the notify icon the same as the main window's icon. The icon is defined as a PNG file.</p>
<p>To do this, add the image to the project's resources and then use as follows:</p>
<pre><code>var iconHandle = MyNamespace.Properties.Resources.MyImage.GetHicon();
this.notifyIcon.Icon = System.Drawing.Icon.FromHandle(iconHandle);
</code></pre>
<p>In the window XAML:</p>
<pre><code><Window x:Class="MyNamespace.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:local="clr-namespace:Seahorse"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="600"
Icon="images\MyImage.png">
</code></pre>
http://stackoverflow.com/questions/1213059/getting-the-text-of-the-menu-item-that-was-clicked/1870571#18705710Answer by Thomas Bratt for Getting the text of the menu item that was clicked?Thomas Bratt2009-12-08T23:19:09Z2009-12-08T23:19:09Z<p>Some notes that might be helpful when reading the accepted answer by Sk93:</p>
<pre><code>void Handle_RoutedEvent(object sender, RoutedEventArgs e)
</code></pre>
<ul>
<li>sender is the logical element that has defined the event handler.</li>
<li>RoutedEventArgs.source is the logical element that has defined the event handler.</li>
<li>RoutedEventArgs.originalSource is the visual element that the user clicked on. </li>
</ul>
http://stackoverflow.com/questions/1079696/wpf-how-to-find-item-clicked-on-in-menu-handler-method0WPF - How to find item clicked on in menu handler method?Thomas Bratt2009-07-03T14:50:58Z2009-12-08T23:15:29Z
<p>How can the handler method of a WPF menu item determine which item in a ListView was clicked on?</p>
<p><strong>Edit:</strong>
The menu is a context menu which has been set for the ListView. The problem is to find which ListView item has been clicked on when the context menu item is selected. </p>
http://stackoverflow.com/questions/1079696/wpf-how-to-find-item-clicked-on-in-menu-handler-method/1870552#18705520Answer by Thomas Bratt for WPF - How to find item clicked on in menu handler method?Thomas Bratt2009-12-08T23:15:29Z2009-12-08T23:15:29Z<p>Just in case anyone else has this problem, I ended up with something like:</p>
<pre><code>private void ListViewItems_MouseDoubleClick(object sender, MouseButtonEventArgs e)
{
var frameworkElement = e.OriginalSource as FrameworkElement;
var item = frameworkElement.DataContext as MyDataItem;
if(null == item)
{
return;
}
// TODO: Use item here...
}
</code></pre>
http://stackoverflow.com/questions/1094764/studies-showing-time-taken-on-stages-coding-test-maintenance-of-software-prod2Studies showing time taken on stages (coding, test, maintenance) of software product development?Thomas Bratt2009-07-07T20:44:40Z2009-12-06T17:57:48Z
<p>Are there any studies showing time spent on various stages of a product life cycle, especially test? Actual numbers and references would be useful.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered358What is the best comment in source code you have ever encountered? [closed]Thomas Bratt2008-10-08T20:08:07Z2009-12-04T09:27:02Z
<p>What is the best comment in source code you have ever encountered?</p>
http://stackoverflow.com/questions/1388480/how-to-localise-wpf-application-so-that-right-to-left-languages-are-displayed-cor0How to localise WPF application so that right to left languages are displayed correctly?Thomas Bratt2009-09-07T09:39:38Z2009-12-03T11:00:06Z
<p>What steps are required to localise a WPF application so that right to left languages are displayed correctly?</p>
http://stackoverflow.com/questions/1806228/browser-support-of-multipart-responses/1832364#18323641Answer by Thomas Bratt for Browser support of multipart responsesThomas Bratt2009-12-02T11:31:09Z2009-12-02T11:31:09Z<p>In my experience, multipart responses work in Firefox but not in Internet Explorer. This was 2 years ago, using the browsers of the time.</p>
<p>I have had HTTP multipart responses working for a stream of JPEG images. For example, Axis IP cameras use for their motion JPEG stream for Firefox. For Internet explorer, Axis require the use of a plugin.</p>
<p>If Firefox-only support meets your requirements, then I recommend setting the content-length header in each part of the multi-part response. It might help to make the boundary string identical in the original HTTP header and the multi-part response (the '--' is missing in the HTTP header).</p>
http://stackoverflow.com/questions/1829225/how-to-trim-whitespace-from-a-data-bound-xml-element-in-wpf-using-xpath0How to trim whitespace from a data-bound XML element in WPF using XPath?Thomas Bratt2009-12-01T21:57:35Z2009-12-01T22:00:33Z
<p>How can the whitespace at the start and end of the content of an XML element be removed when binding to the element using XPath in WPF?</p>
http://stackoverflow.com/questions/1802127/how-to-run-a-powershell-script-without-displaying-a-window1How to run a PowerShell script without displaying a window?Thomas Bratt2009-11-26T07:45:06Z2009-11-30T14:47:15Z
<p>How is it possible to run a <a href="http://en.wikipedia.org/wiki/Windows%5FPowerShell" rel="nofollow">PowerShell</a> script without displaying a window or any other sign to the user?</p>
<p>In other words, the script should run quietly in the background without any sign to the user.</p>
<p>Extra credit for an answer that does not use third party components :)</p>
http://stackoverflow.com/questions/926779/net-resource-leak-gotchas8.NET Resource Leak GotchasThomas Bratt2009-05-29T16:00:39Z2009-11-26T12:20:48Z
<p>There are several ways that developers can get caught out by unintentional resource leaks in .NET. I thought it would be useful to gather them in one place.</p>
<p>Please add yours with one answer per item, so the best get voted up :)</p>
http://stackoverflow.com/questions/926779/net-resource-leak-gotchas/1803356#18033560Answer by Thomas Bratt for .NET Resource Leak GotchasThomas Bratt2009-11-26T12:15:55Z2009-11-26T12:15:55Z<p>WPF resource dictionary leaks. Some helpful links:</p>
<ul>
<li><a href="http://i-zaak.eu/Lists/Posts/Post.aspx?ID=11" rel="nofollow">WPF Memory Leak, the story of lazily hydrated resources</a></li>
<li><a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/b97a5f83-5394-430e-9a78-9d3a957e3537/" rel="nofollow">DynamicResource\StaticResource cause memory leaks</a></li>
<li><a href="http://social.msdn.microsoft.com/forums/en-US/wpf/thread/88cb33bb-a907-40a9-af3d-7d212b10b4c2" rel="nofollow">Memory leak problem with ResourceDictionary and MergedDictionaries</a></li>
</ul>
http://stackoverflow.com/questions/1802731/what-are-the-hurdles-and-dangers-when-migrating-from-visual-sourcesafe-to-svn/1802850#18028503Answer by Thomas Bratt for What are the hurdles and dangers when migrating from Visual SourceSafe to SVN?Thomas Bratt2009-11-26T10:25:27Z2009-11-26T10:25:27Z<p>We made the same migration a few years ago and were very pleased with the results. Like Pino, I recommend Tortoise SVN. AnkhSVN didn't seem to do work well for us. I don't know of a practical way of migrating the history.</p>
<p>The major problems we encountered were due to the nature of Subversion itself and not with the migration. The problems we encountered were:</p>
<ol>
<li>Learning to work with merging and not exclusive checkouts.</li>
<li>Learning that nothing is ever deleted in Subversion. So adding your installer with prerequisites and then deleting it will not reduce the size of the repository. Our current backup size is 4GB+ compressed.</li>
<li>Backups require a bit of scripting, unlike SourceSafe which was a simple file copy. <em>svnadmin hotcopy</em> worked for us.</li>
<li>We found that 'user branches' where each user has a different branch did not work for us. We now have a single trunk for all users.</li>
<li>It was possible to commit a change without a comment. You can fix this with a pre-commit hook.</li>
<li>Giving up on MS Visual Studio integration. Not as bad as it sounds.</li>
</ol>
http://stackoverflow.com/questions/1675206/how-to-run-a-stored-procedure-every-day-in-sql-server-express-edition4How to run a stored procedure every day in SQL Server Express Edition?Thomas Bratt2009-11-04T17:00:50Z2009-11-26T07:41:41Z
<p>How is it possible to run a stored procedure at a particular time every day in SQL Server Express Edition?</p>
<p>Notes:</p>
<ul>
<li>This is needed to truncate an audit table</li>
<li>An alternative would be to modify the insert query but this is probably less efficient</li>
<li>SQL Server Express Edition does not have the SQL Server Agent</li>
</ul>
<p>Related Questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/487675/how-can-i-schedule-a-daily-backup-with-sql-server-express">How can I schedule a daily backup with SQl Server Express?</a></li>
<li><a href="http://stackoverflow.com/questions/287060/sheduled-run-of-stored-procedure-on-ms-sql-server">Scheduled run of stored procedure on SQL Server</a></li>
</ul>
http://stackoverflow.com/questions/359290/how-to-get-the-fxcop-custom-dictionary-to-work9How to get the FxCop custom dictionary to work?Thomas Bratt2008-12-11T13:13:14Z2009-11-25T12:06:39Z
<p>How is it possible to get the FxCop custom dictionary to work correctly?</p>
<p>I have tried adding words to be recognised to the file 'CustomDictionary.xml', which is kept in the same folder as the FxCop project file. This does not seem to work, as I still get the 'Identifiers should be spelled correctly' FxCop message, even after reloading and re-running FxCop. Using version 1.36.</p>
http://stackoverflow.com/questions/287060/sheduled-run-of-stored-procedure-on-ms-sql-server/1769443#17694431Answer by Thomas Bratt for Sheduled run of stored procedure on MS SQL serverThomas Bratt2009-11-20T09:49:17Z2009-11-20T09:49:17Z<p>If MS SQL Server Express Edition is being used then SQL Server Agent is not available. I found the following worked for all editions:</p>
<pre><code>USE Master
GO
IF EXISTS( SELECT *
FROM sys.objects
WHERE object_id = OBJECT_ID(N'[dbo].[MyBackgroundTask]')
AND type in (N'P', N'PC'))
DROP PROCEDURE [dbo].[MyBackgroundTask]
GO
CREATE PROCEDURE MyBackgroundTask
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- The interval between cleanup attempts
declare @timeToRun nvarchar(50)
set @timeToRun = '03:33:33'
while 1 = 1
begin
waitfor time @timeToRun
begin
execute [MyDatabaseName].[dbo].[MyDatabaseStoredProcedure];
end
end
END
GO
-- Run the procedure when the master database starts.
sp_procoption @ProcName = 'MyBackgroundTask',
@OptionName = 'startup',
@OptionValue = 'on'
GO
</code></pre>
<p>Some notes:</p>
<ul>
<li>It is worth writing an audit entry somewhere so that you can see that the query actually ran.</li>
<li>The server needs rebooting once to ensure that the script runs the first time.</li>
<li>A related question is: <a href="http://stackoverflow.com/questions/1675206/how-to-run-a-stored-procedure-every-day-in-sql-server-express-edition">How to run a stored procedure every day in SQL Server Express Edition?</a></li>
</ul>
http://stackoverflow.com/questions/1675206/how-to-run-a-stored-procedure-every-day-in-sql-server-express-edition/1769429#17694291Answer by Thomas Bratt for How to run a stored procedure every day in SQL Server Express Edition?Thomas Bratt2009-11-20T09:46:08Z2009-11-20T09:46:08Z<p>I found the following mechanism worked for me.</p>
<pre><code>USE Master
GO
IF EXISTS( SELECT *
FROM sys.objects
WHERE object_id = OBJECT_ID(N'[dbo].[MyBackgroundTask]')
AND type in (N'P', N'PC'))
DROP PROCEDURE [dbo].[MyBackgroundTask]
GO
CREATE PROCEDURE MyBackgroundTask
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- The interval between cleanup attempts
declare @timeToRun nvarchar(50)
set @timeToRun = '03:33:33'
while 1 = 1
begin
waitfor time @timeToRun
begin
execute [MyDatabaseName].[dbo].[MyDatabaseStoredProcedure];
end
end
END
GO
-- Run the procedure when the master database starts.
sp_procoption @ProcName = 'MyBackgroundTask',
@OptionName = 'startup',
@OptionValue = 'on'
GO
</code></pre>
<p>Some notes:</p>
<ul>
<li>It is worth writing an audit entry somewhere so that you can see that the query actually ran.</li>
<li>The server needs rebooting once to ensure that the script runs the first time.</li>
</ul>
http://stackoverflow.com/questions/286657/what-is-the-best-way-to-download-all-of-the-wsdl-files-exposed-by-a-wcf-service2What is the best way to download all of the WSDL files exposed by a WCF service?Thomas Bratt2008-11-13T09:41:37Z2009-11-17T19:39:41Z
<p>What is the best way to download all of the WSDL files exposed by a WCF service?</p>
<p>For example, the root WSDL file references the following other WSDL files:</p>
<pre><code><xsd:import schemaLocation="http://localhost:80/?xsd=xsd0" namespace="http://tempuri.com"/>
<xsd:import schemaLocation="http://localhost:80/?xsd=xsd1" namespace="http://tempuri.com"/>
</code></pre>
<p>Ideally it would be possible to automate the download so that every time the WSDL changes it would be easy to distribute the files to a customer or incorporate into a document/SDK.</p>
http://stackoverflow.com/questions/124269/simplest-soap-example-using-javascript1Simplest SOAP example using JavascriptThomas Bratt2008-09-23T22:17:03Z2009-11-08T07:33:52Z
<p>What is the simplest SOAP example using Javascript?</p>
<p>To be as useful as possible, the answer should:</p>
<ul>
<li>Be functional (in other words actually work)</li>
<li>Send at least one parameter that can be set elsewhere in the code</li>
<li>Process at least one result value that can be read elsewhere in the code</li>
<li>Work with most modern browser versions</li>
<li>Be as clear and as short as possible, without using an external library</li>
</ul>
http://stackoverflow.com/questions/1681906/launch-multiple-stored-procedures-to-run-in-the-background-on-sql-server-expres0Launch multiple stored procedures to run 'in the background' on SQL Server Express EditionThomas Bratt2009-11-05T16:43:07Z2009-11-05T22:36:11Z
<p>Is it possible to run multiple stored procedures that run 'in the background'?</p>
<p>The stored procedures <strong>must be launched from a single, master stored procedure</strong>, in the same way that multiple worker threads are spawned. For example:</p>
<pre><code>CREATE PROCEDURE MyLauncher
AS
BEGIN
BEGIN
@EXEC MyBackgroundSP01 -- Runs in parallel to the other 2
@EXEC MyBackgroundSP02 -- Runs in parallel to the other 2
@EXEC MyBackgroundSP03 -- Runs in parallel to the other 2
END
END
</code></pre>
http://stackoverflow.com/questions/1675323/how-to-run-a-stored-procedure-when-sql-server-express-edition-starts1How to run a stored procedure when SQL Server Express Edition starts?Thomas Bratt2009-11-04T17:17:53Z2009-11-04T17:22:22Z
<p>How is it possible to run a stored procedure when SQL Server Express Edition starts?</p>
http://stackoverflow.com/questions/177956/what-is-the-best-way-to-convert-an-int-or-null-to-boolean-value-in-an-sql-query5What is the best way to convert an int or null to boolean value in an SQL query?Thomas Bratt2008-10-07T11:02:21Z2009-11-03T16:49:34Z
<p>What is the best way to convert an int or null to boolean value in an SQL query, such that:</p>
<ul>
<li>Any non-null value is <strong>TRUE</strong> in the results</li>
<li>Any null value is <strong>FALSE</strong> in the results</li>
</ul>
http://stackoverflow.com/questions/105642/connection-timeout-exception-for-a-query-using-ado-net/1651420#16514200Answer by Thomas Bratt for Connection Timeout exception for a query using ADO.NetThomas Bratt2009-10-30T18:05:59Z2009-10-30T18:05:59Z<p>It might be worth trying paging the results back.</p>
http://stackoverflow.com/questions/1488792/timeout-expired-the-timeout-period-elapsed-prior-to/1651408#16514080Answer by Thomas Bratt for Timeout expired. The timeout period elapsed prior to ...Thomas Bratt2009-10-30T18:03:57Z2009-10-30T18:03:57Z<p>If you are using a TCP/IP connection to the database server and you know the port number (it is 1433 by default) then you can check the connectivity with this trick:</p>
<pre><code>telnet 127.0.0.1 1433
</code></pre>
<p>If the connection establishes then you should get a black screen. If not, you get an error message. This should be enough to check your network connection to the server is working correctly.</p>
http://stackoverflow.com/questions/1195829/do-i-have-to-close-a-sqlconnection-before-it-gets-disposed/1651373#16513730Answer by Thomas Bratt for Do I have to Close() a SQLConnection before it gets disposed?Thomas Bratt2009-10-30T17:56:56Z2009-10-30T17:56:56Z<p>The using keyword will close the connection correctly so the extra call to Close is not required.</p>
<p>From the MSDN article on <a href="http://msdn.microsoft.com/en-us/library/8xx3tyca.aspx" rel="nofollow">SQL Server Connection Pooling</a>:</p>
<blockquote>
<p>"We strongly recommend that you always
close the connection when you are
finished using it so that the
connection will be returned to the
pool. You can do this using either the
Close or Dispose methods of the
Connection object, or <strong>by opening all
connections inside a using statement</strong>
in C#"</p>
</blockquote>
<p>The actual implementation of SqlConnection.Dispose using <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">.NET Reflector</a> is as follows:</p>
<pre><code>// System.Data.SqlClient.SqlConnection.Dispose disassemble
protected override void Dispose(bool disposing)
{
if (disposing)
{
this._userConnectionOptions = null;
this._poolGroup = null;
this.Close();
}
this.DisposeMe(disposing);
base.Dispose(disposing);
}
</code></pre>
http://stackoverflow.com/questions/1530506/how-to-localize-string-resource-lookups-from-all-threads-in-an-application2How to localize string resource lookups from all threads in an application?Thomas Bratt2009-10-07T09:25:23Z2009-10-19T10:42:06Z
<p>The recommended best practice is to set the current culture of the application's thread to enable resource look ups to use the correct language.</p>
<p>Unfortunately, this does not set the culture for any other threads. This is especially a problem for thread-pool threads.</p>
<p>The question is: how is it possible to set enable string resource lookups to be correctly localised from thread pool threads with the least amount of extra plumbing code?</p>
<p><hr /></p>
<p>Edit:</p>
<p>The problem is this code which is generated from the string table.</p>
<pre><code>internal static string IDS_MYSTRING {
get {
return ResourceManager.GetString("IDS_MYSTRING", resourceCulture);
}
}
</code></pre>
<p>The 'resourceCulture' in this case is not set correctly for the thread pool thread. I could just call 'ResourceManager.GetString("IDS_MYSTRING", correctCulture);' but that would mean losing the benefits of compile time checking that the string exists.</p>
<p>I'm now wondering whether the fix is to change the string table visibility to public and to set the Culture property of all assemblies enumerated using reflection.</p>
http://stackoverflow.com/questions/1530506/how-to-localize-string-resource-lookups-from-all-threads-in-an-application/1587985#15879850Answer by Thomas Bratt for How to localize string resource lookups from all threads in an application?Thomas Bratt2009-10-19T10:42:06Z2009-10-19T10:42:06Z<p>For anyone attempting this in the future, I've ended up with the following code:</p>
<pre><code>/// <summary>
/// Encapsulates the culture to use for localisation.
/// This class exists so that the culture to use for
/// localisation is defined in one place.
/// Setting the Culture property will change the culture and language
/// used by all assemblies, whether they are loaded before or after
/// the property is changed.
/// </summary>
public class LocalisationCulture
{
private CultureInfo cultureInfo = Thread.CurrentThread.CurrentUICulture;
private static LocalisationCulture instance = new LocalisationCulture();
private List<Assembly> loadedAssemblies = new List<Assembly>();
private static ILog logger = LogManager.GetLogger(typeof(LocalisationCulture));
private object syncRoot = new object();
private LocalisationCulture()
{
AppDomain.CurrentDomain.AssemblyLoad += new AssemblyLoadEventHandler(this.OnAssemblyLoadEvent);
lock(this.syncRoot)
{
foreach(Assembly assembly in AppDomain.CurrentDomain.GetAssemblies())
{
if(LocalisationCulture.IsAssemblyResourceContaining(assembly))
{
this.loadedAssemblies.Add(assembly);
}
}
}
}
/// <summary>
/// The singleton instance of the LocalisationCulture class.
/// </summary>
public static LocalisationCulture Instance
{
get
{
return LocalisationCulture.instance;
}
}
/// <summary>
/// The culture that all loaded assemblies will use for localisation.
/// Setting the Culture property will change the culture and language
/// used by all assemblies, whether they are loaded before or after
/// the property is changed.
/// </summary>
public CultureInfo Culture
{
get
{
return this.cultureInfo;
}
set
{
// Set the current culture to enable resource look ups to
// use the correct language.
Thread.CurrentThread.CurrentUICulture = value;
// Store the culture info so that it can be retrieved
// elsewhere throughout the applications.
this.cultureInfo = value;
// Set the culture to use for string look ups for all loaded assemblies.
this.SetResourceCultureForAllLoadedAssemblies();
}
}
private static bool IsAssemblyResourceContaining(Assembly assembly)
{
Type[] types = assembly.GetTypes();
foreach(Type t in types)
{
if( t.IsClass
&& t.Name == "Resources")
{
return true;
}
}
return false;
}
private void OnAssemblyLoadEvent(object sender, AssemblyLoadEventArgs args)
{
if(!LocalisationCulture.IsAssemblyResourceContaining(args.LoadedAssembly))
{
return;
}
lock(this.syncRoot)
{
this.loadedAssemblies.Add(args.LoadedAssembly);
this.SetResourceCultureForAssembly(args.LoadedAssembly);
}
}
private void SetResourceCultureForAllLoadedAssemblies()
{
lock(this.syncRoot)
{
foreach(Assembly assembly in this.loadedAssemblies)
{
this.SetResourceCultureForAssembly(assembly);
}
}
}
private void SetResourceCultureForAssembly(Assembly assembly)
{
Type[] types = assembly.GetTypes();
foreach(Type t in types)
{
if( t.IsClass
&& t.Name == "Resources")
{
LocalisationCulture.logger.Debug(String.Format( CultureInfo.InvariantCulture,
"Using culture '{0}' for assembly '{1}'",
this.cultureInfo.EnglishName,
assembly.FullName));
PropertyInfo propertyInfo = t.GetProperty( "Culture",
BindingFlags.GetProperty | BindingFlags.Static | BindingFlags.NonPublic);
MethodInfo methodInfo = propertyInfo.GetSetMethod(true);
methodInfo.Invoke( null,
new object[]{this.cultureInfo} );
break;
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/161030/in-net-is-there-a-way-to-enable-assembly-load-tracing/1578820#15788200Answer by Thomas Bratt for In .NET is there a way to enable Assembly.Load tracing? Thomas Bratt2009-10-16T15:30:27Z2009-10-16T15:30:27Z<p>MS Visual Studio has this functionality built in.</p>
<p>Select 'Module Load Messages' from the context menu of the output window in MS Visual Studio and it will display something like:</p>
<pre><code>Loaded 'C:\Windows\assembly\GAC_64\mscorlib\2.0.0.0__b77a5c561934e089\mscorlib.dll'
Loaded 'C:\projects\trunk\bin\Tester.exe', Symbols loaded.
Loaded 'C:\projects\trunk\bin\log4net.dll'
</code></pre>
http://stackoverflow.com/questions/1524340/how-to-get-log4net-to-generate-log-files-when-running-as-non-administrator-user0How to get log4net to generate log files when running as non-administrator user?Thomas Bratt2009-10-06T08:42:20Z2009-10-06T09:01:14Z
<p>A process running as a non-administrator user does not have rights to write to the program files folder. What is the best way to configure log4net to write to a location that a non-administrator user has rights to?</p>
<p>Ideally there would be:</p>
<ul>
<li>A single configuration file or configuration from code would work for all versions of MS Windows supported by .NET.</li>
<li>Support for MS Windows services</li>
<li>Support for log4net version 1.2.0.30714 (we have to use this version)</li>
</ul>
<p>Related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/534877/c-application-cant-read-write-to-files-created-by-administrator-when-run-in-lim">C# Application can’t read/write to files created by administrator when run in limited user account XP</a></li>
</ul>
http://stackoverflow.com/questions/155022/what-is-the-easiest-way-to-find-out-how-much-memory-an-object-uses-in-net/155048#155048Comment by Thomas Bratt on What is the easiest way to find out how much memory an object uses in .NET?Thomas Bratt2009-12-08T23:07:51Z2009-12-08T23:07:51ZIt looks like this is not possible but Mladen's answer is the closest for all its flaws 8)http://stackoverflow.com/questions/1829225/how-to-trim-whitespace-from-a-data-bound-xml-element-in-wpf-using-xpath/1829233#1829233Comment by Thomas Bratt on How to trim whitespace from a data-bound XML element in WPF using XPath?Thomas Bratt2009-12-02T07:49:26Z2009-12-02T07:49:26Znormalize-space() would be fine but I could not seem to get it to work when selecting an element.http://stackoverflow.com/questions/1829225/how-to-trim-whitespace-from-a-data-bound-xml-element-in-wpf-using-xpath/1829233#1829233Comment by Thomas Bratt on How to trim whitespace from a data-bound XML element in WPF using XPath?Thomas Bratt2009-12-01T22:07:40Z2009-12-01T22:07:40ZUsing the XML data from your example:
DisplayMemberBinding="{Binding XPath=foo}"http://stackoverflow.com/questions/1829225/how-to-trim-whitespace-from-a-data-bound-xml-element-in-wpf-using-xpath/1829233#1829233Comment by Thomas Bratt on How to trim whitespace from a data-bound XML element in WPF using XPath?Thomas Bratt2009-12-01T22:02:39Z2009-12-01T22:02:39ZThe problem is that the whitespace is rendered in the GUI using WPF.http://stackoverflow.com/questions/1802731/what-are-the-hurdles-and-dangers-when-migrating-from-visual-sourcesafe-to-svn/1802850#1802850Comment by Thomas Bratt on What are the hurdles and dangers when migrating from Visual SourceSafe to SVN?Thomas Bratt2009-11-26T15:49:48Z2009-11-26T15:49:48ZVisualSVN was not free last time I looked.http://stackoverflow.com/questions/1802127/how-to-run-a-powershell-script-without-displaying-a-windowComment by Thomas Bratt on How to run a PowerShell script without displaying a window?Thomas Bratt2009-11-26T12:21:36Z2009-11-26T12:21:36ZCheckout this question if you are interested in learning:
<a href="http://stackoverflow.com/questions/573623/powershell-vs-unix-shells" rel="nofollow" title="powershell vs unix shells">stackoverflow.com/questions/573623/…</a>http://stackoverflow.com/questions/1802127/how-to-run-a-powershell-script-without-displaying-a-window/1802836#1802836Comment by Thomas Bratt on How to run a PowerShell script without displaying a window?Thomas Bratt2009-11-26T10:32:36Z2009-11-26T10:32:36ZNice tip. I need it for a scheduled task as well :)http://stackoverflow.com/questions/1802731/what-are-the-hurdles-and-dangers-when-migrating-from-visual-sourcesafe-to-svn/1802847#1802847Comment by Thomas Bratt on What are the hurdles and dangers when migrating from Visual SourceSafe to SVN?Thomas Bratt2009-11-26T10:30:35Z2009-11-26T10:30:35ZInteresting comment on branches (which I don't disagree with in any way). We settled on a system with a single 'trunk' branch. This meant we were continuously integrated and used TeamCity to check for build breaks. We only had a maximum of 8 developers though.http://stackoverflow.com/questions/1675206/how-to-run-a-stored-procedure-every-day-in-sql-server-express-edition/1769429#1769429Comment by Thomas Bratt on How to run a stored procedure every day in SQL Server Express Edition?Thomas Bratt2009-11-26T07:40:43Z2009-11-26T07:40:43ZGood point! For our case, the database runs continually as it is a customer system that is run 24x7. I wonder if the simplest thing to do is to run the 'MyDatabaseStoredProcedure' script before the wait? In our case this would work fine but it might not for a different application requirement.http://stackoverflow.com/questions/359290/how-to-get-the-fxcop-custom-dictionary-to-work/726358#726358Comment by Thomas Bratt on How to get the FxCop custom dictionary to work?Thomas Bratt2009-11-26T07:36:09Z2009-11-26T07:36:09ZThanks! I'll test this as soon as I get time.http://stackoverflow.com/questions/359290/how-to-get-the-fxcop-custom-dictionary-to-work/1796513#1796513Comment by Thomas Bratt on How to get the FxCop custom dictionary to work?Thomas Bratt2009-11-26T07:35:36Z2009-11-26T07:35:36ZThanks! I'll test this as soon as I get time.http://stackoverflow.com/questions/454868/handling-dialogs-in-wpf-with-mvvm/840720#840720Comment by Thomas Bratt on Handling Dialogs in WPF with MVVMThomas Bratt2009-11-20T10:11:58Z2009-11-20T10:11:58ZVery nice! Upvoted :)http://stackoverflow.com/questions/1438945/how-to-create-sql-server-express-db-from-sql-server-db/1439025#1439025Comment by Thomas Bratt on How to create SQL Server Express DB from SQL Server DBThomas Bratt2009-11-20T10:01:49Z2009-11-20T10:01:49ZThis procedure will not restore the users and logins (including their passwords). If you need to do this then you will need a script to export the logins in encrypted format and restore them at the other end.http://stackoverflow.com/questions/1675206/how-to-run-a-stored-procedure-every-day-in-sql-server-express-edition/1675276#1675276Comment by Thomas Bratt on How to run a stored procedure every day in SQL Server Express Edition?Thomas Bratt2009-11-20T09:46:49Z2009-11-20T09:46:49Zsp_procoption will allow a stored procedure to run automatically.http://stackoverflow.com/questions/1681906/launch-multiple-stored-procedures-to-run-in-the-background-on-sql-server-expres/1681925#1681925Comment by Thomas Bratt on Launch multiple stored procedures to run 'in the background' on SQL Server Express EditionThomas Bratt2009-11-05T16:58:06Z2009-11-05T16:58:06ZSQL Server is calling the procedure on startup. I can always work around this by getting SQL Server to call the procedures individually but I thought I would check to see if there was a more elegant way.
I have a feeling I'm trying to do something that would break the ACID principles for transactions 8)