User Mark Glorie - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T22:22:10Zhttp://stackoverflow.com/feeds/user/952http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/41039/find-in-files-search-all-code-in-team-foundation-server7Find in Files: Search all code in Team Foundation ServerMark Glorie2008-09-03T01:49:04Z2009-10-31T02:45:34Z
<p>Is there a way to search the latest version of every file in TFS for a specific string or regex? This is probably the only thing I miss from Visual Source Safe... </p>
<p>Currently I perform a Get Latest on the entire codebase and use Windows Search, but this gets quite painful with over 1GB of code in 75,000 files. </p>
<p><strong>EDIT</strong>: Tried the powertools mentioned, but the "Wildcard Search" option appears to only search filenames and not contents.</p>
<p><strong>UPDATE</strong>: We have implemented a customised search option in an existing MOSS (Search Server) installation. Thanks for the help guys.</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954351#95435122Answer by Mark Glorie for Hidden Features of HTMLMark Glorie2009-06-05T05:08:35Z2009-10-06T07:45:00Z<pre><code><blink>
</code></pre>
<p>Must be used for anything important on the site. Most important sites wrap all of content in blink.</p>
<pre><code><marquee>
</code></pre>
<p>Creates a realistic scrolling effect, great for e-books etc. </p>
<p><em>Edit: Easy-up fellas, this was just an attempt at humour</em></p>
http://stackoverflow.com/questions/800762/gridview-validate-that-selectedindex-10Gridview: Validate that SelectedIndex > -1Mark Glorie2009-04-29T03:33:49Z2009-09-06T02:53:16Z
<p>I currently have a Gridview, and I want to use client-side validation to ensure that a row has been selected (ie: SelectedIndex > -1). </p>
<p>At the moment I'm using <code><asp:CustomValidator></code> but want to move away from server-side validation. Here is what I'm currently doing: </p>
<pre><code><asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False">
<Columns>
<asp:BoundField HeaderText="MSN" DataField="MSN" />
<asp:CommandField ShowSelectButton="True" />
</Columns>
</asp:GridView>
<asp:CustomValidator ID="cvSelected" runat="server" ErrorMessage="Please select!" />
</code></pre>
<p>And then in code behind: </p>
<pre><code>Private Sub cvSelected_ServerValidate(ByVal source As Object, ByVal args As _
System.Web.UI.WebControls.ServerValidateEventArgs) Handles cvSelected.ServerValidate
args.IsValid = (GridView1.SelectedIndex > -1)
End Sub
</code></pre>
http://stackoverflow.com/questions/1220628/automated-testing-of-component-handlers-in-3rd-party-javascript0Automated Testing of Component Handlers in 3rd Party JavascriptMark Glorie2009-08-03T04:00:29Z2009-08-04T05:59:22Z
<p>I'm currently using <a href="http://www.artoftest.com/products/webaii.aspx" rel="nofollow">WebAii</a> and <a href="http://watin.sourceforge.net/" rel="nofollow">WatiN</a> to try and automate some tests of a 3rd party web product, to see if some data migration will break the web portal. </p>
<p>The problem I'm having is that they have used Component Handlers in their Javascript, and so invoking a Click on a web-part (SPAN, DIV etc) is not triggering the generic handler. </p>
<pre><code>// WatiN example
// Find the GoTo link
Frame uiFrame = ie.Frame(Find.ById("someFrame"));
Span gotoSpan = uiFrame.Span(Find.ById("someSpan"));
gotoSpan.Click(); //Click it!
</code></pre>
<p>Pointers in the right direction would be much appreciated!</p>
http://stackoverflow.com/questions/1220628/automated-testing-of-component-handlers-in-3rd-party-javascript/1225876#12258760Answer by Mark Glorie for Automated Testing of Component Handlers in 3rd Party JavascriptMark Glorie2009-08-04T05:59:22Z2009-08-04T05:59:22Z<p>Found the answer. The span was only responding to a MouseUp event, instead of the click =P </p>
<pre><code>//WebAii example
eElement = uiFrame.Find.ById("someSpan");
uiFrame.Actions.InvokeEvent(eElement, ScriptEventType.OnMouseUp);
</code></pre>
http://stackoverflow.com/questions/909338/what-is-the-worst-commit-message-you-have-ever-authored/909470#9094709Answer by Mark Glorie for What is the WORST commit message you have ever authored?Mark Glorie2009-05-26T07:55:40Z2009-05-26T07:55:40Z<p>Can't take full credit for this one, but one of the web designers was tasked with adding corporate advertising to the internal homepage. Check-in message: </p>
<blockquote>
<p>Added a banner to the default admin page. Please have mercy on me =(</p>
</blockquote>
http://stackoverflow.com/questions/39037/how-to-convert-word-and-excel-documents-to-pdf-programmatically/885812#8858120Answer by Mark Glorie for How to convert Word and Excel documents to PDF programmatically?Mark Glorie2009-05-20T01:45:42Z2009-05-20T01:45:42Z<p>I needed to do this myself, but managed to get it done with .Net and without 3rd party tools: </p>
<p>MSDN: <a href="http://msdn.microsoft.com/en-us/library/bb412305.aspx" rel="nofollow">Saving Word 2007 Documents to PDF and XPS Formats</a></p>
<p>Pretty simple, about 50 lines of code. However I think you will need Word 2007 installed on the machine as well as the ability to <a href="http://www.microsoft.com/downloads/details.aspx?familyid=F1FC413C-6D89-4F15-991B-63B07BA5F2E5&displaylang=en" rel="nofollow">Save As PDF</a></p>
http://stackoverflow.com/questions/271718/loading-a-value-on-the-insert-command-of-a-detailsview/696436#6964361Answer by Mark Glorie for Loading a value on the insert command of a detailsviewMark Glorie2009-03-30T08:41:50Z2009-03-30T08:41:50Z<p>I would update the field in the DetailsView to a TemplateField: </p>
<pre><code><asp:TemplateField>
<InsertItemTemplate>
<asp:TextBox ID="txtField" runat="server" Text='<%# Bind("GUID") %>'/>
</InsertItemTemplate>
<ItemTemplate>
<asp:Label ID="lblField" runat="server" Text='<%# Bind("GUID") %>'/>
</ItemTemplate>
</asp:TemplateField>
</code></pre>
<p>Then you have two options: </p>
<ul>
<li>generate your GUID and insert into
your datasource. This may have to be done with SQL since you mentioned using SqlDataSource</li>
<li><p>remove the binding and access the controls from code in the
DataBound event of your DetailsView </p>
<pre><code>Private Sub dv_DataBound(ByVal sender As Object, ByVal e As EventArgs) Handles dv.DataBound
dim txt as Textbox = dv.FindControl("txtField")
txt.Text = GenerateGUID()
End Sub
</code></pre></li>
</ul>
http://stackoverflow.com/questions/61953/how-do-you-bind-an-enum-to-a-dropdownlist-control-in-asp-net/61961#6196112Answer by Mark Glorie for How do you bind an Enum to a DropDownList control in ASP.NET?Mark Glorie2008-09-15T07:10:22Z2009-02-13T04:26:43Z<p>I probably wouldn't <strong>bind</strong> the data as it's an enum, and it won't change after compile time (unless I'm having one of those <em>stoopid</em> moments). </p>
<p>Better just to iterate through the enum: </p>
<pre><code>Dim itemValues As Array = System.Enum.GetValues(GetType(Response))
Dim itemNames As Array = System.Enum.GetNames(GetType(Response))
For i As Integer = 0 To itemNames.Length - 1
Dim item As New ListItem(itemNames(i), itemValues(i))
dropdownlist.Items.Add(item)
Next
</code></pre>
<p>Or the same in C# </p>
<pre><code>Array itemValues = System.Enum.GetValues(typeof(Response));
Array itemNames = System.Enum.GetNames(typeof(Response));
for (int i = 0; i <= itemNames.Length - 1 ; i++) {
ListItem item = new ListItem(itemNames(i), itemValues(i));
dropdownlist.Items.Add(item);
}
</code></pre>
http://stackoverflow.com/questions/130941/net-multithreading-sql-connectionpool1.Net Multithreading: SQL ConnectionPoolMark Glorie2008-09-25T01:17:13Z2009-01-09T21:43:39Z
<p>In a VB.Net Windows Service I'm currently pooling units of work with: </p>
<pre><code>ThreadPool.QueueUserWorkItem(operation, nextQueueID)
</code></pre>
<p>In each unit of work (or thread I'll use for ease of understanding), it will make a couple MSSQL operations like so: </p>
<pre><code> Using sqlcmd As New SqlCommand("", New SqlConnection(ConnString))
With sqlcmd
.CommandType = CommandType.Text
.CommandText = "UPDATE [some table]"
.Parameters.Add("@ID", SqlDbType.Int).Value = msgID
.Connection.Open()
.ExecuteNonQuery()
.Connection.Close() 'Found connections not closed quick enough'
End With
End Using
</code></pre>
<p>When running a <code>netstat -a -o</code> on the server I'm seeing about 50 connections to SQL server sitting on <code>IDLE</code> or <code>ESTABLISHED</code>, this seems excessive to me especially since we have much larger Web Applications that get by with 5-10 connections. </p>
<p>The connection string is global to the application (doesn't change), and has <code>Pooling=true</code> defined as well. </p>
<p>Now will each of these threads have their own <code>ConnectionPool</code>, or is there one <code>ConnectionPool</code> for the entire .EXE process?</p>
http://stackoverflow.com/questions/418822/asp-net-negative-numbers-in-parenthesis/419012#4190120Answer by Mark Glorie for ASP.NET - Negative numbers in ParenthesisMark Glorie2009-01-07T02:40:09Z2009-01-07T02:40:09Z<p>Are you displaying your data in Gridview/Datagrids? If so then formatting can be applied per bound-column, something like: </p>
<pre><code><asp:BoundField DataFormatString="{##;(##)}"/>
</code></pre>
<p>This only works with integers however...</p>
http://stackoverflow.com/questions/14205/whats-your-favourite-programming-language-and-its-killer-feature/418950#4189500Answer by Mark Glorie for What's your favourite programming language, and its killer feature?Mark Glorie2009-01-07T02:13:12Z2009-01-07T02:13:12Z<p>No one has made a stand for VB so I will! (well, .Net framework at least) </p>
<ul>
<li><strong>Background compilation</strong>, I can add to a Class, and have my new functionality appear in Intellisence <strong>immediately</strong>, without compilation, or even saving the file!</li>
<li><p><strong>ForEach loops</strong>, puh-lease! </p>
<pre><code>ForEach item As String In ListOfStrings
'stuff'
Next
</code></pre></li>
</ul>
<p>People bag out VB.Net (or just MS in general). But in my line of work, we get judged on time-per-feature, so the less time working on pointer arithmetic the better I say!</p>
http://stackoverflow.com/questions/367193/enterprise-solution-emails/367230#3672301Answer by Mark Glorie for enterprise solution: emailsMark Glorie2008-12-15T00:52:57Z2008-12-15T00:52:57Z<p>The solution my workplace has adopted involves the various applications writing to a central database table (via various means like web services or class libraries). </p>
<p>We then have one Windows Service polling the table (in theory we could load-balance multiple services if load became too high) and composing and sending the mail. </p>
<p>This gives us good logging of all the email sent, and also allows us to have centralized email templates. </p>
<p>This is however just one solution, might not be the best, but it works.</p>
http://stackoverflow.com/questions/348278/project-suggestion-for-asp-net-mvc/348340#3483400Answer by Mark Glorie for Project Suggestion for ASP.NET MVCMark Glorie2008-12-07T23:44:52Z2008-12-07T23:44:52Z<p>Photo Gallery (although I think most people have given up on this and are using flickr)</p>
http://stackoverflow.com/questions/324904/why-isnt-my-page-redirecting-to-the-login-screen-for-this-protected-page/324914#3249140Answer by Mark Glorie for Why isn't my page redirecting to the login screen for this protected page?Mark Glorie2008-11-28T01:25:29Z2008-11-28T01:25:29Z<p>For one of my applications I have the following in the same node as <code><authentication></code>: </p>
<pre><code><authorization>
<deny users="?"/>
</authorization>
</code></pre>
<p>But this covers the entire application...</p>
http://stackoverflow.com/questions/322941/writeonly-property-or-method/323138#3231380Answer by Mark Glorie for WriteOnly Property or Method??Mark Glorie2008-11-27T07:36:54Z2008-11-27T07:36:54Z<p>However I've seen the .Net Framework itself use ReadOnly Properties, the first one that comes to mind is: </p>
<pre><code>System.Net.Mail.MailMessage.To
</code></pre>
<p>For which you have to call a method to write to: </p>
<pre><code>System.Net.Mail.MailMessage.To.Add(Recipient As String)
</code></pre>
http://stackoverflow.com/questions/232116/is-tfss-source-control-just-a-beefed-up-vss-or-is-it-significantly-different/232139#2321390Answer by Mark Glorie for Is TFS's source control just a beefed up VSS or is it significantly different?Mark Glorie2008-10-24T00:59:03Z2008-10-24T00:59:03Z<p>For starters you can have multiple persons have the same file checked out (however there is still the option to exclusively check out as well). </p>
<p>The storage is database driven, instead of file driven. For me this has made searching the codebase harder, but it allows far easier merging and annotations (who wrote this line of code?). </p>
<p>TFS is much more than just source control as well. Task management, check-in policies, the <a href="http://msdn.microsoft.com/en-us/library/ms242904(VS.80).aspx" rel="nofollow">list goes on</a></p>
http://stackoverflow.com/questions/54001/could-not-load-type-xxx-global/228209#2282090Answer by Mark Glorie for Could not load type 'XXX.Global'Mark Glorie2008-10-23T01:33:49Z2008-10-23T01:33:49Z<p>I've found that it happens when the Global.asax.(vb|cs) wasn't converted to a partial class properly.</p>
<p>Quickest solution is to surround the class name 'Global' with [square brackets] like so (in VB.Net): </p>
<pre><code>Public Class [Global]
Inherits System.Web.HttpApplication
...
</code></pre>
http://stackoverflow.com/questions/190198/why-isnt-my-net-calculated-md5-hash-equivalent-to-the-hash-calculated-on-a-web/190210#1902100Answer by Mark Glorie for Why isn't my .net-calculated MD5 hash equivalent to the hash calculated on a web site?Mark Glorie2008-10-10T05:20:59Z2008-10-10T05:20:59Z<p>This VB.Net version gives the same results as MySQL from my own experience: </p>
<pre><code>Private Function MD5Hash(ByVal str As String) As String
Dim md5 As MD5 = MD5CryptoServiceProvider.Create
Dim hashed As Byte() = md5.ComputeHash(Encoding.Default.GetBytes(str))
Dim sb As New StringBuilder
For i As Integer = 0 To hashed.Length - 1
sb.AppendFormat("{0:x2}", hashed(i))
Next
Return sb.ToString
End Function
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185979#18597922Answer by Mark Glorie for What is the best comment in source code you have ever encountered?Mark Glorie2008-10-09T05:06:25Z2008-10-09T05:06:25Z<p>Classic ASP: </p>
<pre><code>'Is it worth it, let me work it'
'I put my thing down, flip it and reverse it'
'Ti esrever dna ti pilf, nwod gniht ym tup I'
NextIP = StrReverse(UserRecordset.Fields.Item(0))
</code></pre>
http://stackoverflow.com/questions/161272/what-websites-do-you-use-to-keep-up-to-speed/161303#1613032Answer by Mark Glorie for What website(s) do you use to keep up to speed?Mark Glorie2008-10-02T08:10:39Z2008-10-02T08:10:39Z<p>This has been asked before but... </p>
<p>A Continuous Learner's Weblog - <a href="http://spietrek.blogspot.com/" rel="nofollow">http://spietrek.blogspot.com/</a><br />
Alvin Ashcraft’s Morning Dew - <a href="http://www.alvinashcraft.com" rel="nofollow">http://www.alvinashcraft.com</a><br />
Coding Horror - <a href="http://www.codinghorror.com/blog" rel="nofollow">http://www.codinghorror.com/blog</a><br />
I. M. Wright’s Hard Code - <a href="http://blogs.msdn.com/eric_brechner/default.aspx" rel="nofollow">http://blogs.msdn.com/eric_brechner/default.aspx</a><br />
Intellectual Hedonism - <a href="http://www.intellectualhedonism.com" rel="nofollow">http://www.intellectualhedonism.com</a><br />
Joel on Software - <a href="http://www.joelonsoftware.com" rel="nofollow">http://www.joelonsoftware.com</a><br />
Scott Hanselman's Computer Zen - <a href="http://www.hanselman.com/blog" rel="nofollow">http://www.hanselman.com/blog</a><br />
Scott Guthrie - <a href="http://weblogs.asp.net/scottgu/default.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/default.aspx</a><br />
For LOLs: Worse Than Failure - <a href="http://thedailywtf.com" rel="nofollow">http://thedailywtf.com</a></p>
http://stackoverflow.com/questions/161286/most-amazing-piece-of-code-youve-ever-seen/161294#1612945Answer by Mark Glorie for Most amazing piece of code you've ever seenMark Glorie2008-10-02T08:07:40Z2008-10-02T08:07:40Z<p>Scott Hanselman has already done the work for you in his <a href="http://www.hanselman.com/blog/CategoryView.aspx?category=Source+Code" rel="nofollow">Source Code</a> series</p>
http://stackoverflow.com/questions/161127/can-a-wpf-listbox-be-read-only/161232#1612321Answer by Mark Glorie for Can a WPF ListBox be "read only"?Mark Glorie2008-10-02T07:42:12Z2008-10-02T07:58:15Z<p>Is your ItemsControl/ListBox databound? </p>
<p>I'm just thinking you could make the Background Brush of each item bound to a property from the source data, or pass the property through a converter. Something like: </p>
<pre><code> <ItemsControl DataContext="{Binding Source={StaticResource Things}}" ItemsSource="{Binding}" Margin="0">
<ItemsControl.Resources>
<local:SelectedConverter x:Key="conv"/>
</ItemsControl.Resources>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<local:Control Background="{Binding Path=IsSelected, Converter={StaticResource conv}}"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</code></pre>
http://stackoverflow.com/questions/161212/sending-mass-emails-programmatically/161215#1612151Answer by Mark Glorie for Sending mass emails programmaticallyMark Glorie2008-10-02T07:33:54Z2008-10-02T07:33:54Z<p>We have various applications writing to an email queue in a database table, and a .Net Windows Service polling that table to compose the emails and send out through our mail server. </p>
<p>We do up to 1000 emails per minute...</p>
http://stackoverflow.com/questions/159799/vb-net-automating-ms-word-for-spell-check-capabilities/160966#1609661Answer by Mark Glorie for VB.Net Automating MS Word for Spell Check CapabilitiesMark Glorie2008-10-02T05:12:12Z2008-10-02T05:12:12Z<p>We gave up on trying to use a dependency on Word, as both have differing versions installed or no Office installation at all! Instead opting for <a href="http://www.codeproject.com/KB/string/netspell.aspx" rel="nofollow">NetSpell</a>.</p>
http://stackoverflow.com/questions/160776/how-would-you-compare-ip-address/160794#1607941Answer by Mark Glorie for How would you compare IP address?Mark Glorie2008-10-02T03:35:51Z2008-10-02T03:35:51Z<p>Do you have an existing problem with efficiency? </p>
<p>If so then by all means post the code (or pseudo-code) and we can pick at the corpse. </p>
<p>If not then I would suggest trying something simple like storing the entries in a sorted list and using your environment's existing <code>Sort()</code> and <code>Find()</code>.</p>
http://stackoverflow.com/questions/151335/net-winforms-deployment/151352#1513525Answer by Mark Glorie for .NET Winforms DeploymentMark Glorie2008-09-30T00:50:33Z2008-09-30T00:50:33Z<p>Certainly, in the <code>Solution Explorer</code> (assuming Visual Studio here, since you don't mention) <code>Right-click</code> and <code>Properties</code> of the file(s) you want included. </p>
<p>There should be an option there for <code>Build Action</code> which you can set to <code>Embedded Resource</code>.</p>
http://stackoverflow.com/questions/131053/object-reference-not-set-to-an-instance-of-object/131177#1311771Answer by Mark Glorie for object reference not set to an instance of objectMark Glorie2008-09-25T02:34:01Z2008-09-25T02:34:01Z<p>And if you think it's occuring when no data is returned from a database query then maybe you should test the result before doing an operation on it? </p>
<pre><code>Dim result As String = SqlCommand.ExecuteScalar() 'just for scope'
If result Is Nothing OrElse IsDBNull(result) Then
'no result!'
End If
</code></pre>
http://stackoverflow.com/questions/130937/experience-needed/130982#1309820Answer by Mark Glorie for Experience Needed?Mark Glorie2008-09-25T01:26:37Z2008-09-25T01:26:37Z<p>I took the old school approach of entering a company at the bottom (think mail clerk of a law firm) and then becoming one of the Developers after a few years. </p>
<p>This worked out for me as I made my intentions clear. Once my former managers knew I wasn't another peon after their position, they were more than helpful in assisting me make the move, even letting me know what specific skills would be best to learn up on. </p>
<p>But to each their own, do what you enjoy (open source, weekend projects etc) and see where the world takes you.</p>
http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119037#11903712Answer by Mark Glorie for What is the strangest/weirdest program you've ever made?Mark Glorie2008-09-23T03:59:59Z2008-09-23T03:59:59Z<p>Our receptionists would send out the Daily Birthdays email every day, an email to the entire company to announce who has their birthday that day (including weekends on Friday's email). This made everyone feel a little loved by this human touch. </p>
<p>They got a little tired of this, and since everyone's birthday is in the staff HR database already, it became my task to implement this in code. My nickname for it? <strong>Automated Love</strong>.</p>
http://stackoverflow.com/questions/41039/find-in-files-search-all-code-in-team-foundation-server/1644437#1644437Comment by Mark Glorie on Find in Files: Search all code in Team Foundation ServerMark Glorie2009-11-04T07:13:46Z2009-11-04T07:13:46ZAgain, this searches filenames, not the lost feature "Find in Files".http://stackoverflow.com/questions/620265/can-i-set-up-html-email-templates-in-c-on-asp-net/689686#689686Comment by Mark Glorie on Can I set up HTML/Email Templates in C# on ASP.NET?Mark Glorie2009-08-26T01:07:48Z2009-08-26T01:07:48ZI have done this also and it worked well. Plus you can historically go back and see the records of emails sent, if reports are your thing.http://stackoverflow.com/questions/1225042/asks-for-ad-credentials-connection-interrupted-on-postback/1225900#1225900Comment by Mark Glorie on Asks for AD credentials / "Connection Interrupted" on PostbackMark Glorie2009-08-10T06:50:36Z2009-08-10T06:50:36Z+1 for checking corporate firewalls too. I've experienced a corporate firewall with Stateful Packet Inspection dropping a session due to dodgy-looking viewstate.http://stackoverflow.com/questions/464445/is-there-an-official-windows-presentation-foundation-wpf-logo/1226872#1226872Comment by Mark Glorie on Is there an official Windows Presentation Foundation (WPF) logo?Mark Glorie2009-08-06T04:58:02Z2009-08-06T04:58:02ZSilverlight probably has one because it needs to be identified by the general Internet public, much like Flash and QuickTime. Whereas a WPF app is just going to be another app the user has on their machine.http://stackoverflow.com/questions/954327/hidden-features-of-html/954351#954351Comment by Mark Glorie on Hidden Features of HTMLMark Glorie2009-06-05T05:12:32Z2009-06-05T05:12:32ZWhat can I say? I did it for the lulzhttp://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/888240#888240Comment by Mark Glorie on What is your longest-held programming assumption that turned out to be incorrect?Mark Glorie2009-05-21T00:38:18Z2009-05-21T00:38:18ZYou will never have bug-free software, just software that hasn't had any bugs found yet.http://stackoverflow.com/questions/551911/how-to-explain-to-your-mom-what-an-algorithm-is/552120#552120Comment by Mark Glorie on How to explain to your mom what an algorithm is?Mark Glorie2009-02-16T04:25:54Z2009-02-16T04:25:54ZBut who does the repeat step? =)http://stackoverflow.com/questions/376775/need-a-geeky-dog-name/376905#376905Comment by Mark Glorie on Need a geeky dog nameMark Glorie2009-01-05T01:05:23Z2009-01-05T01:05:23ZI didn't think xkcd invented SQL injection attacks?http://stackoverflow.com/questions/41039/find-in-files-search-all-code-in-team-foundation-server/375970#375970Comment by Mark Glorie on Find in Files: Search all code in Team Foundation ServerMark Glorie2008-12-18T06:51:58Z2008-12-18T06:51:58Zwithout indexing? ouch...http://stackoverflow.com/questions/333181/a-question-about-datagrid-and-sql-queryComment by Mark Glorie on A Question About Datagrid And Sql QueryMark Glorie2008-12-02T06:24:47Z2008-12-02T06:24:47Zif you want more answers, make the title a little clearer (Datagrid, Sql, Dynamic Columns)http://stackoverflow.com/questions/161212/sending-mass-emails-programmatically/161215#161215Comment by Mark Glorie on Sending mass emails programmaticallyMark Glorie2008-11-03T01:47:58Z2008-11-03T01:47:58ZI work at an ISP (Internet Provider), we have our own SMTP servers...http://stackoverflow.com/questions/226330/what-tfs-tool-would-you-recommend/226495#226495Comment by Mark Glorie on What TFS tool would you recommend?Mark Glorie2008-10-24T01:17:45Z2008-10-24T01:17:45ZAlso if you're manually marking files as writable and editing without checking out through the UI, TFS/VS will stumble around because it doesn't know what state it's in.http://stackoverflow.com/questions/228024/what-major-applications-does-microsoft-sell-which-use-the-net-framework/228059#228059Comment by Mark Glorie on What major applications does Microsoft sell which use the .NET framework?Mark Glorie2008-10-23T01:26:00Z2008-10-23T01:26:00ZI didn't think Outlook Express was written, it just appeared one day, and has been terrorizing Support departments ever since!http://stackoverflow.com/questions/41039/find-in-files-search-all-code-in-team-foundation-server/210144#210144Comment by Mark Glorie on Find in Files: Search all code in Team Foundation ServerMark Glorie2008-10-17T00:22:12Z2008-10-17T00:22:12ZSorry I don't see where it offers to search inside files?http://stackoverflow.com/questions/130941/net-multithreading-sql-connectionpool/130963#130963Comment by Mark Glorie on .Net Multithreading: SQL ConnectionPoolMark Glorie2008-09-25T01:46:04Z2008-09-25T01:46:04ZUsually only 5-10 work items max, but sometimes up to 1000 (before you ask I'm sending emails here!)