User Geir-Tore Lindsve - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T19:26:33Zhttp://stackoverflow.com/feeds/user/4582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/48278/how-to-print-css-applied-background-images-with-the-winforms-webbrowser-control1How to print css applied background images with the winforms webbrowser controlGeir-Tore Lindsve2008-09-07T09:51:09Z2009-11-19T19:22:32Z
<p>I am using the webbrowser control in winforms and discovered now that background images which I apply with css are not included in the printouts.</p>
<p>Is there a way to make the webbrowser print the background of the displayed document too?</p>
<p>Edit:
Since I wanted to do this programatically, I opted for this solution:</p>
<pre><code>using Microsoft.Win32;
...
RegistryKey regKey = Registry.CurrentUser
.OpenSubKey("Software")
.OpenSubKey("Microsoft")
.OpenSubKey("Internet Explorer")
.OpenSubKey("Main");
//Get the current setting so that we can revert it after printjob
var defaultValue = regKey.GetValue("Print_Background");
regKey.SetValue("Print_Background", "yes");
//Do the printing
//Revert the registry key to the original value
regKey.SetValue("Print_Background", defaultValue);
</code></pre>
<p>Another way to handle this might be to just read the value, and notify the user to adjust this himself before printing. I have to agree that tweaking with the registry like this is not a good practice, so I am open for any suggestions.</p>
<p>Thanks for all your feedback</p>
http://stackoverflow.com/questions/754935/convert-an-mac-os-x-binary-formatted-plist-to-readable-format-in-c1Convert an Mac OS X binary formatted plist to readable format in C#Geir-Tore Lindsve2009-04-16T06:13:18Z2009-09-15T00:20:33Z
<p>Does anyone know if/how I can convert a binary formatted Mac OS X plist file to a plain XML string in C#?</p>
<p>I know there are some plist editors for Windows available that says they support binary formatted plist files, but I need to do this inline in my own application.</p>
http://stackoverflow.com/questions/847581/how-to-get-dynamic-intervals-in-dundas-microsoft-chart-controls-for-winforms0How to get dynamic intervals in Dundas / Microsoft Chart Controls for WinForms?Geir-Tore Lindsve2009-05-11T10:43:57Z2009-05-11T10:43:57Z
<p>Hi,</p>
<p>I'm using the Microsoft Chart Controls for .NET 3.5, and struggles with getting the chart control to support window/control resizing.</p>
<p>I have graphs where the X value is dates, and want the chart to display the maximum available of intervals/labels on the chart axis when I resize the window.</p>
<p>The closes I've come is to call this from the PrePaint event:</p>
<pre><code>double interval = chart.Series[0].Points.Count / ((double)chart.Width / 90);
foreach (var area in chart.ChartAreas.Where(ca => ca.Visible))
{
area.AxisX.Interval = interval;
}
</code></pre>
<p>This makes the intervals and labels fit perfectly along the X axis, but the dates are not shown correctly. This first label seems to be right (some date in 2008), but the rest of the labels along the axis are displayed as some date in 1900 instead.</p>
<p>Anyone know the preferred way of doing this?</p>
http://stackoverflow.com/questions/733638/using-microsoft-chart-controls-for-net-3-5-for-winforms-how-can-i-mark-certai1Using "Microsoft Chart Controls for .NET 3.5" for WinForms, how can I mark certain dates with a grid mark and label?Geir-Tore Lindsve2009-04-09T10:25:56Z2009-05-11T10:36:06Z
<p>I'm using the Microsoft Chart Controls, and displays data with dates along the X axis and want to have a grid line with a different color on some dates. </p>
<p>Let's say I display data for one week with 7 values along the X-axis:</p>
<p>05.04.09 06.04.09 07.04.09 08.04.09 09.04.09 10.04.09 11.04.09</p>
<p>In addition I have a collection of DateTimes and names for some events, where one is on 07.04.09 and another is on 10.04.09. I then want to have a vertical grid line drawn on each of these dates and a label added with the event name.</p>
<p>I just can't figure out how the heck I can achieve this. Any help appreciated.</p>
http://stackoverflow.com/questions/733638/using-microsoft-chart-controls-for-net-3-5-for-winforms-how-can-i-mark-certai/847546#8475460Answer by Geir-Tore Lindsve for Using "Microsoft Chart Controls for .NET 3.5" for WinForms, how can I mark certain dates with a grid mark and label?Geir-Tore Lindsve2009-05-11T10:36:06Z2009-05-11T10:36:06Z<p>I solved this by subscribing to the PostPaint event. In the event handler I simply draw the lines myself and add the labels on top of these vertical lines.</p>
http://stackoverflow.com/questions/796155/adjusting-the-number-of-x-intervals-in-microsoft-chart-controls0Adjusting the number of X intervals in Microsoft Chart ControlsGeir-Tore Lindsve2009-04-28T03:55:45Z2009-04-28T05:39:12Z
<p>I'm using the Microsoft Chart Controls and databinds it like this:</p>
<pre><code>chart1.Series["Default"].Points.DataBindXY(events.Dates, events.Values);
//where
// events.Dates is IList<DateTime>
// events.Values is Double
</code></pre>
<p>I'm having some issues getting the chart/chartarea to display a reasonable amount of intervals though. It works fine on Auto as long as I don't explicitly set the min/max values for the X-axis, but the number of intervals seems to be the same as number of Dates when setting min/max as:</p>
<pre><code>chart1.ChartAreas["Default"].AxisX.Minimum = events.Dates.FirstOrDefault().ToOADate();
chart1.ChartAreas["Default"].AxisX.Maximum = events.Dates.LastOrDefault().ToOADate();
</code></pre>
<p>I need to set the min/max values since it seems like they are not automatically set correctly as the are reported way wrong during PostPaint and that makes it impossible to find the right position along the X-axis by using:</p>
<pre><code>float posX = (float) chart1.ChartAreas["Default"].AxisX.ValueToPixelPosition(dataPoint.XValue);
</code></pre>
<p>Any ideas on how to correctly set the amount of intervals along the X-axis (or even, how to correctly get the pixelposition without setting max/min values) are very appreciated.</p>
<p><strong>EDIT:</strong> Seems I got this wrong. My X-axis is XValueIndexed and thus the X values are indexes instead of the actual values and I have to tune the PostPaint event to cope with this instead of the actual values.</p>
http://stackoverflow.com/questions/746517/case-insensitive-sort-ordering-in-nhibernate/749053#7490530Answer by Geir-Tore Lindsve for Case-insensitive sort ordering in NHibernateGeir-Tore Lindsve2009-04-14T19:38:44Z2009-04-14T19:38:44Z<p>As I know the responses to my query are always fairly small, I ended up querying the data as normal and sorting them afterwards using Linq. It works, so why bother tweaking NHibernate ;) (Using SQLite, btw)</p>
http://stackoverflow.com/questions/746517/case-insensitive-sort-ordering-in-nhibernate0Case-insensitive sort ordering in NHibernateGeir-Tore Lindsve2009-04-14T06:23:40Z2009-04-14T19:38:44Z
<p>Consider the following criteria query:</p>
<p>var x = SomeCriteria.AddOrder(new Order("Name", true)).List();</p>
<p>This will order the result set by the Name property, but case sensitive:</p>
<pre><code>"A1"
"B1"
"a2"
</code></pre>
<p>Any ideas how to add the order case insensitive so result "a2" will end up before "B1"?</p>
http://stackoverflow.com/questions/733638/using-microsoft-chart-controls-for-net-3-5-for-winforms-how-can-i-mark-certai/734043#7340430Answer by Geir-Tore Lindsve for Using "Microsoft Chart Controls for .NET 3.5" for WinForms, how can I mark certain dates with a grid mark and label?Geir-Tore Lindsve2009-04-09T12:43:19Z2009-04-09T12:43:19Z<p>So far I've managed to get it implemented by using CustomLabels on the secondary X axis, and have the tick marks on that axis drawn with the color I want. The main issue now is to get both X axes synchronized so that the CustomLabels ends up where I want them as they currently ends up a bit scattered around.</p>
http://stackoverflow.com/questions/154411/how-do-i-get-team-build-to-run-mbunit-tests0How do I get Team Build to run MbUnit tests?Geir-Tore Lindsve2008-09-30T18:47:30Z2009-04-02T01:17:30Z
<p>I am having trouble getting Team Build to execute my MbUnit unit tests. I have tried to edit TFSBuild.proj and added the following parts:</p>
<pre><code><Project ...>
<UsingTask TaskName="MbUnit.MSBuild.Tasks.MbUnit" AssemblyFile="path_to_MbUnit.MSBuild.Tasks.dll" />
...
...
<ItemGroup>
<TestAssemblies Include="$(OutDir)\Project1.dll" />
<TestAssemblies Include="$(OutDir)\Project2.dll" />
</ItemGroup>
<Target Name="Tests">
<MbUnit
Assemblies="@(TestAssemblies)"
ReportTypes="html"
ReportFileNameFormat="buildreport{0}{1}"
ReportOutputDirectory="." />
</Target>
...
</Project>
</code></pre>
<p>But I have yet to get the tests to run.</p>
http://stackoverflow.com/questions/675137/best-way-to-databind-a-group-of-radiobuttons-in-winforms3Best way to databind a group of radiobuttons in WinFormsGeir-Tore Lindsve2009-03-23T20:37:25Z2009-03-25T02:06:18Z
<p>I'm currently working on databinding some of my existing Windows Forms, and I've ran into an issue figuring out the proper way of databinding a group of radiobutton controls within a group box.</p>
<p>My business object has an integer property which I want to databind against 4 radiobuttons (where each of them represents the values 0 - 3).</p>
<p>I'm currently binding against a presenter object which works as the binder between the form and the business object, and the way I've done it now is to have 4 separate properties which each binds against each of these values (I do use INotifyPropertyChanged, but not including that here):</p>
<pre><code>Private int _propValue;
Public bool PropIsValue0
{
get { return _propValue == 0; }
set
{
if (value)
_propValue = 0;
}
}
Public bool PropIsValue1 { // As above, but with value == 1 }
Public bool PropIsValue2 { // As above, but with value == 2 }
Public bool PropIsValue3 { // As above, but with value == 3 }
</code></pre>
<p>And I then bind each of the radiobuttons to their respective property as above.</p>
<p>This does not seem right to me, so any advice are highly appreciated.</p>
http://stackoverflow.com/questions/464834/is-it-possible-to-edit-files-during-a-team-build1Is it possible to edit files during a Team Build?Geir-Tore Lindsve2009-01-21T11:01:41Z2009-03-10T04:00:21Z
<p>I'm looking for a way to edit a configuration file (web.config in an asp.net project) in a Team Build.</p>
<p>Specifically I'm looking at either uncommenting or adding identiy impersonate in the config file before copying the built web application to its destination.</p>
<p>I know that it's possible to have multiple config files and copy one over the other (we're using this approach to have different configurations for development, production, demo, etc), but in this case it would be nice to keep the configuration in a single file since the only change here is whether or not identity impersonate should be false or true.</p>
<p>I've been googling for a while now without finding any solution to this, but maybe there are someone here which could either help me figure out how or simply state that it's not possible. Any ideas?</p>
http://stackoverflow.com/questions/601320/winforms-data-binding-bind-to-objects-in-a-list2WinForms data binding - Bind to objects in a listGeir-Tore Lindsve2009-03-02T05:05:31Z2009-03-02T07:20:04Z
<p>I need some help/guidance on WinForms data binding and I can't seem to get Google to help me with this one.</p>
<p>Here is my scenario. Consider the following classes which is similar to what I need:</p>
<pre><code>public class Car
{
public string Name { get; set; }
public List<Tire> Tires { get; set; }
}
public class Tire
{
public double Pressure { get; set; }
}
</code></pre>
<p>My instances of this will be an object of class Car with a List with four Tire objects. Note that I will always have a known number of objects in the list here.</p>
<p>Now I want to data bind this to a Form containing five textboxes. One textbox with the name of the car and one textbox with each of the tires pressures.</p>
<p>Any idea on how to make this work? The designer in VS does not seem to allow me to set this up by assigning to list indexes like Tires[0].Pressure.</p>
<p>My current solution is to bind to a "BindableCar" which would be like:</p>
<pre><code>public class BindableCar
{
private Car _car;
public BindableCar(Car car)
{
_car = car;
}
public string Name
{
get { return _car.Name; }
set { _car.Name = value; }
}
public double Tire1Pressure
{
get { return _car.Tires[0].Pressure; }
set { _car.Tires[0].Pressure = value; }
}
public double Tire2Pressure
{
get { return _car.Tires[1].Pressure; }
set { _car.Tires[1].Pressure = value; }
}
public double Tire3Pressure
{
get { return _car.Tires[2].Pressure; }
set { _car.Tires[2].Pressure = value; }
}
public double Tire4Pressure
{
get { return _car.Tires[3].Pressure; }
set { _car.Tires[3].Pressure = value; }
}
}
</code></pre>
<p>but this becomes really ugly when my lists contains 20 instead of 4 objects, and for each of those objects I want to bind against 6 properties. That makes a huge "BindableObject"!</p>
http://stackoverflow.com/questions/490753/are-there-any-other-bug-issue-trackers-than-tfs-itself-that-integrates-with-tfs-s0Are there any other bug/issue trackers than TFS itself that integrates with TFS SCM?Geir-Tore Lindsve2009-01-29T07:18:09Z2009-01-30T21:17:05Z
<p>We currently use BugZilla for bug/issue tracking, but are looking for other solutions which hopefully fits us better.</p>
<p>One of the features we really would like is integration with both SVN and TFS, as we use both internally (java folks use SVN, .NET folks use TFS), but I have yet to find any who does both. Many do integrate with SVN, but I haven't found any but TFS itself that integrates with TFS SCM. Are there any other at all?</p>
<p>EDIT: Thanks to both Martin and gregmac for your responses. I'll take this information with me in our further investigation in what to do.</p>
<p>(If I could, I would set both your answers as THE answer to my question, but gave that one to gregmac for having a little less rep than Martin and that SvnBridge might let us keep TFS source control ;)</p>
http://stackoverflow.com/questions/215457/display-wpf-modal-window-dialog-panel-the-same-way-as-a-nswindow-can-be-displayed0Display WPF modal window/dialog/panel the same way as a NSWindow can be displayed like a sheet in CocoaGeir-Tore Lindsve2008-10-18T19:15:54Z2009-01-12T06:30:10Z
<p>I am looking for a way to display a modal window in WPF the same way as a window in Cocoa can be displayed as a sheet, i.e. it slides down from the titlebar in front of the main parent window.</p>
<p>My guess is that this would be accomplished by having the modal window as a user control which is loaded into a panel when displayed, and that this panel is the one which would be animated somehow from the titlebar.</p>
<p>Any ideas on how to do this?</p>
<p><em>P.S: <a href="http://cocoadevcentral.com/articles/000014.php" rel="nofollow">Here</a> is a brief description of the NSWindow/sheet in case you don't what it is</em>.</p>
http://stackoverflow.com/questions/45267/how-do-i-make-autocompleteextender-render-above-select-controls-in-ie60How do I make AutoCompleteExtender render above select controls in IE6Geir-Tore Lindsve2008-09-05T05:24:55Z2008-12-03T15:33:39Z
<p>When an AutoCompleteExtender is displayed in IE6 it seems to ignore z-index and renders below any select controls (like dropdownlists) in IE6.</p>
<pre><code><asp:TextBox ID="TextBox1" runat="server" />
<cc1:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server"
TargetControlID="TextBox1" EnableCaching="true" CompletionSetCount="5"
FirstRowSelected="true" ServicePath="~/Services/Service1.asmx" ServiceMethod="GetSuggestion" />
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Text="Item 1" Value="0" />
<asp:ListItem Text="Item 2" Value="1" />
</asp:DropDownList>
</code></pre>
<p>How do I make it render above dropdownlists?</p>
http://stackoverflow.com/questions/215457/display-wpf-modal-window-dialog-panel-the-same-way-as-a-nswindow-can-be-displayed/258037#2580370Answer by Geir-Tore Lindsve for Display WPF modal window/dialog/panel the same way as a NSWindow can be displayed like a sheet in CocoaGeir-Tore Lindsve2008-11-03T06:37:48Z2008-11-03T06:37:48Z<p>Thanks for the answers guys.</p>
<p>My main objective for this was to have a shared window for the two windows, but I do not want to make it break any expected UX either so I'll take your answers into consideration and try to make up another idea for this.</p>
http://stackoverflow.com/questions/186544/identity-after-insert-statement-always-returns-0/186603#1866030Answer by Geir-Tore Lindsve for @@IDENTITY after INSERT statement always returns 0Geir-Tore Lindsve2008-10-09T10:00:25Z2008-10-09T10:00:25Z<p>Check your database settings. I had a similar problem a while ago and discovered that the SQL Server connection setting 'no count' was enabled.</p>
<p>In SQL Server Management Studio, you can find this by right-clicking the server in the Object Explorer, select Properties and then navigate to the Connections page. Look at the settings for "Default connection options"</p>
http://stackoverflow.com/questions/154411/how-do-i-get-team-build-to-run-mbunit-tests/157129#1571290Answer by Geir-Tore Lindsve for How do I get Team Build to run MbUnit tests?Geir-Tore Lindsve2008-10-01T11:06:38Z2008-10-01T11:51:13Z<p>Above suggestion didn't help me a lot, but I found some documentation for Team Build and adjusted my build script to override the AfterCompile target:</p>
<p><em>(EDIT: Now that I have a better understanding of Team Build, I have added some more to the test runner. It will now update the Build Explorer/Build monitor with build steps with details about the test run)</em></p>
<pre><code><Project ...>
<UsingTask TaskName="MbUnit.MSBuild.Tasks.MbUnit" AssemblyFile="path_to_MbUnit.MSBuild.Tasks.dll" />
...
...
<Target Name="AfterCompile">
<ItemGroup>
<TestAssemblies Include="$(OutDir)\Project1.dll" />
<TestAssemblies Include="$(OutDir)\Project2.dll" />
</ItemGroup>
<BuildStep
TeamFoundationServerUrl="$(TeamFoundationServerUrl)"
BuildUri="$(BuildUri)"
Message="Running tests (cross your fingers)...">
<Output TaskParameter="Id" PropertyName="StepId" />
</BuildStep>
<MbUnit
Assemblies="@(TestAssemblies)"
ReportTypes="html"
ReportFileNameFormat="buildreport{0}{1}"
ReportOutputDirectory="." />
<BuildStep
TeamFoundationServerUrl="$(TeamFoundationServerUrl)"
BuildUri="$(BuildUri)"
Id="$(StepId)"
Message="Yay! All tests succeded!"
Status="Succeeded" />
<OnError ExecuteTargets="MarkBuildStepAsFailed" />
</Target>
<Target Name="MarkBuildStepAsFailed">
<BuildStep
TeamFoundationServerUrl="$(TeamFoundationServerUrl)"
BuildUri="$(BuildUri)"
Id="$(StepId)"
Message="Oh no! Some tests have failed. See test report in drop folder for details."
Status="Failed" />
</Target>
...
</Project>
</code></pre>
http://stackoverflow.com/questions/145951/what-is-the-first-thing-you-do-when-you-install-visual-studio/146018#1460180Answer by Geir-Tore Lindsve for What is the first thing you do when you install Visual Studio?Geir-Tore Lindsve2008-09-28T14:53:34Z2008-09-28T14:53:34Z<ul>
<li>Enable line numbers in the source editor</li>
<li>Install ReSharper</li>
<li>Install GhostDoc</li>
<li>Change coloring scheme to bright-on-dark and change font to Consolas</li>
<li>Hide the navigation drop-downs since navigation with R# is much faster</li>
</ul>
http://stackoverflow.com/questions/116188/how-do-i-select-the-count-of-an-nhibernate-subquerys-results/117336#1173361Answer by Geir-Tore Lindsve for How do I select the Count(*) of an nHibernate Subquery's resultsGeir-Tore Lindsve2008-09-22T20:19:23Z2008-09-22T20:19:23Z<p>Here is a draft of how I do it:</p>
<p>Query:</p>
<pre><code>public IList GetOrders(int pageindex, int pagesize)
{
IList results = session.CreateMultiQuery()
.Add(session.CreateQuery("from Orders o").SetFirstResult(pageindex).SetMaxResults(pagesize))
.Add(session.CreateQuery("select count(*) from Orders o"))
.List();
return results;
}
</code></pre>
<p>ObjectDataSource:</p>
<pre><code>[DataObjectMethod(DataObjectMethodType.Select)]
public DataTable GetOrders(int startRowIndex, int maximumRows)
{
IList result = dao.GetOrders(startRowIndex, maximumRows);
_count = Convert.ToInt32(((IList)result[1])[0]);
return DataTableFromIList((IList)result[0]); //Basically creates a DataTable from the IList of Orders
}
</code></pre>
http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/106266#10626618Answer by Geir-Tore Lindsve for What's your favorite "programmer" cartoon?Geir-Tore Lindsve2008-09-19T22:57:10Z2008-09-21T19:22:42Z<p><img src="http://contikistrip.kjempekjekt.com/images/contikistrip3.png" alt="alt text" /></p>
http://stackoverflow.com/questions/105642/connection-timeout-exception-for-a-query-using-ado-net/106123#1061230Answer by Geir-Tore Lindsve for Connection Timeout exception for a query using ADO.NetGeir-Tore Lindsve2008-09-19T22:24:31Z2008-09-19T22:24:31Z<p>I tend to dislike increasing the connection/command timeout since in my mind that would be a matter of taking care of the symptom, not the problem</p>
http://stackoverflow.com/questions/105642/connection-timeout-exception-for-a-query-using-ado-net/106116#1061161Answer by Geir-Tore Lindsve for Connection Timeout exception for a query using ADO.NetGeir-Tore Lindsve2008-09-19T22:23:04Z2008-09-19T22:23:04Z<p>We recently had a similar issue on a SQL Server 2000 database.</p>
<p>During your query, run this query on your master database on the db server and see if there are any locks you should troubleshoot:</p>
<pre><code>select
spid,
db_name(sp.dbid) as DBname,
blocked as BlockedBy,
waittime as WaitInMs,
lastwaittype,
waitresource,
cpu,
physical_io,
memusage,
loginame,
login_time,
last_batch,
hostname,
sql_handle
from sysprocesses sp
where (waittype > 0 and spid > 49) or spid in (select blocked from sysprocesses where blocked > 0)
</code></pre>
<p>SQL Server Management Studio 2008 also contains a very cool activity monitor which lets you see the health of your database during your query.</p>
<p>In our case, it was a networkio lock which kept the database busy. It was some legacy VB code which didn't disconnect its result set quick enough.</p>
http://stackoverflow.com/questions/105932/how-to-record-window-position-in-winforms-application-settings/106020#1060200Answer by Geir-Tore Lindsve for How to record window position in WinForms application settingsGeir-Tore Lindsve2008-09-19T22:04:05Z2008-09-19T22:04:05Z<p>Here is an example of a few I use myself. It only takes into consideration the primary monitor, so it might be better to handle it differently if used on multiple monitors.</p>
<pre><code>Size size;
int x;
int y;
if (WindowState.Equals(FormWindowState.Normal))
{
size = Size;
if (Location.X + size.Width > Screen.PrimaryScreen.Bounds.Width)
x = Screen.PrimaryScreen.Bounds.Width - size.Width;
else
x = Location.X;
if (Location.Y + Size.Height > Screen.PrimaryScreen.Bounds.Height)
y = Screen.PrimaryScreen.Bounds.Height - size.Height;
else
y = Location.Y;
}
else
{
size = RestoreBounds.Size;
x = (Screen.PrimaryScreen.Bounds.Width - size.Width)/2;
y = (Screen.PrimaryScreen.Bounds.Height - size.Height)/2;
}
Properties.Settings.Position.AsPoint = new Point(x, y); // Property setting is type of Point
Properties.Settings.Size.AsSize = size; // Property setting is type of Size
Properties.Settings.SplitterDistance.Value = splitContainer1.SplitterDistance; // Property setting is type of int
Properties.Settings.IsMaximized = WindowState == FormWindowState.Maximized; // Property setting is type of bool
Properties.Settings.DropDownSelection = DropDown1.SelectedValue;
Properties.Settings.Save();
</code></pre>
http://stackoverflow.com/questions/105778/what-is-the-ultimate-program-to-make-a-drawing-of-a-database-model/105948#1059481Answer by Geir-Tore Lindsve for What is the ultimate program to make a drawing of a database model?Geir-Tore Lindsve2008-09-19T21:51:44Z2008-09-19T21:51:44Z<p>Brainstorm/sketch the database on paper/whiteboard first, and then go with a diagram tool.</p>
<p>Which tool depends on your target database. We use SQL Server and thus the designer in SQL Server Management Studio works great for us, since we create the database itself at the same time.</p>
http://stackoverflow.com/questions/99792/visual-studio-color-settings-for-better-eye/99915#999150Answer by Geir-Tore Lindsve for Visual Studio color settings for better eyeGeir-Tore Lindsve2008-09-19T05:36:50Z2008-09-19T05:36:50Z<p>I personally prefer light text on black background and I'm currently using a slightly modified theme posted <a href="http://weblogs.asp.net/meligy/archive/2008/05/22/dark-visual-studio-with-resharper-my-vs-settings-colors-windows-layout-v2.aspx" rel="nofollow">here</a> as this one supports R# quite well.</p>
http://stackoverflow.com/questions/96718/organizing-extension-methods/96771#967713Answer by Geir-Tore Lindsve for Organizing Extension MethodsGeir-Tore Lindsve2008-09-18T20:46:52Z2008-09-18T20:46:52Z<p>There are two ways that I organize the extension methods which I use,</p>
<p>1) If the extension is specific to the project I am working on, then I keep it in the same project/assembly, but in its own namespace.</p>
<p>2) If the extension is of a kind so that I may or is using it in other projects too, then I separate them in a common assembly for extensions.</p>
<p>The most important thing to keep in mind is, what is the scope which I will be using these in? Organizing them isn't hard if I just keep this in mind.</p>
http://stackoverflow.com/questions/89245/how-do-you-manage-net-app-config-files-for-large-applications/90686#906860Answer by Geir-Tore Lindsve for How do you manage .NET app.config files for large applications?Geir-Tore Lindsve2008-09-18T07:19:48Z2008-09-18T07:19:48Z<p>Set up build configurations for each of your deployment/testing environment and use separate config files based on each build configuration.</p>
<p>ScottGu has <a href="http://weblogs.asp.net/scottgu/archive/2007/09/21/tip-trick-automating-dev-qa-staging-and-production-web-config-settings-with-vs-2005.aspx" rel="nofollow">a nice post</a> about this and it works great. The only quirk we have is that we need to make sure that the config files (web.config) are checked out for edit from TFS before each build so that it can be copied over.</p>
http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/69713#697132Answer by Geir-Tore Lindsve for How do I programmatically create a PDF in my .NET application?Geir-Tore Lindsve2008-09-16T06:05:28Z2008-09-16T06:05:28Z<p>We're using TallPDF from <a href="http://www.tallcomponents.com/" rel="nofollow">TallComponents</a> and have had great success with it. Not sure what the other libraries uses, but it is using xslt as templates for the pdfs which makes it easy to adjust/update templates on a live server.</p>
http://stackoverflow.com/questions/754935/convert-an-mac-os-x-binary-formatted-plist-to-readable-format-in-c/1424524#1424524Comment by Geir-Tore Lindsve on Convert an Mac OS X binary formatted plist to readable format in C#Geir-Tore Lindsve2009-09-18T09:25:16Z2009-09-18T09:25:16ZThanks for the link. Maybe it can be ported to C#http://stackoverflow.com/questions/754935/convert-an-mac-os-x-binary-formatted-plist-to-readable-format-in-c/754951#754951Comment by Geir-Tore Lindsve on Convert an Mac OS X binary formatted plist to readable format in C#Geir-Tore Lindsve2009-05-11T10:37:35Z2009-05-11T10:37:35ZI found an executable version of this utility. In my code, I write the binary plist to a file, use plutil.exe to convert it to plain XML and then read in the result file.http://stackoverflow.com/questions/754935/convert-an-mac-os-x-binary-formatted-plist-to-readable-format-in-c/757086#757086Comment by Geir-Tore Lindsve on Convert an Mac OS X binary formatted plist to readable format in C#Geir-Tore Lindsve2009-04-24T20:17:58Z2009-04-24T20:17:58ZThanks, but I need to be able to read a binary formatted plist at runtime in my .NET application. The reason is that CoreData stores metadata in this format and I have a cross platform application that needs to read the same data file as the mac version.
We might have to pull it off by duplicating the metadata in a separate table though, as I have yet to find a reliable way of doing thishttp://stackoverflow.com/questions/754935/convert-an-mac-os-x-binary-formatted-plist-to-readable-format-in-c/754951#754951Comment by Geir-Tore Lindsve on Convert an Mac OS X binary formatted plist to readable format in C#Geir-Tore Lindsve2009-04-16T06:30:15Z2009-04-16T06:30:15ZI found that one too, but I don't want to add perl as yet another requirement to my application. The best would be to be able to use the encodings in the framework, but I start to doubt that they are able to convert this format.http://stackoverflow.com/questions/675137/best-way-to-databind-a-group-of-radiobuttons-in-winforms/678274#678274Comment by Geir-Tore Lindsve on Best way to databind a group of radiobuttons in WinFormsGeir-Tore Lindsve2009-03-25T06:56:46Z2009-03-25T06:56:46ZThat sounds a lot better. Thanks for the tiphttp://stackoverflow.com/questions/601320/winforms-data-binding-bind-to-objects-in-a-list/601508#601508Comment by Geir-Tore Lindsve on WinForms data binding - Bind to objects in a listGeir-Tore Lindsve2009-03-02T12:14:13Z2009-03-02T12:14:13ZThanks for the great links!http://stackoverflow.com/questions/601320/winforms-data-binding-bind-to-objects-in-a-list/601350#601350Comment by Geir-Tore Lindsve on WinForms data binding - Bind to objects in a listGeir-Tore Lindsve2009-03-02T12:12:59Z2009-03-02T12:12:59ZNo, I haven't as I assumed that this was not supported due to the message prompted by the designer. I'll try this as soon as possible.http://stackoverflow.com/questions/490753/are-there-any-other-bug-issue-trackers-than-tfs-itself-that-integrates-with-tfs-s/491910#491910Comment by Geir-Tore Lindsve on Are there any other bug/issue trackers than TFS itself that integrates with TFS SCM?Geir-Tore Lindsve2009-01-30T21:13:11Z2009-01-30T21:13:11ZCool. We will look further on SvnBridge for using both our SCM systems as a second alternative to Teamprise. The third alternative will be moving our .NET folks over to the open source stack as you guys mention. Most of us are already familiar with that too, so it is indeed a valid alternativehttp://stackoverflow.com/questions/490753/are-there-any-other-bug-issue-trackers-than-tfs-itself-that-integrates-with-tfs-s/491817#491817Comment by Geir-Tore Lindsve on Are there any other bug/issue trackers than TFS itself that integrates with TFS SCM?Geir-Tore Lindsve2009-01-30T21:09:31Z2009-01-30T21:09:31ZThanks for your comment. Yeah, I've already looked at Teamprise (noticed it after you replied to me on twitter about TFS and commenting WITs ;). This is one of the alternative routes we will investigate further.http://stackoverflow.com/questions/464834/is-it-possible-to-edit-files-during-a-team-build/464865#464865Comment by Geir-Tore Lindsve on Is it possible to edit files during a Team Build?Geir-Tore Lindsve2009-01-21T11:26:17Z2009-01-21T11:26:17ZCool, thanks. I found a replace task there which should solve this for mehttp://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/343696#343696Comment by Geir-Tore Lindsve on Worst UI You've Ever UsedGeir-Tore Lindsve2008-12-06T22:22:08Z2008-12-06T22:22:08ZOh, crap! And I thought that Arngren was out of business years ago :)http://stackoverflow.com/questions/37997/whats-the-best-way-to-deliver-tfs-build-status-notifications-to-the-team/70033#70033Comment by Geir-Tore Lindsve on Whats the best way to deliver TFS build status notifications to the team?Geir-Tore Lindsve2008-10-31T12:16:17Z2008-10-31T12:16:17ZToo bad it is broken after installing TFS 2008 SP1. It should be fixed in the November release of the power tools thoughhttp://stackoverflow.com/questions/186544/identity-after-insert-statement-always-returns-0/186603#186603Comment by Geir-Tore Lindsve on @@IDENTITY after INSERT statement always returns 0Geir-Tore Lindsve2008-10-09T10:20:41Z2008-10-09T10:20:41ZDoh, just read that you were using MS Access, and not SQL Server. Not sure if my answer applies to MS Access...http://stackoverflow.com/questions/145951/what-is-the-first-thing-you-do-when-you-install-visual-studio/145993#145993Comment by Geir-Tore Lindsve on What is the first thing you do when you install Visual Studio?Geir-Tore Lindsve2008-09-28T14:51:11Z2008-09-28T14:51:11ZIsn't the Solution Explorer on the right side by default? Might depend on what layout selection is made on first runhttp://stackoverflow.com/questions/116188/how-do-i-select-the-count-of-an-nhibernate-subquerys-results/117336#117336Comment by Geir-Tore Lindsve on How do I select the Count(*) of an nHibernate Subquery's resultsGeir-Tore Lindsve2008-09-23T01:26:01Z2008-09-23T01:26:01ZAh, right. Sorry I missed that