User codeflunky - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T10:20:36Zhttp://stackoverflow.com/feeds/user/1436http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/67964/what-is-the-best-free-way-to-clean-up-word-html4What is the best free way to clean up Word HTML?codeflunky2008-09-15T23:36:21Z2009-11-28T21:11:38Z
<p>Please provide the single best option you are aware of.</p>
http://stackoverflow.com/questions/525185/sql-server-database-locked1SQL Server Database Lockedcodeflunky2009-02-08T05:14:26Z2009-11-23T20:05:04Z
<p>I am trying to delete an existing database in SQL Server 2005. My first attempt produced the following error:</p>
<blockquote>
<p>5030: The database could not be exclusively
locked to perform the operation.</p>
</blockquote>
<p>I have since killed all processes that are accessing the database. I have also removed the replication subscription that it had previously been involved in.</p>
<p>Any thoughts on what else that could be holding the lock on it besides SQL Server processes and replication?</p>
<p><strong>Update</strong>: I restarted the server, and that fixed it. I was trying to avoid that, since this is a production server, but hey what can you do?</p>
http://stackoverflow.com/questions/663702/how-to-stop-compositecontrol-tabindex-property-from-setting-tabindex-on-container0How to stop CompositeControl TabIndex property from setting tabindex on container spancodeflunky2009-03-19T19:35:32Z2009-10-05T04:00:02Z
<p>I wrote a custom server control that inherits from CompositeControl. When the control is instantiated, I am dynamically adding a TextBox to its Controls collection. I have overridden the TabIndex property so that when it is set, it applies the value to the TabIndex property of the child TextBox control. The problem is that when the CompositeControl is rendered, it includes a span tag as the overall container, and it is setting the tabindex property on the <em>span</em> as well as the input (TextBox) control. This makes the cursor actually tab to the span, which is not what I want. Any ideas on how to get the CompositeControl to not render the tabindex property on the span?</p>
http://stackoverflow.com/questions/1296849/visual-studio-multiple-startup-projects-problem1Visual Studio "Multiple Startup Projects" Problemcodeflunky2009-08-18T22:11:39Z2009-08-19T14:34:37Z
<p><strong>Background</strong>: I have a Visual Studio 2008 solution containing three different web application projects. If I right click on the solution, choose "Set Startup Projects.." and then choose "Multiple Startup Projects", I am able to fire them all up at once when I hit F5 (Start Debugging).</p>
<p><strong>Desired Behavior</strong>: What <em>used</em> to happen (until it unexpectedly stopped working) was that it would automatically open up three browser instances (IE by default) and run each of the web apps in each of the three browser windows.</p>
<p><strong>Current (Undesired) Behavior</strong>: All of a sudden, instead of opening three browser windows, it now opens a single browser instance and sequentially starts them all up with the exact same window/tab, which means that I am left with only one app actually running. (Whatever the last app it was that got started.)</p>
<p>Any idea what could cause this? I've checked my project and browser settings (including the "Reuse windows when launching shortcuts" option) and can't seem to figure it out. Any ideas?</p>
<p><strong>Update</strong>: I changed Visual Studio's default browser to Firefox, and it works as expected by opening up multiple browser windows. I guess I'll just use Firefox when debugging for now, which is probably a good thing anyway.</p>
http://stackoverflow.com/questions/567597/sql-replication-row-not-found-error1SQL Replication "Row Not Found" Errorcodeflunky2009-02-19T22:46:24Z2009-07-08T03:51:07Z
<p>I have transactional replication running between two databases. I fear they have fallen slightly out of sync, but I don't know which records are affected. If I knew, I could fix it manually on the subscriber side.</p>
<p>SQL Server is giving me this message:</p>
<blockquote>
<p>The row was not found at the Subscriber when applying the replicated command. (Source: MSSQLServer, Error number: 20598)</p>
</blockquote>
<p>I've looked around to try to find out what table, or even better what record is causing the issue, but I can't find that information anywhere.</p>
<p>The most detailed data I've found so far is:</p>
<blockquote>
<p>Transaction sequence number: 0x0003BB0E000001DF000600000000, Command ID: 1</p>
</blockquote>
<p>But how do I find the table and row from that? Any ideas?</p>
http://stackoverflow.com/questions/134064/reuse-existing-types-is-ignored-when-adding-a-service-reference0"Reuse existing types" is ignored when adding a service referencecodeflunky2008-09-25T15:38:41Z2009-06-17T13:39:38Z
<p>I am adding a service reference to one of my projects in Visual Studio 2008. On the "Service Reference Settings" screen I am selecting the default option which says "Reuse types in all referenced assemblies". I have referenced the project for which I want to reuse a type. That type is being passed in as a parameter to a web method.</p>
<p>However, when the References.cs file is generated, it still creates a duplicate proxy version of that type. Is there something I am missing? Do you need to do anything special to the referenced type? Perhaps add some special attributes? </p>
http://stackoverflow.com/questions/57652/how-do-i-get-javascript-to-open-a-popup-window-on-the-current-monitor0How do I get JavaScript to open a popup window on the current monitorcodeflunky2008-09-11T21:06:21Z2009-06-14T20:47:22Z
<p>Scenario:</p>
<ol>
<li>The user has two monitors.</li>
<li>Their browser is open on the secondary monitor.</li>
<li>They click a link in the browser which calls window.open() with a specific top and left window offset.</li>
<li>The popup window always opens on their primary monitor.</li>
</ol>
<p>Is there any way in JavaScript to get the popup window to open on the same monitor as the initial browser window (the opener)?</p>
http://stackoverflow.com/questions/165025/why-does-my-excel-export-have-a-blank-row-at-the-top0Why does my Excel export have a blank row at the top?codeflunky2008-10-02T23:23:55Z2009-06-11T13:58:38Z
<p>In ASP.NET, I am exporting some data to Excel by simply binding a DataSet to a GridView and then setting the ContentType to Excel.</p>
<p>My ASPX page is very simple and looks like this:</p>
<pre><code><%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ExamExportReport.aspx.cs" Inherits="Cabi.CamCentral.Web.Pages.Utility.ExamExportReport" %>
<html>
<body>
<form id="form1" runat="server">
<asp:GridView
ID="gridExam"
AutoGenerateColumns="true"
runat="server">
</asp:GridView>
</form>
</body>
</html>
</code></pre>
<p>In the Page_Load method of the code behind, I am doing this:</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
BindGrid();
Response.ContentType = "application/vnd.ms-excel";
Response.AddHeader("content-disposition", "attachment; filename=ExamExport.xls");
}
</code></pre>
<p>Generally, everything works fine, and the Excel file pops up with the right data. The problem is that the Excel file always ends up with a blank first row right above the column headers. I just can't figure out what is causing this. Maybe it's something about the form tag? Maybe I need to add some styling or something to strip out padding or margins? I've tried a bunch of things but I just can't get rid of that dang first blank row. Has anyone else run into this? Any solutions?</p>
http://stackoverflow.com/questions/557803/sql-server-transactional-replication-and-adding-new-tables0SQL Server transactional replication, and adding new tablescodeflunky2009-02-17T17:16:51Z2009-06-11T09:35:11Z
<p>I have a very large existing set of tables being replicated (transactional) between two servers over a dedicated VPN connection. I need to add a new table. Reloading all the tables is not an option.</p>
<p>I thought that by simply adding the new articles to the publication it would replicate them across, but that didn't work. Of course, something needs to tell the subscriber about the new articles. I then chose Generate Snapshot on the publisher, but I couldn't tell what it was doing (maybe scripting out <em>all</em> the data?) so I shut it down. Maybe I should have let it run? I'm not sure.</p>
<p>So how do I safely add the new articles to the existing subscription?</p>
http://stackoverflow.com/questions/663702/how-to-stop-compositecontrol-tabindex-property-from-setting-tabindex-on-container/663776#6637760Answer by codeflunky for How to stop CompositeControl TabIndex property from setting tabindex on container spancodeflunky2009-03-19T19:50:43Z2009-03-19T19:50:43Z<p>I answered my own question. It turns out that the wrapper span tag is not really necessary at all, and you can remove it by simply including the following overrides in the class inheriting from CompositeControl:</p>
<pre><code>public override void RenderBeginTag(HtmlTextWriter writer)
{
// NOOP
}
public override void RenderEndTag(HtmlTextWriter writer)
{
// NOOP
}
</code></pre>
http://stackoverflow.com/questions/555395/sql-server-transactional-replication-over-vpn2SQL Server Transactional Replication Over VPNcodeflunky2009-02-17T02:55:41Z2009-02-26T16:42:10Z
<p>I have transactional replication running between two servers over a dedicated VPN connection. The databases are fairly large, so I initially use the backup and restore method to get the initial snapshot over to the subscriber machine and then let it apply the incremental transactions from there.</p>
<p>Everything runs fine until the VPN line gets flaky (which it does occassionally) at which point the replication process is prone to locking up. When I look on the subscriber side, there are a few SQL processes which appear to be hung and have locks held on the subscriber database and tables. The crazy thing is that those processes are coming <em>from</em> the replication service. I can assure you (from trial and error) that no other processes are locking this database except for replication itself.</p>
<p>So why would the replication process trip over its own feet like that? Why would it get hung just because of a loss of network connectivity? Any suggestions for somehow making it more reliable?</p>
http://stackoverflow.com/questions/574186/advantage-of-the-asp-net-from-other-technology/574212#5742120Answer by codeflunky for Advantage of the asp.net from other technologycodeflunky2009-02-22T02:48:37Z2009-02-22T02:48:37Z<p>It's debatable, but the biggest "advantage" of ASP.NET over other server side web technologies is the rich eventing and control model with Web Forms. Most other current technologies (PHP, Ruby on Rails, etc.) don't have this type of abstraction layer. This makes it relatively easy for people to create web applications using the same metaphors (controls and events, etc.) that they are used to when doing Windows programming.</p>
<p>That said, many people view the Web Forms model as overly abstracted and too heavy, which is why ASP.NET MVC was born. So from that perspective, it can also be seen as a disadvantage. It just depends on your personal perspective.</p>
http://stackoverflow.com/questions/567597/sql-replication-row-not-found-error/568314#5683142Answer by codeflunky for SQL Replication "Row Not Found" Errorcodeflunky2009-02-20T04:51:22Z2009-02-20T04:51:22Z<p>I'll answer my own question with a workaround I ended up using.</p>
<p>Unfortunately, I could not figure out which table was causing the issue through the SQL Server replication interface (or the Event Log for that matter). It just didn't say.</p>
<p>So the next thing I thought of was, "What if I could get replication to continue even though there is an error?" And lo and behold, there is a way. In fact, it's easy. There is a special Distribution Agent profile called "Continue on data consistency errors." If you enable that, then these types of errors will just be logged and passed on by. Once it is through applying the transactions and potentially logging the errors (I only encountered two), then you can go back and use RedGate SQL Data Compare (or some other tool) to compare your two databases, make any corrections to the subscriber and then start replication running again.</p>
<p>Keep in mind, for this to work, your publication database will need to be "quiet" during the part of the process where you diff and fix the subscriber database. Luckily, I had that luxury in this case.</p>
http://stackoverflow.com/questions/567890/how-can-i-create-a-windows-application-that-can-run-with-a-gui-or-as-a-windows/567919#5679195Answer by codeflunky for How can I create a Windows application that can run with a GUI *or* as a Windows service in C#? codeflunky2009-02-20T01:00:40Z2009-02-20T03:11:58Z<p>I'm doing something similar to what you're asking for. I have programmed it so that if you send the command line parameter "/form" to the executable, it will pop up a windows form instead of running as a service.</p>
<p>As far as running the background job itself, in both cases you will need to do some sort of threading (perhaps with a timer) to do the work and report status back to your form asynchronously. This would be a whole different discussion topic on creating threaded GUI apps.</p>
<p>The "form or service" code goes something like this:</p>
<pre><code>static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
private static void Main(string[] args)
{
if (args.Length > 0 && args[0] == "/form")
{
var form = new MainForm();
Application.Run(form);
return;
}
var ServicesToRun = new ServiceBase[]
{
new BackgroundService()
};
ServiceBase.Run(ServicesToRun);
}
}
</code></pre>
http://stackoverflow.com/questions/356796/dynamically-refreshing-rows-in-an-html-table-using-an-updatepanel1Dynamically refreshing rows in an HTML table using an UpdatePanelcodeflunky2008-12-10T17:08:23Z2009-02-19T07:37:40Z
<p>I have been using the ASP.NET AJAX UpdatePanel control a lot lately for some intranet apps I've been working on, and for the most part, I have been using it to dynamically refresh data or hide and show controls on a form based on the user's actions.</p>
<p>There is one place where I have been having a bit of trouble, and I'm wondering if anyone has any advice. My form is using a pretty typical table based layout where the table is used to display a grid of labels and fields for the user to fill out. (I already know table based layouts are eschewed by some people, and I understand the pros and cons. But that's the choice I've made, so please don't answer with "Don't use a table based layout".)</p>
<p>Now my problem is that there are times when I would <em>like</em> to wrap an UpdatePanel around a set of rows so that I can hide and show them dynamically, but the UpdatePanel doesn't really let you do that. The basic problem is that it wraps a div around them, and as far as I know, you cannot wrap a div around table rows. It is not valid HTML.</p>
<p>So the way I have been dealing with it is to make my dynamic rows part of a whole new table entirely, which is OK, but then you have to deal with aligning all the columns manually with the table above it, and that is a real pain and pretty fragile.</p>
<p>So, the question is... does anyone know of any technique for dynamically generating or refreshing rows using either an UpdatePanel or something similar? Hopefully, the solution would be almost as easy as dropping an UpdatePanel on the page, but even if not, I'd still like to hear it.</p>
http://stackoverflow.com/questions/356796/dynamically-refreshing-rows-in-an-html-table-using-an-updatepanel/564297#5642970Answer by codeflunky for Dynamically refreshing rows in an HTML table using an UpdatePanelcodeflunky2009-02-19T07:37:40Z2009-02-19T07:37:40Z<p>Answer: In the end, there is no way to do this using an UpdatePanel. The best you can achieve is refreshing the entire table, but not individual rows.</p>
http://stackoverflow.com/questions/564184/programming-interview-code-words4Programming Interview Code Words [closed]codeflunky2009-02-19T06:34:15Z2009-02-19T06:55:36Z
<p>I used to work in a large corporation, and conducting programming interviews was a frequent ocurrence. We would generally do group interviews where there were three or four of us in the room interviewing at the same time. Since there were so many bad programmers that came through the door (unfortunately), we eventually decided to come up with a "code word" (actually a phrase) which would let the rest of us know that this interview needed to end soon. In our case, the secret interview question was, "So how good are you with HTML?" (a question we would never actually ask.)</p>
<p>So the question is, have any of you used "code words" during group interviews to indicate something to the other interviewers? If so, what?</p>
http://stackoverflow.com/questions/561132/how-to-add-a-standard-set-of-using-statements-in-vs/561275#561275-1Answer by codeflunky for How to add a standard set of 'using' statements in VS?codeflunky2009-02-18T14:31:49Z2009-02-18T14:31:49Z<p>This doesn't answer your question directly, but you should take a look at ReSharper. It is a great tool for all kinds of reasons. But one thing it does in particular is add (and remove) all those using directives for you automatically, so you don't have to even think about it.</p>
http://stackoverflow.com/questions/557803/sql-server-transactional-replication-and-adding-new-tables/557930#5579300Answer by codeflunky for SQL Server transactional replication, and adding new tablescodeflunky2009-02-17T17:44:41Z2009-02-17T17:44:41Z<p>I found the answer. The problem is that I did not use the initial snapshot to initialize the subscriber in the first place. I used a different method (the backup and restore method), which means I have to manually transfer the schema and data before starting up the transactional replication process.</p>
http://stackoverflow.com/questions/20861/automated-web-service-testing0Automated Web Service Testingcodeflunky2008-08-21T19:19:47Z2009-02-16T16:23:06Z
<p>I would like to do some integration testing of a web service from within NUnit or MBUnit. I haven't delved into this too deeply yet, but I am pretty sure I will need to spin up WebDev.WebServer.exe within the "unit test" to do this. (I know it's not really a unit test).</p>
<p>Yes, I can test the underlying objects the web service uses on their own (which I am), but what I am interested in testing in this cases is that the proxies are all working and handled as expected, etc. </p>
<p>Any advice?</p>
http://stackoverflow.com/questions/536787/intermixing-html-form-and-table/536921#5369211Answer by codeflunky for Intermixing HTML form and tablecodeflunky2009-02-11T14:05:42Z2009-02-11T14:05:42Z<p>Don't use a second form. Wrap both buttons in the same form, and do something like this with the cancel button:</p>
<pre><code><input type="button" text="Cancel"
onclick="document.location.href='index.html';return false;" />
</code></pre>
http://stackoverflow.com/questions/535365/what-would-you-define-a-function/535377#5353770Answer by codeflunky for What would you define a function?codeflunky2009-02-11T04:03:05Z2009-02-11T04:24:52Z<p>In programming, "routine" and "function" are generally synonymous. As Ben notes, in some languages there is a difference in syntax between a routine which returns a value and one which doesn't. But in concept they are basically the same thing.</p>
http://stackoverflow.com/questions/528590/dynamic-query-in-sql-server/528619#5286191Answer by codeflunky for Dynamic Query in SQL Servercodeflunky2009-02-09T15:29:26Z2009-02-09T15:29:26Z<p>I assume you are running purely within Transact-SQL. What you'll need to do is dynamically create the SQL statement with your variable as the column name and use the EXECUTE command to run it. For example:</p>
<pre><code>EXECUTE('select ' + @myColumn + ' from MyTable')
</code></pre>
http://stackoverflow.com/questions/527283/sub-queries/527293#5272933Answer by codeflunky for Sub Queriescodeflunky2009-02-09T06:45:22Z2009-02-09T06:45:22Z<p>You can use subqueries in SELECT and WHERE clauses like this:</p>
<pre><code>select
c.customerid,
(
select sum(i.amount) as totalspent
from item i
where i.customerid = c.customerid
) as totalspent
from customer c
where exists
(
select *
from purchase p
where p.customerid = c.customerid
)
</code></pre>
http://stackoverflow.com/questions/520747/how-to-increase-dpi-of-an-image-and-make-it-sharper/520903#5209033Answer by codeflunky for How to increase DPI of an image and make it sharper?codeflunky2009-02-06T16:09:40Z2009-02-06T16:09:40Z<p>There are some software products, such as <a href="http://www.ononesoftware.com/detail.php?prodLine_id=2&gclid=CLOBiJyjyJgCFZCD3godCi2V0w" rel="nofollow">Genuine Fractals</a> (Photoshop plug-in), which do a decent job of artificially increasing resolution during image enlargement. However, these tools can only go so far, and it totally depends on how much information is in the image to begin with.</p>
http://stackoverflow.com/questions/520519/grab-code-behind-property-in-javascript/520581#5205812Answer by codeflunky for Grab code behind property in Javascript?codeflunky2009-02-06T14:56:16Z2009-02-06T14:56:16Z<p>Not sure if this works in your situation, but I think your best bet might be to attach the javascript to the event dynamically in your code behind on page load and just set the parameter value at that point.</p>
<p>For example:</p>
<pre><code>btnSubmit.Attributes.Add("onclick","alert(" + someProperty + ");");
</code></pre>
http://stackoverflow.com/questions/503564/how-might-i-schedule-a-c-windows-service-to-perform-a-task-daily/503593#5035936Answer by codeflunky for How might I schedule a C# Windows Service to perform a task daily?codeflunky2009-02-02T15:28:15Z2009-02-02T20:08:48Z<p>Check out <a href="http://quartznet.sourceforge.net/" rel="nofollow">Quartz.NET</a>. You can use it within a Windows service. It allows you to run a job based on a configured schedule, and it even supports a simple "cron job" syntax. I've had a lot of success with it.</p>
<p>Here's a quick example of its usage:</p>
<pre><code>// Instantiate the Quartz.NET scheduler
var schedulerFactory = new StdSchedulerFactory();
var scheduler = schedulerFactory.GetScheduler();
// Instantiate the JobDetail object passing in the type of your
// custom job class. Your class merely needs to implement a simple
// interface with a single method called "Execute".
var job = new JobDetail("job1", "group1", typeof(MyJobClass));
// Instantiate a trigger using the basic cron syntax.
// This tells it to run at 1AM every Monday - Friday.
var trigger = new CronTrigger(
"trigger1", "group1", "job1", "group1", "0 0 1 ? * MON-FRI");
// Add the job to the scheduler
scheduler.AddJob(job, true);
scheduler.ScheduleJob(trigger);
</code></pre>
http://stackoverflow.com/questions/476348/that-a-ha-moment-for-understanding-oo-design-in-c/476388#4763881Answer by codeflunky for That A-Ha Moment for Understanding OO Design in C#codeflunky2009-01-24T17:44:29Z2009-01-24T17:44:29Z<p>I think the only way to truly understand any new technology is to work with it day in and day out. Sure, you can learn lots of new things at a high level without getting too deep, but to get that "ah ha" moment, to really grok the language and patterns, you have to invest a lot of time into <em>just doing it</em>. </p>
<p>Sadly, that means your main line of work really has to be programming in C#. If you are just doing it here and there as a series of side projects, it's gonna be frustrating and slow going.</p>
<p>Just my opinion based on my own experience...</p>
http://stackoverflow.com/questions/231125/should-i-index-a-bit-field-in-sql-server15Should I index a bit field in SQL Server?codeflunky2008-10-23T19:31:53Z2009-01-09T17:11:15Z
<p>I remember reading at one point that indexing a field with low cardinality (a low number of distinct values) is not really worth doing. I admit I don't know enough about how indexes work to understand why that is.</p>
<p>So what if I have a table with 100 million rows in it, and I am selecting records where a bit field is 1? And let's say that at any point in time, there are only a handful of records where the bit field is 1 (as opposed to 0). Is it worth indexing that bit field or not? Why?</p>
<p>Of course I can just test it and check the execution plan, and I will do that, but I'm also curious about the theory behind it. When does cardinality matter and when does it not?</p>
http://stackoverflow.com/questions/19314/alternatives-to-windows-workflow-foundation5Alternatives to Windows Workflow Foundation?codeflunky2008-08-21T03:58:11Z2009-01-09T10:49:20Z
<p>I've been using WWF for a while as part of an internal call center application (ASP.NET), and while learning it was a good practice in understanding how a state machine based workflow system <em>should</em> work, I am definitely not in love with WWF itself. In my opinion it is:</p>
<ol>
<li>Overly complex, especially for use within web apps (all that threaded runtime stuff)</li>
<li>Immature (ever worked with that horrible designer?)</li>
<li>Anemic in its current feature set</li>
</ol>
<p>Does anyone have a suggestion for a better .NET based workflow framework? Specifically, I am looking for the following features:</p>
<ol>
<li>State machine based (mapping states to available actions)</li>
<li>A focus on user permissions (controlling who has access to what actions)</li>
<li>The ability to run workflows as timed background tasks (for example, to send out reminders for items that have been sitting in a certain state for x days)</li>
</ol>
<p>That's really all I need. I don't need to be able to "drag and drop" any activities or visually design the flow. I am perfectly comfortable writing actual code once a particular action is triggered.</p>
http://stackoverflow.com/questions/911250/visual-studio-debugger-not-attaching-when-at-the-root-of-a-website/944947#944947Comment by codeflunky on Visual Studio Debugger Not Attaching when at the Root of a websitecodeflunky2009-12-04T17:29:13Z2009-12-04T17:29:13ZThis totally saved me. My problem was that I had included a <location> tag around my <appSettings> tags (for reasons I won't mention) and that was causing the debugger to fail. Removing it solved the issue. Thank you!http://stackoverflow.com/questions/12836/c-database-access-dbnull-vs-null/12991#12991Comment by codeflunky on C# Database Access: DBNull vs nullcodeflunky2009-12-04T17:25:24Z2009-12-04T17:25:24ZInteresting. While using an ORM for DB access, I don't often explicitly use ExecuteScalar in my code. I usually end up retrieving full entity objects and looking at their values that way. So if the entity itself is null that's one thing, and if the value is null, that's something else. Just different ways of doing it. I admit that ExecuteScalar is more efficient if you just need one single value.http://stackoverflow.com/questions/525185/sql-server-database-locked/1785591#1785591Comment by codeflunky on SQL Server Database Lockedcodeflunky2009-12-04T17:17:48Z2009-12-04T17:17:48ZNice and specific, thanks.http://stackoverflow.com/questions/67964/what-is-the-best-free-way-to-clean-up-word-html/1813798#1813798Comment by codeflunky on What is the best free way to clean up Word HTML?codeflunky2009-12-04T17:15:06Z2009-12-04T17:15:06ZLooks cool. I'll try it sometime.http://stackoverflow.com/questions/1296849/visual-studio-multiple-startup-projects-problem/1297039#1297039Comment by codeflunky on Visual Studio "Multiple Startup Projects" Problemcodeflunky2009-08-19T14:32:13Z2009-08-19T14:32:13ZYeah, that would work; although then I would have to open the browser windows manually which is what I'm trying to avoid. Interestingly, I changed Visual Studio's default browser to Firefox, and it works as expected. (opens multiple browsers) Go figure.http://stackoverflow.com/questions/21715/listbusinessobject-or-businessobjectcollection/21724#21724Comment by codeflunky on List<BusinessObject> or BusinessObjectCollection?codeflunky2009-07-24T16:35:08Z2009-07-24T16:35:08ZGood idea, although my LoadAll() method isn't really generic. It loads from different tables depending on the underlying object type. There might be a way to do it generically, but I haven't really looked into that so far.http://stackoverflow.com/questions/747351/custom-brace-formatting-with-resharper/819393#819393Comment by codeflunky on Custom Brace formatting with Resharpercodeflunky2009-06-19T21:45:06Z2009-06-19T21:45:06ZToo bad someone can't mark this as the correct answer because it obviously is.http://stackoverflow.com/questions/134064/reuse-existing-types-is-ignored-when-adding-a-service-reference/1007095#1007095Comment by codeflunky on "Reuse existing types" is ignored when adding a service referencecodeflunky2009-06-19T02:00:08Z2009-06-19T02:00:08ZIt would be more clear if you asked this in a comment to Rich's answer.http://stackoverflow.com/questions/557803/sql-server-transactional-replication-and-adding-new-tables/806972#806972Comment by codeflunky on SQL Server transactional replication, and adding new tablescodeflunky2009-05-04T23:20:47Z2009-05-04T23:20:47ZWhat I did is I manually scripted out and applied the changes that needed to be made on the subcriber database (create table, etc.) Then, when I started the transactional replication back up, the tables were there. It's been a while, but it was something like that.http://stackoverflow.com/questions/555395/sql-server-transactional-replication-over-vpnComment by codeflunky on SQL Server Transactional Replication Over VPNcodeflunky2009-02-22T02:38:28Z2009-02-22T02:38:28ZI'm using 2005. I'll try the DBCC INPUTBUFFER thing. Thanks for the suggestion.http://stackoverflow.com/questions/517102/how-would-you-make-a-temporal-many-to-many-relationship-in-sql/517231#517231Comment by codeflunky on How would you make a Temporal Many-to-Many Relationship in SQL?codeflunky2009-02-20T04:37:24Z2009-02-20T04:37:24ZWow, you've worked with this a lot. I initially thought of "effective pricing" on a product table as an example, but clearly there are many more uses for "effective dating" than that.http://stackoverflow.com/questions/543639/dynamic-table-names-in-linq-to-sql/547411#547411Comment by codeflunky on Dynamic Table Names in Linq to SQLcodeflunky2009-02-20T04:34:20Z2009-02-20T04:34:20ZNice, I never knew that.http://stackoverflow.com/questions/358821/linq-to-sql-error-with-identitiy-increment-field/358921#358921Comment by codeflunky on Linq to sql error with identitiy increment fieldcodeflunky2009-02-20T04:30:35Z2009-02-20T04:30:35ZIt sounds like you edited the L2S file manually. I would recommend always letting the file be generated from your database automatically (using sql metal or the designer). Editing it directly allows inconsistencies to occurr, as you see here.http://stackoverflow.com/questions/567951/how-to-programatically-search-a-pdf-document-in-c/567961#567961Comment by codeflunky on How to programatically search a PDF document in c#codeflunky2009-02-20T03:10:58Z2009-02-20T03:10:58Z+1 for iTextSharp. It should be able to do what you need.http://stackoverflow.com/questions/567939/visual-studio-2008-unnecessary-project-buildingComment by codeflunky on Visual Studio 2008 Unnecessary Project Buildingcodeflunky2009-02-20T01:22:22Z2009-02-20T01:22:22ZIs this while you are actively developing and debugging or as part of a build script? For the first one, this is possible with the right settings. For the second, it's not easily doable.