User David Lay - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T13:24:32Zhttp://stackoverflow.com/feeds/user/6359http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1690189/how-can-i-force-re-authentification-on-asp-net-mvc-with-integrated-auth0How can I force re-authentification on asp net mvc with Integrated authDavid Lay2009-11-06T20:30:15Z2009-11-07T08:50:32Z
<p>My MVC site is using integrated authentication, and we had a request to allow users to sing in as another user, like in sharepoint.</p>
<p>This has proved to be difficult...<br>
I've tried to send a 401 or 403 response, but the browser won't display the login popup and the user will continue to be loged in. (Fidler and firebug tell me that the response code is received)</p>
<p>How can I clear the credentials for the user, so he/she can provide another user/password?</p>
http://stackoverflow.com/questions/1690189/how-can-i-force-re-authentification-on-asp-net-mvc-with-integrated-auth/1690563#16905630Answer by David Lay for How can I force re-authentification on asp net mvc with Integrated authDavid Lay2009-11-06T21:23:43Z2009-11-06T21:23:43Z<p>According to <a href="http://visualstudiomagazine.com/articles/2004/05/01/activate-windows-impersonation-selectively.aspx" rel="nofollow">this</a> the way to go is implementing forms authentication, check the provided credentials against AD, and then impersonate.</p>
<p>I'm still looking for a way to do it without implementing forms auth...</p>
http://stackoverflow.com/questions/1661549/need-some-help-sorting-out-a-major-abstract-pattern-headache-within-my-dal/1661734#16617341Answer by David Lay for Need some help sorting out a major abstract pattern headache within my DALDavid Lay2009-11-02T14:50:49Z2009-11-02T14:50:49Z<p>If I understand correctly you need a way to include some method on child classes, but not in all.</p>
<p>If you can group the extra methods you need, you could use an interface, implement it, and use a instance of this new class inside your children (composition). </p>
<p>A simplification of this is a repository pattern for all your children classes (this example does not uses interfaces).</p>
<p>[NOTE: code could not compile, just for demonstration proposes]</p>
<pre><code>public class PositionProviderRepository
{
public List<T> GetList()
{
int positionTypeId = (int)this.PositionType;
using (SqlConnection cn = new SqlConnection(Globals.Instance.ConnectionString))
{
SqlCommand cmd = new SqlCommand("Get_PositionListByPositionTypeId", cn);
cmd.Parameters.Add("@PositionTypeId", SqlDbType.Int).Value = positionTypeId;
cmd.CommandType = CommandType.StoredProcedure;
cn.Open();
return this.GetCollectionFromReader(this.ExecuteReader(cmd));
}
}
public List<CustomerEntity> GetCustomersByUserPermission(Guid userId) {
//TODO: implementation
}
}
</code></pre>
<p>And then you use this class inside the all the entities like CustomerEntity.</p>
<p>This could effectively replace your class <code>SqlPositionProvider<T></code> but I'm not sure I understand correctly your architecture, you have a very complex hierarchy.</p>
http://stackoverflow.com/questions/682188/printing-serverreport-without-preview4Printing ServerReport without PreviewDavid Lay2009-03-25T15:48:50Z2009-10-29T18:46:46Z
<p>I have a SQLServer 2005 Reporting Services ServerReport deployed and frequently used by my Winforms app (Framework 2.0) via the ReportViewer control. </p>
<p>What I need is to provide a one-click print button from one of the forms of the app that triggers only the print dialog, without bringing up the ReportViewer.</p>
<p>I've been experimenting with rendering the report to a byte array, but I can't get pass that.</p>
<p>This report has multiple pages, so i don't know if the "Image" rendering that works for local reports it's going to work also for server reports.</p>
<p>I've been looking throw MSDN but there is only reference to local reports:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms252091%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms252091(VS.80).aspx</a></p>
<p>And the little information that I can get on server side reports are using Web references to the ReportServer web service, and I don't want that.</p>
<p><a href="http://blogs.msdn.com/bryanke/articles/71491.aspx" rel="nofollow">http://blogs.msdn.com/bryanke/articles/71491.aspx</a></p>
<p>Is there any way to print a server report, using the print dialog, without showing the report viewer to the user (I don't mind if it's behind the scenes)?</p>
http://stackoverflow.com/questions/1348552/simple-helloworld-build-script/1626605#16266050Answer by David Lay for Simple HelloWorld build scriptDavid Lay2009-10-26T18:44:40Z2009-10-26T18:44:40Z<p>Some times this error is because the build server does not have the sdk installed. </p>
<p>Try installing the windows sdk. You can download it on the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e6e1c3df-a74f-4207-8586-711ebe331cdc&displaylang=en" rel="nofollow">Microsoft Download Center</a></p>
<p>Additional steps may be needed to get nant to recognize the sdk, please refer to this <a href="http://pagebrooks.com/archive/2008/05/20/using-nant-with-.net-3.5.aspx" rel="nofollow">Page Brook's Blog Post</a> </p>
http://stackoverflow.com/questions/1245002/what-can-cause-garbage-on-prints-with-reportserver0What can cause garbage on prints with reportserver?David Lay2009-08-07T14:21:42Z2009-10-18T11:00:04Z
<p>I develop a Winforms application written with framework 2.0, which has some Server Reports in Report Server (SQLServer 2005).</p>
<p>This reports in the test enviroment are printing just right, but in production weird things happens (as ussual).</p>
<p>Sometimes, the windows spooler sends the print job to the printer and the printer acknowledge the job, but it prints nothing, like it was a empty job.
When this happens, and we try a second time to print the report, it print just the first pages and then, one or two pages with formatting errors and garbage.</p>
<p>This has been reported on at least two models of printers, one via LAN and one via LPT1.</p>
<p>We have tried printing from the production environment to the testing printers, and the reports came out fine.</p>
<p>The same printers are used with other software (not using report server: Word, acrobat, other in-house developments) without any issue, for years.</p>
<p>Could this be a software issue, a configuration (network policies, permissions, restrictions)?</p>
<p><strong>Update:</strong> The printers via LAN are going through a print server. We did some additional testing and we found that this may be a problem with windows server 2000 and the printer drivers beeng old. We changed to a print server running windows server 2003 and the situation got better, no more garbage printed, but some times, the printer does not finish the job and throws a "PCL Error"</p>
http://stackoverflow.com/questions/850213/how-to-migrate-convert-from-svn-to-mercurial-hg-on-windows9How to migrate/convert from SVN to Mercurial (hg) on windowsDavid Lay2009-05-11T21:37:48Z2009-10-16T17:53:06Z
<p>I'm looking for a tool to migrate a couple of SVN repos to Mercurial, with history, labels and so on.</p>
<p>I'm Using TortoiseHg (Windows x32), so ConvertExtensions are discarted.</p>
<p>There's some info on how to do this process on a Linux box (<a href="http://pypi.python.org/pypi/hgsvn" rel="nofollow">hgsvn</a>) I don't have a Linux machine available. </p>
<p>Can I use those python scripts on windows?</p>
<p>If so, what do I need to do it</p>
<p>Or what other tools can I use to do this process?</p>
<p>Basically, how can I convert an SVN project to HG?</p>
http://stackoverflow.com/questions/1521209/how-to-change-the-productname-of-clickonce-deployment-after-first-install1How to Change the productname of clickonce deployment after first install?David Lay2009-10-05T16:56:22Z2009-10-05T17:48:52Z
<p>We have an application on pilot implementation using clickonce to deliver fast updates. We have even automated the build proces with nant and we can control every step of the building of the deploy package.</p>
<p>This pilot, we delivered with the productname "PRODUCT TITLE (PILOT)", but now, we want to upgrade all our pilot users to the production build.
We changed the productname of the build script and it was all good for the new users, it correctly displayed the product name, but the users who had previous versions installed where seeing on their shortcuts and update prompts, the "(PILOT)" version of the productname.</p>
<p>What we have tried so far:</p>
<ul>
<li>Uninstall the App: the install prompt appears with the old productname (no good)</li>
<li>Uninstall and clean the local settings/Apps and local setting/aplication data : same thing.</li>
</ul>
<p>The system is built on visual studio 2005 (FW 2.0) and the app is winforms. Client PCs are on XP SP3</p>
<p>Any help will be much appreciated :)</p>
http://stackoverflow.com/questions/823276/how-to-unit-test-a-wcf-client-built-with-wcf-rest-starter-kit1How to unit test a WCF Client built with WCF Rest Starter KitDavid Lay2009-05-05T03:59:28Z2009-08-04T07:48:16Z
<p>I created some POX services using the REST Starter kit.
At first, it was a little complicated to create the unit tests for the service layer, but in the end, it was well designed and I succeed in mocking the context and set expectations.</p>
<p>But, I'm starting in with the client side now, and I'm having some problems figuring out how to mock things. It's not so straight forward.</p>
<p>So, I have this sample method that post via HTTP some data using a datacontract and XML as transport. </p>
<pre><code>public class ServiceClient: IService
{
private const string uri_template = "http://{0}:{1}/SomeService.svc/";
private readonly HttpClient http = new HttpClient();
public ServiceClient(string host, int port)
{
http.BaseAddress = new Uri(string.Format(uri_template , host, port));
}
public void Create(MyDataContract my_data_contract)
{
var content = HttpContentExtensions
.CreateDataContract(
my_data_contract,
Encoding.Default,
"text/xml",
null);
var response = http.Post("Create", content);
if (response.StatusCode != HttpStatusCode.Created) {
throw new Exception("something is not right");
}
}
}
</code></pre>
<p>This method is working and indeed posting the data and serializing correctly.</p>
<p>What I want to do, is to unit test it.</p>
<p>My questions are:</p>
<ol>
<li><p>How do I make stubs/mocks for HttpContextExtensions knowing that it does not implement any interface?</p></li>
<li><p>And for HttpClient? this is worst since it is full of extension methods defined elsewhere (Post and the like methods are extensions).</p></li>
</ol>
<p>In 2. I guess I can stick to 'Send' and it's overloads, but then is the same problem as in 1</p>
<p>What I was thinking to do, is to extract interfaces for HttpContextExtensions and HttpClient, make a children for each one and implement the interfaces delegating to the parent, and then using the interfaces in my code.</p>
<p>But that's a lot of work IMHO.</p>
<p>I'm using RhinoMocks as my mocking framework so I can't mock/stub concrete classes, and I would like to stick to it, because I really think that mocking concrete classes is not very elegant.</p>
<p>So, is there a cleaner/faster/smarter way to unit test code like the above?</p>
<p>PD: This is for WCF Starter Kit preview 2</p>
http://stackoverflow.com/questions/1095021/class-library-with-service-references/1095080#10950802Answer by David Lay for Class library with service referencesDavid Lay2009-07-07T21:51:51Z2009-07-07T22:23:58Z<p>When you add a service reference, Visual Studio generates a proxy for you, which reads the app.config file for the url of the service.</p>
<p>You have the option to provide static URL wich does not uses the config file.</p>
<p>If you want to get complicated, and provide dynamic URL without the app.config settings, you could copy this generated code and modify it to use another kind of source for the configuration data (like parameters, for example) and that way you can deploy just the dll.</p>
<p>The generated code is hidden in the code behind of the service reference.
In order to see the code, you have to activate the "show all files" option for the solution explorer, and look for the file Refecence.cs (or .vb) under Reference.map file.</p>
<p>This code you should not modify directly, instead, copy the code and then create a new class within your structure. (and delete the original reference)</p>
<p>Take notice, that if you modify the service (or the Wsdl) then you must modify the class manually.</p>
http://stackoverflow.com/questions/1080069/how-to-take-a-screenshot-and-send-by-email-programaticly-on-dotnet1How to take a screenshot and send by email programaticly on dotnetDavid Lay2009-07-03T16:36:25Z2009-07-03T18:17:16Z
<p><strong>Background:</strong></p>
<p>I'm developing a bussiness application, and in the final stages we are encountering some extrange errors, mostly with connection and some edge use cases. </p>
<p>For this kind of exceptions, we now provide a nice dialog with error details, of which the user take a screenshot, and send by email with some remarks.</p>
<p><strong>Problem:</strong></p>
<p>I would like to provide a better experience, and provide a single button in the same dialog, wich uppon click, would open outlook and prepare the email, with a screenshot as attachment and maybe a log file, then the user can add remarks and press the send button.</p>
<p><strong>Question:</strong></p>
<p>How can I take this screenshot programaticly, and then add it as attachment in a outlook mail?</p>
<p><strong>Remarks:</strong></p>
<p>The app is in Microsoft .Net Framework 2.0, C# or VB</p>
http://stackoverflow.com/questions/682188/printing-serverreport-without-preview/683507#6835074Answer by David Lay for Printing ServerReport without PreviewDavid Lay2009-03-25T21:20:09Z2009-03-25T21:20:09Z<p>Ok, Finally figured out.</p>
<p>check this link:
<a href="http://theruntime.com/blogs/jacob/archive/2007/12/07/printing-reporting-services-2005-reports.aspx" rel="nofollow">Printing Reporting Services 2005 Reports</a></p>
<p>That blog post has almost everything that I needed, but I'm going to post the full answer here for references.</p>
<p>I ended up using the report viewer object behind the scenes, but only for convenience, since it's not required.</p>
<p>The first step is asking the user for the printer settings:</p>
<pre><code>Dim doc As New Printing.PrintDocument()
AddHandler doc.PrintPage, AddressOf PrintPageHandler
Dim dialog As New PrintDialog()
dialog.Document = doc
Dim print As DialogResult
print = dialog.ShowDialog()
doc.PrinterSettings = dialog.PrinterSettings
</code></pre>
<p>Having that, we proceed to configure our report call:
Modifying this string, you can get to print on any paper size and any orientation (switching height and width for landscape), but the report itself must be configured in the same page layout.</p>
<pre><code>Dim deviceInfo As String = _
"<DeviceInfo>" + _
"<OutputFormat>emf</OutputFormat>" + _
" <PageWidth>8.5in</PageWidth>" + _
" <PageHeight>11in</PageHeight>" + _
" <MarginTop>0.25in</MarginTop>" + _
" <MarginLeft>0.25in</MarginLeft>" + _
" <MarginRight>0.25in</MarginRight>" + _
" <MarginBottom>0.25in</MarginBottom>" + _
"</DeviceInfo>"
Dim warnings() As Warning
Dim streamids() As String
Dim mimeType, encoding, filenameExtension, path As String
mimeType = "" : encoding = "" : filenameExtension = ""
</code></pre>
<p>Finally, we render the report with all its pages. </p>
<p>Note that if the report has only one page, the renderStream method is never used.</p>
<p>rpt_control is the report viewer control, previously configured and aiming at a server report.</p>
<p>Note allso that in this code we add pages to a list. This list is a global variable, since it's needed in the PrintPageHandler method.</p>
<pre><code>Dim data() As Byte
rpt_control.ServerReport.SetParameters(_parametros)
data = rpt_control.ServerReport.Render("Image", deviceInfo, mimeType, encoding, filenameExtension, streamids, warnings)
pages.Add(New Metafile(New MemoryStream(data)))
For Each pageName As String In streamids
data = rpt_control.ServerReport.RenderStream("Image", pageName, deviceInfo, mimeType, encoding)
pages.Add(New Metafile(New MemoryStream(data)))
Next
doc.Print()
</code></pre>
<p>Until now, we haven't done any printing at all, this is actually handled by the PrintPageHandler method that we referenced earlier.</p>
<pre><code>Dim pages As New List(Of Metafile)
Dim pageIndex As Integer = 0
Private Sub PrintPageHandler(ByVal sender As Object, ByVal e As PrintPageEventArgs)
Dim page As Metafile = pages(pageIndex)
pageIndex += 1
e.Graphics.DrawImage(page, 0, 0, page.Width, page.Height)
e.HasMorePages = pageIndex < pages.Count
End Sub
</code></pre>
http://stackoverflow.com/questions/221948/where-to-look-for-white-papers-on-software-development3Where to look for white papers on software development?David Lay2008-10-21T13:49:30Z2009-02-02T09:52:00Z
<p>I'm interested on following the formal research on universities and academia, related to software development, and I wonder if anyone knows some centralized rss feed (blogs maybe) , mailing list, newsgroup or anything that keeps updating on the subject.</p>
<p>I want to keep up to date on the field and discover sources, so if you have only one source or knows a couple of diferent sites with public access on the subject, please share. =) </p>
http://stackoverflow.com/questions/388711/when-is-winforms-the-correct-choice-vs-wpf/388739#3887397Answer by David Lay for When is Winforms the correct choice vs. WPF?David Lay2008-12-23T12:09:53Z2008-12-23T12:09:53Z<p>Consider WPF if interface design is important to you, because WPF can deliver better UI experience.
But Winforms has on it's side the years of evolution, so it's proven to work and you can find many versed programmers for that platform.</p>
<p>Also portability may be an issue, WPF only works with XP SP2 and up.</p>
<p>Also, WPF has a high curve of learning, meaning it's not easy to deliver a quality product without having specific WPF experience.</p>
http://stackoverflow.com/questions/165575/learning-about-auto-implemented-properties/165592#1655920Answer by David Lay for Learning about Auto-Implemented Properties David Lay2008-10-03T03:34:55Z2008-10-03T03:34:55Z<p>Automatic properties are just syntactic sugar, the compiler in fact creates the private member for it, but since it's generated at compile time, you cannot access it. </p>
<p>And later on, if you want to implement getters and setters for the property, only then you create a explicit private member for it and add the logic.</p>
http://stackoverflow.com/questions/165525/collection-editor-at-runtime/165550#1655502Answer by David Lay for Collection Editor at runtimeDavid Lay2008-10-03T03:11:48Z2008-10-03T03:11:48Z<p>from codeproject article [<a href="http://www.codeproject.com/KB/cs/dzcollectioneditor.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/dzcollectioneditor.aspx</a>][1]</p>
<blockquote>
<p>There are three requirements that a
collection should meet in order to be
successfully persisted with the
CollectionEditor:</p>
<ol>
<li>First, the collection must implement the IList interface
(inheriting from
System.Collections.CollectionBase is
in most of the cases the best option).</li>
<li><p>Second, it must have an Indexer (Item in VB.NET) property. The type of
this property is used by the
CollectionEditor to determine the
default type of the instances that
will add to the collection.</p>
<p>To better understand how this works, take a look at GetItemType()
function of the
CustomCollectionEditorForm:</p>
<p>protected virtual Type GetItemType(IList coll)
{
PropertyInfo pi= coll.GetType().GetProperty("Item",
new Type[]{typeof(int)});
return pi.PropertyType
}</p></li>
<li><p>Third, the collection class must implement one or both of the following
methods: Add and AddRange. Although
IList interface has an Add member and
CollectionBase implements IList, you
still have to implement an Add method
for your collection, given that
CollectionBase declares an explicit
member implementation of the IList’s
Add member. The designer serializes
the collection according to what
method you have implemented. If you
have implemented both, the AddRange is
preferred.</p></li>
</ol>
</blockquote>
<p>In this article you'll find everything you need to implement your collection on the property grid</p>
http://stackoverflow.com/questions/136604/duplicate-data-over-one-to-many-self-relation-tsql0Duplicate Data over One-to-Many self relation (Tsql)David Lay2008-09-25T22:30:36Z2008-09-26T00:46:22Z
<p>Sorry if the title is poorly descriptive, but I can't do better right now =(</p>
<p>So, I have this master-detail scheme, with the detail being a tree structure (one to many self relation) with n levels (on SQLServer 2005)</p>
<p>I need to copy a detail structure from one master to the another using a stored procedure, by passing the source master id and the target master id as parameters (the target is new, so it doesn't has details).</p>
<p>I'm having troubles, and asking for your kind help in finding a way to keep track of parent id's and inserting the children without using cursors or nasty things like that...</p>
<p><img src="http://i38.tinypic.com/2vs3n7d.jpg" alt="table model for the problem" /></p>
<p>This is a sample model, of course, and what I'm trying to do is to copy the detail structure from one master to other. In fact, I'm creating a new master using an existing one as template.</p>
http://stackoverflow.com/questions/136642/php-regex-to-remove-multiple-marks/136705#1367050Answer by David Lay for PHP regex to remove multiple ?-marksDavid Lay2008-09-25T22:53:16Z2008-09-25T22:53:16Z<p>have you tried the pattern</p>
<pre><code>[\?]+
</code></pre>
<p>with the replacement of "?"</p>
http://stackoverflow.com/questions/79949/best-way-of-store-only-date-on-datetime-field1Best way of store only date on datetime field?David Lay2008-09-17T04:22:01Z2008-09-17T18:39:09Z
<p>Scenario:
A stored procedure receives from code a DateTime with, let's say DateTime.Now value, as a datetime parameter.
The stored procedure needs to store only the date part of the datetime on the row, but preserving all date related arithmetics for, to say, do searches over time intervals and doing reports based on dates.</p>
<p>I know there is a couple of ways, but what is the better having in mind performance and wasted space? </p>
http://stackoverflow.com/questions/79592/how-can-you-parse-an-excel-xls-file-stored-in-a-varbinary-in-ms-sql-2005/79716#797162Answer by David Lay for how can you parse an excel (.xls) file stored in a varbinary in MS SQL 2005?David Lay2008-09-17T03:40:48Z2008-09-17T03:40:48Z<p>My thought is that anything can be done, but there is a price to pay. In this particular case, the price seems to bee too high. </p>
<p>I don't have a tested solution for you, but I can share how I would give my first try on a problem like that.</p>
<p>My first approach would be to install excel on the SqlServer machine and code some assemblies to consume the file on your rows using excel API and then load them on Sql server as assembly procedures.</p>
<p>As I said, This is just a idea, I don't have details, but I'm sure others here can complement or criticize my idea.</p>
<p>But my real advice is to rethink the whole project. It makes no sense to read tabular data on binary files stored on a cell of a row of a table on database. </p>
http://stackoverflow.com/questions/61487/do-you-use-uml-in-agile-development-practices/61588#615882Answer by David Lay for Do you use UML in Agile development practices?David Lay2008-09-14T19:33:16Z2008-09-14T19:33:16Z<p>In my experience, what has been more useful is doing initial UML design (per feature, module or project basis,depending on the project itself), and then do initial code generation, and then in every iteration just doing simple reverse engineering to the models keeps them updated and reliable, in order to use them on refactoring meetings and such. This works for static diagrams.</p>
<p>But dynamic diagrams should be made and updated as needed only, they consume too much time and they change too often in agile projects for they to be part of the documentation. But then, if you find yourself updating a dynamic diagram too often, it's kindda a project smell, in my opinion, because, as it's said before, they should be used only for communication among the team.</p>
http://stackoverflow.com/questions/1145850/get-height-of-entire-document-with-javascript/1147768#1147768Comment by David Lay on Get height of entire document with JavaScriptDavid Lay2009-11-30T13:35:41Z2009-11-30T13:35:41ZWhen working with iframes and jquery, because of this method of calculation, the iframe's document height will allways be at least the height of the iframe itselft. This is important to note when you want to reduce the iframe's height to match the content. You first have to reset the height of the iframe.http://stackoverflow.com/questions/1721813/how-to-add-second-data-source-to-xslt-dataview-in-sharepoint/1723874#1723874Comment by David Lay on How to add second data source to xslt / dataview in SharePoint?David Lay2009-11-13T15:28:31Z2009-11-13T15:28:31Zoh man, you don't know the time I spent last week trying to do something like that... I feel so stupid now ...http://stackoverflow.com/questions/1690189/how-can-i-force-re-authentification-on-asp-net-mvc-with-integrated-auth/1690336#1690336Comment by David Lay on How can I force re-authentification on asp net mvc with Integrated authDavid Lay2009-11-06T21:00:03Z2009-11-06T21:00:03Znop, Integrated Authentication = Windows Authenticationhttp://stackoverflow.com/questions/1689415/can-any-one-translate-this-code-from-actionscript-to-c-fire-effect-from-flexlibComment by David Lay on Can any one translate this code from Actionscript to C# (Fire effect from FlexLib)?David Lay2009-11-06T19:09:48Z2009-11-06T19:09:48ZThis is not a question but a request. Please try to do the work first, and ask specific questions about problems you have when translating the code. Don't ask us to translate the whole thing.
http://stackoverflow.com/questions/1661549/need-some-help-sorting-out-a-major-abstract-pattern-headache-within-my-dal/1662345#1662345Comment by David Lay on Need some help sorting out a major abstract pattern headache within my DALDavid Lay2009-11-02T22:01:53Z2009-11-02T22:01:53Znice! but aren't you tired of reading/writing ".Instance" all the time? ;Phttp://stackoverflow.com/questions/322441/ignoring-accents-in-sql-server-using-linq-to-sqlComment by David Lay on Ignoring accents in SQL Server using LINQ to SQLDavid Lay2009-11-02T20:48:42Z2009-11-02T20:48:42ZThanks, I was just to apply regex replace. That would have been terrible!http://stackoverflow.com/questions/1661549/need-some-help-sorting-out-a-major-abstract-pattern-headache-within-my-dal/1661734#1661734Comment by David Lay on Need some help sorting out a major abstract pattern headache within my DALDavid Lay2009-11-02T14:56:52Z2009-11-02T14:56:52ZYour class will be able to see this methods, but you could chose to expose them or not, see my comment on the question.http://stackoverflow.com/questions/1661549/need-some-help-sorting-out-a-major-abstract-pattern-headache-within-my-dalComment by David Lay on Need some help sorting out a major abstract pattern headache within my DALDavid Lay2009-11-02T14:54:59Z2009-11-02T14:54:59ZI think it's better to separate the "special" methods, not the common ones (those should be less), and don't expose them as one property, but re-implement the methods (delegate to composite), this will allow you to have a cleaner APIhttp://stackoverflow.com/questions/1100097/analyzing-code-structure-using-codedomComment by David Lay on Analyzing code structure using CodeDom??David Lay2009-10-30T15:40:03Z2009-10-30T15:40:03Zas noted by @chyne, mono.cecil looks promising. If you open a project on codeplex or something, let me know :)http://stackoverflow.com/questions/1281178/binding-to-a-routeduicommand-thats-not-in-the-codebehind/1281710#1281710Comment by David Lay on Binding to a RoutedUICommand that's not in the codebehind.David Lay2009-10-30T05:46:10Z2009-10-30T05:46:10ZBeautifull. I was banging my head on this one... learning wpf+mvvm is not as straight forward as I would wish.
RoutedUICommands where too complex for what I intended and I knew that there should be a simpler way. @Kent, Thanks for your examples and blog.http://stackoverflow.com/questions/682188/printing-serverreport-without-preview/1645782#1645782Comment by David Lay on Printing ServerReport without PreviewDavid Lay2009-10-29T19:26:16Z2009-10-29T19:26:16ZThe report is rendered on the server, but displayed and printed on the client.
This approach is used to mantain an modify reports appart of the application, or for consume reports from many clients without duplicate the reports on each one.
Server reports also benefit from scheduled notifications, data caching, and other good things of the report server engine on sqlserver.http://stackoverflow.com/questions/1521209/how-to-change-the-productname-of-clickonce-deployment-after-first-install/1521404#1521404Comment by David Lay on How to Change the productname of clickonce deployment after first install?David Lay2009-10-06T17:45:07Z2009-10-06T17:45:07ZThis IS the answer: As i suspected, was another thing in the wich was keeping the app to update correctly. Someone modified the unc share to the updates for the new users but not for the old ones.http://stackoverflow.com/questions/1040509/advice-with-dynamic-forms-in-asp-net-mvc/1434800#1434800Comment by David Lay on Advice with Dynamic Forms in ASP.NET MVCDavid Lay2009-10-06T14:44:23Z2009-10-06T14:44:23Zthanks, even without documentation the code is very straight forward and it did help me to sove a related issue. +1http://stackoverflow.com/questions/1521209/how-to-change-the-productname-of-clickonce-deployment-after-first-install/1521404#1521404Comment by David Lay on How to Change the productname of clickonce deployment after first install?David Lay2009-10-05T17:51:55Z2009-10-05T17:51:55ZThanks for your answer. Unfortunately I'm trying on a pilot user's machine, under they session. I'm going to revisit (again) all the steps, maybe I missed some place that needs to be modified.http://stackoverflow.com/questions/1190968/a-few-rdlc-and-reportviewer-questionsComment by David Lay on A few RDLC and ReportViewer questionsDavid Lay2009-08-20T16:42:51Z2009-08-20T16:42:51ZTry to post one question per question. With a descriptive title. Read the FAQ.