User Brett McCann - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T20:16:04Zhttp://stackoverflow.com/feeds/user/9293http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1868108/get-iis-web-site-identifier-programmatically0Get IIS Web Site identifier programmaticallyBrett McCann2009-12-08T16:27:25Z2009-12-09T16:12:45Z
<p>I'm trying to use adsutil in an installation script of a web app I am installing on IIS 6.0 to set access control. There is a command that works as follows:</p>
<pre><code>adsutil.vbs set w3svc/1/root/Authflags 4
</code></pre>
<p>This is the command for the default web site, as its Identifier is 1. However, new web apps are given a generated Identifier. In my case, the app I installed was given the Identifier of 2082238887, so my command should look like this</p>
<pre><code>adsutil.vbs set w3svc/2082238887/root/Authflags 4
</code></pre>
<p>However, I only know this value now from previously installing the app. How would I get this ID during a fresh installation? Every example I have seen for adsutil assumes you are working with the default web site, and therefore an ID of 1. </p>
<p>I need my install script to install the app, get its Identifier, and then use it to set permissions via adsutil.</p>
http://stackoverflow.com/questions/1868108/get-iis-web-site-identifier-programmatically/1874962#18749620Answer by Brett McCann for Get IIS Web Site identifier programmaticallyBrett McCann2009-12-09T16:12:45Z2009-12-09T16:12:45Z<p>This script lets you provide the site name as a parameter and iterates over the web sites until it matches the site name you provide. I included the code to update the authflags. This can be run via cscript.exe.</p>
<pre><code>Dim Siteobj
Dim Site
Dim SiteName
Dim SiteId
Dim SiteLocation
SiteName=WScript.Arguments( 0 )
Set SiteObj = GetObject("IIS://localhost/W3SVC")
for each Site in Siteobj
if Site.keytype="IIsWebServer" Then
if Site.ServerComment = SiteName Then
SiteId=Site.Name
SiteLocation = "IIS://LocalHost/w3svc/" & SiteId
SiteLocation = SiteLocation & "/root"
Dim SiteObj1
Set SiteObj1 = GetObject(SiteLocation)
SiteObj1.authflags=4
SiteObj1.SetInfo
End if
End if
Next
</code></pre>
http://stackoverflow.com/questions/1862071/how-to-set-authentication-methods-in-iis-programattically1How to set Authentication Methods in IIS programatticallyBrett McCann2009-12-07T18:50:38Z2009-12-09T00:32:49Z
<p>We are working on automating the deployment of some IIS applications. I've used cscript.exe inside a windows batch file to create the web app and such. There are however a few settings currently done by hand that I need to automate. Namely, if you look at the properties of an app, under Directory Structure -> Authentication and access control -> Edit, I need to uncheck Enable anonymous access and check Integrated Windows authentication.</p>
<p>Is there an easy way to do this from a windows batch file?</p>
<p>EDIT: I should clarify this is IIS 6.0, so appcmd is not available.</p>
http://stackoverflow.com/questions/1755180/distributed-computing-framework-net-specifically-for-cpu-instensive-operatio/1849730#18497302Answer by Brett McCann for Distributed Computing Framework (.NET) - Specifically for CPU Instensive operationsBrett McCann2009-12-04T21:25:49Z2009-12-04T21:25:49Z<p><b>Appistry CloudIQ Platform</b> <a href="http://www.appistry.com" rel="nofollow">http://www.appistry.com</a></p>
<ul>
<li>Will make hundreds of machines appear as one computing resource.</li>
<li>Currently used in production at <a href="http://www.appistry.com/customers/profile/fedex" rel="nofollow">FedEx</a> to run routing algorithms </li>
<li>Allows you to write apps in C,C++, Java and .Net</li>
<li>No single point of failure</li>
<li>Auto recover/retry of failed tasks</li>
</ul>
http://stackoverflow.com/questions/1765869/handling-mouse-events-in-runtime-created-objects-in-c0handling mouse events in runtime created objects in c#Brett McCann2009-11-19T19:22:21Z2009-11-19T19:28:10Z
<p>I'm writing a c# windows app, and as one task, I am creating Panel objects at runtime. I have my custom Panel which is defined as:</p>
<pre><code>class FlowState : Panel
{
:
:
}
</code></pre>
<p>I have an init method to set size, location, etc. However once this panel is created on the windows form, I want to handle mouse events, such as mouseDown and mouseUp. If you created a panel at design time and used the gui to define these events, you would get methods like the following (for a panel named 'panel1'):</p>
<pre><code>private void panel1_MouseDown(object sender, MouseEventArgs e)
{
//do stuff
}
</code></pre>
<p>How do I put code into my FlowState object which extends Panel to handle mouse events such as this?</p>
http://stackoverflow.com/questions/1564536/what-are-you-doing-in-the-cloud/1571990#15719900Answer by Brett McCann for What are you doing in the cloud?Brett McCann2009-10-15T12:12:38Z2009-10-15T12:12:38Z<p>Is your desire to be "cloud based" purely one of making use of public servers and not having to invest in the hardware (or possible costs of maintenance)? Many businesses are looking at private clouds to get the scalability and reliability of a cloud based solution, while keeping their valued assets within their corporate firewalls. <a href="http://www.appistry.com/customers/profile/fedex" rel="nofollow">FexEx is doing something like this</a>. Also, a cloud based solution which automates the provisioning of applications can greatly reduce the maintenance cost. </p>
http://stackoverflow.com/questions/383920/what-is-the-best-library-for-java-to-grid-cluster-enable-your-application/413138#4131382Answer by Brett McCann for What is the best library for Java to grid/cluster-enable your application?Brett McCann2009-01-05T13:47:57Z2009-10-14T17:52:48Z<p>Another you can add to the list is <a href="http://www.appistry.com" rel="nofollow">Appistry CloudIQ</a>. It is a distributed computing environment. It is available as a <a href="http://www.appistry.com/developers/" rel="nofollow">free download</a> up to 5 machines. It includes load distribution as well as automatic fail over of work in the case of a hardware failure, among other features.</p>
http://stackoverflow.com/questions/1560012/are-there-any-big-names-running-on-the-cloud/1565893#15658931Answer by Brett McCann for Are there any big names running on the cloud?Brett McCann2009-10-14T12:17:01Z2009-10-14T12:17:01Z<p>FedEx is running on Appistry CloudIQ:</p>
<p><a href="http://www.appistry.com/customers/profile/fedex" rel="nofollow">FexEx: Scale Without Fail</a></p>
http://stackoverflow.com/questions/208839/how-can-i-mount-a-windows-drive-in-java1How can I mount a windows drive in Java?Brett McCann2008-10-16T14:43:07Z2009-10-13T11:41:54Z
<p>We are working with some legacy code that accesses a shared drive by the letter (f:\ for example). Using the UNC notation is not an option. Our Java wrapper app will run as a service, and as the first step, I would like to map the drive explicitly in the code. Has anyone done this?</p>
http://stackoverflow.com/questions/1271643/what-is-the-difference-between-group-by-distinct-union-for-selecting-distinct-v/1271838#12718381Answer by Brett McCann for What is the difference between group by, distinct, Union for selecting distinct values for multiple columns?Brett McCann2009-08-13T13:05:36Z2009-08-13T13:05:36Z<p>Starting with what I think is the simplest, DISTINCT, really is just that. It returns the distinct combinations of rows. Think of this dataset:</p>
<pre><code>COL1 COL2 COL3
A B C
D E F
G H I
A B C <- duplicate of row 1
</code></pre>
<p>This will return 3 rows because the 4th row in the dataset exactly matches the first row.
Result:</p>
<pre><code>COL1 COL2 COL3
A B C
D E F
G H I
</code></pre>
<p>The GROUP BY is frequently used for summaries and other calculations
select COL1, SUM(COL2)
from table
group by column1;</p>
<p>For this dataset:</p>
<pre><code>COL1 COL2
A 5
A 6
B 2
C 3
C 4
C 5
</code></pre>
<p>would return</p>
<pre><code>COL1 SUM(COL2)
A 11
B 2
C 12
</code></pre>
<p>a UNION just takes results from different queries and presents them as 1 result set:</p>
<pre><code>Table1
COL1
A
Table2
COLX
B
Table3
WHATEVER_COLUMN_NAME
Giddyup
select COL1 from Table1
UNION
select COLX from Table2
UNION
select WHATEVER_COLUMN_NAME from Table3;
</code></pre>
<p>Result Set:</p>
<pre><code>A
B
Giddyup
</code></pre>
<p>When performing a union, the column datatypes must match up. You can't UNION a number column with a char column (unless you explicitly perform a data conversion)</p>
http://stackoverflow.com/questions/955012/will-there-be-other-net-providers-of-cloud-computing-services/1105310#11053100Answer by Brett McCann for Will there be other .NET providers of Cloud Computing services?Brett McCann2009-07-09T17:21:12Z2009-07-10T12:47:01Z<p>In addition to GoGrid, <a href="http://www.appistry.com" rel="nofollow">Appistry Cloud IQ</a> provides a cloud computing infrastructure that can be run on Amazon or in-house on your own hardware. You can deploy .Net applications as well as Java and C apps. </p>
http://stackoverflow.com/questions/607382/how-to-build-a-distributed-robust-linked-list-on-several-computers-on-the-net/620151#620151-1Answer by Brett McCann for How to build a distributed robust linked list on several computers on the net?Brett McCann2009-03-06T19:42:47Z2009-03-06T19:42:47Z<p>You might want to check out <a href="http://www.appistry.com" rel="nofollow">Appistry EAF</a>. Its a distributed execution platform. It handles all the failover of tasks for you, so you don't have to build that into your code. If one node fails, another node automatically takes over. And unlike Grid, there is no centralized controller, to you remove the single point of failure/bottleneck of those types of solutions.</p>
<p>There is a free download available up to 5 machines.</p>
http://stackoverflow.com/questions/604522/performing-equivalent-of-kill-process-tree-in-c-on-windows2Performing equivalent of "Kill Process Tree" in c++ on windowsBrett McCann2009-03-02T23:36:21Z2009-03-03T15:34:34Z
<p>We have a c++ task that will fork a new process. That process in turn may have several child processes. If the task runs past an allotted time, we will want to kill that forked process. However, we don't want to orphan the processes it has spawned. We want them all to die. I have used Process Explorer and it has a "Kill Process Tree" option, similar to Windows Task Manager's "End Process Tree", so I'm guessing/assuming there is a public API to do this. Has anyone done this, or know of a reference to a public API that does?</p>
<p>Thx,
Brett</p>
http://stackoverflow.com/questions/381761/is-cloud-computing-really-here/542954#5429540Answer by Brett McCann for Is Cloud Computing really here?Brett McCann2009-02-12T19:53:54Z2009-02-12T19:53:54Z<p>I think Cloud is evolving to not necessarily mean deployed to a public infrastructure. Private clouds are gaining traction, just as intranets followed the internet. </p>
<p>A big difference "Cloud" can bring is the management of resources. Having the ability to treat a large volume of commodity based hardware as a single, or reduced set of entities, as well as having facilities to move these resources to where they are needed much more easily, to get better utilization. Today's traditional VM's can be lacking in that area. The process to move large numbers of machines from one computing need to another can be tedious. </p>
<p>There is also the concept of automated failover, so that work performed is not lost during a hardware failure.</p>
http://stackoverflow.com/questions/541577/c-i-want-to-pass-messages-like-a-file-path-to-my-forms-application-like-a-conso/541594#5415941Answer by Brett McCann for C#: I want to pass messages like a file path to my forms application like a console application, how would I do that?Brett McCann2009-02-12T14:52:48Z2009-02-12T14:52:48Z<p>in your public constructor, use the following:</p>
<p>string[] args = Environment.GetCommandLineArgs();</p>
<p>this will give you a string array of the arguments.</p>
http://stackoverflow.com/questions/370507/how-can-i-connect-two-or-more-machines-via-tcp-cable-to-form-a-network-grid/381193#3811931Answer by Brett McCann for How can i connect two or more machines via tcp cable to form a network grid?Brett McCann2008-12-19T15:01:07Z2008-12-19T15:01:07Z<p>There are several software solutions in this expanding market. The term "cloud computing" is certainly gaining traction to describe what you want to do. Are you wanting a service, or do you want to run it in house?</p>
<p>I'm most familiar with <a href="http://www.appistry.com" rel="nofollow">Appistry EAF</a> - Runs on commodity based hardware. Its available as a free <a href="http://www.appistry.com/developers/" rel="nofollow">download</a>. Runs on windows or linux.</p>
<p>Another is <a href="http://www.gogrid.com" rel="nofollow">GoGrid</a> - I believe this is only available as a service, but I'm not as familiar with it.</p>
http://stackoverflow.com/questions/267215/to-azure-or-not-to-azure/357795#3577950Answer by Brett McCann for To Azure or Not to Azure?Brett McCann2008-12-10T22:14:39Z2008-12-10T22:14:39Z<p>Check out <a href="http://www.appistry.com" rel="nofollow">Appistry</a>. Company was founded in 2001 and I've been there since 2005, so we are by no means new. We also have a community edition which is free to use in production. We allow you do deploy apps across any number of commodity based hardware running linux or windows.</p>
<p>Here's a link to some info on our product:</p>
<p><a href="http://www.appistry.com/resource-library/index.html" rel="nofollow">http://www.appistry.com/resource-library/index.html</a></p>
<p>and to download:</p>
<p><a href="http://www.appistry.com/developers/" rel="nofollow">http://www.appistry.com/developers/</a></p>
<p>Hope this helps,
Brett</p>
http://stackoverflow.com/questions/275072/what-is-the-easiest-way-to-parallelize-my-c-program-across-multiple-pcs/357610#3576100Answer by Brett McCann for What is the easiest way to parallelize my C# program across multiple PCsBrett McCann2008-12-10T21:06:16Z2008-12-10T21:06:16Z<p>There are several software solutions that allow you to use commodity based hardware. One is <a href="http://www.appistry.com" rel="nofollow">Appistry</a>. I work at Appistry and we have done numerous solutions to run C# applications across hundreds of machines.</p>
<p>A few useful links:
<a href="http://www.appistry.com/resource-library/index.html" rel="nofollow">http://www.appistry.com/resource-library/index.html</a></p>
<p>You can download the product for free here:
<a href="http://www.appistry.com/developers/" rel="nofollow">http://www.appistry.com/developers/</a></p>
<p>Hope this helps
-Brett</p>
http://stackoverflow.com/questions/194676/what-language-platform-would-you-recommend-for-cpu-bound-application/357597#3575970Answer by Brett McCann for What language/platform would you recommend for CPU-bound application?Brett McCann2008-12-10T21:00:13Z2008-12-10T21:00:13Z<p>If you feel you have optimized your code to a point there is no improvement, increase your CPU's. This can be done on different platforms. One I develop with is Appistry. A few links:</p>
<p><a href="http://www.appistry.com/resource-library/index.html" rel="nofollow">http://www.appistry.com/resource-library/index.html</a></p>
<p>and you can download the product free from here:</p>
<p><a href="http://www.appistry.com/developers/" rel="nofollow">http://www.appistry.com/developers/</a></p>
<p>I work for Appistry and we have done many installations for tasks that were cpu bound by spreading work out over 10's or 100's of machines.</p>
<p>Hope this helps,
-Brett</p>
http://stackoverflow.com/questions/280037/what-is-a-cloud-os/357536#3575360Answer by Brett McCann for What is a "Cloud OS"?Brett McCann2008-12-10T20:41:30Z2008-12-10T20:41:30Z<p>Well like many new terms, there can be more than one answer. Frequently it can be defined as a compute platform, where the developer doesn't have to worry about resource management, scalability or hardware failures, because the cloud infrastructure handles it. Here is a link to some information the company I work for has:</p>
<p><a href="http://www.appistry.com/resource-library/index.html" rel="nofollow">http://www.appistry.com/resource-library/index.html</a></p>
<p>There are some good white papers linked here that might be helpful to you.</p>
<p>-Brett</p>
http://stackoverflow.com/questions/168805/what-real-life-good-habits-has-programming-given-you/168829#16882932Answer by Brett McCann for What real life good habits has programming given you?Brett McCann2008-10-03T20:47:45Z2008-12-03T13:39:38Z<p>Well to be a successful developer, you have to think about the problem before you try to solve it. I've taken this approach to projects around the house, and have found that doing the proper research, you can learn how to do many tasks, that might have previously seemed daunting. I applied this lesson to carpentry, and have done some room additions, I wouldn't have thought possible. Programming also requires attention to detail, and that is also a good trait to carry over into other aspects of your life.</p>
http://stackoverflow.com/questions/314540/when-are-api-methods-marked-deprecated-actually-going-to-go-away/314552#3145522Answer by Brett McCann for When are API methods marked "deprecated" actually going to go away?Brett McCann2008-11-24T15:54:31Z2008-11-24T15:54:31Z<p>Well, "not gone yet" and "never going away" are two very different things. Thats the whole point of deprecation. They can go away with any future release. Using them is an at your own risk proposition. Just be aware that some future release of the JDK may leave your code in an unusable state.</p>
http://stackoverflow.com/questions/309834/should-i-commit-or-rollback-a-read-transaction/309843#3098431Answer by Brett McCann for Should I commit or rollback a read transaction?Brett McCann2008-11-21T19:14:01Z2008-11-21T19:14:01Z<p>Given that a READ does not change state, I would do nothing. Performing a commit will do nothing, except waste a cycle to send the request to the database. You haven't performed an operation that has changed state. Likewise for the rollback.</p>
<p>You should however, be sure to clean up your objects and close your connections to the database. Not closing your connections can lead to issues if this code gets called repeatedly.</p>
http://stackoverflow.com/questions/308793/oracle-dbmsscheduler-react-to-change-of-system-date/309087#3090873Answer by Brett McCann for Oracle dbms_scheduler - react to change of system dateBrett McCann2008-11-21T15:21:31Z2008-11-21T15:21:31Z<p>If you are changing the system date out from underneath Oracle, your hands might be tied. Is there a reason you are regularly changing the system date? If so, perhaps you should create a script for doing so, and have that script also update next_run_date.</p>
http://stackoverflow.com/questions/306708/must-haves-for-developers-office/308946#3089463Answer by Brett McCann for Must haves for developers officeBrett McCann2008-11-21T14:32:51Z2008-11-21T14:32:51Z<p>free breath mints for the coffee drinkers!</p>
<p>In all seriousness, if you drink strong black coffee, you should be cognizant of the non coffee drinkers around you. This can be more intrusive than someone wishing to chat when you are busy, or other ambient noises. It also makes pairing quite difficult. If you don't think so, imagine pairing with someone who just ate a ton of garlic at lunch. Thats what it can be like for a non coffee drinker.</p>
<p>Just something to be aware of...</p>
http://stackoverflow.com/questions/306048/developer-conferences-worth-visiting/306089#3060891Answer by Brett McCann for Developer conferences worth visiting?Brett McCann2008-11-20T17:13:02Z2008-11-20T17:13:02Z<p>I've found that conferences are useful, but I think a person should have a certain level of experience in the field before attending. I think its more useful for a junior programmer to attend a training class specific to what they need to learn. A more seasoned programmer can usually get more out of a conference, especially since many of them have many sessions geared towards whats coming and general industry trends. Conferences can be a good place to learn about where the industry is headed.</p>
http://stackoverflow.com/questions/299986/development-and-production-database/299995#2999953Answer by Brett McCann for Development and Production Database?Brett McCann2008-11-18T20:19:11Z2008-11-18T20:19:11Z<p>You should definitely have two. As far as keeping them in sync, you should always create DDL for creating your database objects. Treat these scripts as you do you PHP code - keep them in version control. Anytime you have to modify the test database, make a script to do so, and check it in. Then you can propogate those changes to the production system once you are ready.</p>
http://stackoverflow.com/questions/299770/simple-oracle-sql-date-syntax-question/299779#2997790Answer by Brett McCann for Simple Oracle SQL date syntax questionBrett McCann2008-11-18T19:06:28Z2008-11-18T19:06:28Z<p>The default date format for Oracle is "dd-mon-yy". You can do a TO_CHAR function on the date field to convert it to a format you prefer to match on.</p>
http://stackoverflow.com/questions/231259/use-c-to-delete-files-from-remote-computer/231297#2312972Answer by Brett McCann for Use C# to delete files from remote computerBrett McCann2008-10-23T20:10:49Z2008-10-23T20:10:49Z<p>in DeleteFiles, you have the following line:</p>
<p>fi = di.GetFiles(ext);</p>
<p>where ext is the extension you pass in, which I believe is just '.xml'. Get files is looking for any files called '.xml'. GetFiles takes wildcards, which I believe is what you are intending to do. Put an asterisk (*) at the front and give that a try.</p>
<p>-Brett</p>
http://stackoverflow.com/questions/224059/do-your-loops-test-at-the-top-or-bottom/224075#22407537Answer by Brett McCann for Do your loops test at the top or bottom?Brett McCann2008-10-22T00:37:07Z2008-10-22T00:37:07Z<p>I always follow the rule that if it should run zero or more times, test at the beginning, if it must run <em>once</em> or more, test at the end. I do not see any logical reason to use the code you listed in your example. It only adds complexity.</p>
http://stackoverflow.com/questions/1862071/how-to-set-authentication-methods-in-iis-programatticallyComment by Brett McCann on How to set Authentication Methods in IIS programatticallyBrett McCann2009-12-09T13:56:04Z2009-12-09T13:56:04Z I basically copy the web site tree under Inetpub/wwwroot and then use: "" cscript.exe %systemroot%\system32\iisweb.vbs /create c:\inetpub\wwwroot "%1" /b %2 "" where %1 and %2 are some vars for the app name. If I then go into IIS Manager, under Web Sites, I can see the site and its identifier (under the Default Web Site and Sharepoint Admin)http://stackoverflow.com/questions/1862071/how-to-set-authentication-methods-in-iis-programattically/1862086#1862086Comment by Brett McCann on How to set Authentication Methods in IIS programatticallyBrett McCann2009-12-08T15:55:18Z2009-12-08T15:55:18ZI guess I would ask the same question I asked of Kev. This command from the link works as advertised:
adsutil.vbs set w3svc/1/root/Authflags 4
However I want to run this command as part of the installation of a new app. The app as installed currently has an Identifier of 208223887, so I would want:
adsutil.vbs set w3svc/208223887/root/Authflags 4
but I don't know that value until the app is installed. Is there any way to get this as a variable after the install step so I can substitute it into this command further down in my script?http://stackoverflow.com/questions/1862071/how-to-set-authentication-methods-in-iis-programattically/1867266#1867266Comment by Brett McCann on How to set Authentication Methods in IIS programatticallyBrett McCann2009-12-08T15:09:18Z2009-12-08T15:09:18ZVery useful, but one question, the script you provided works on the defaults web app (1) as you pointed out. How do I know from a programmatic standpoint, the Application ID, for an app other than the default app? I know its name, but windows generates the ID.http://stackoverflow.com/questions/1765869/handling-mouse-events-in-runtime-created-objects-in-c/1765910#1765910Comment by Brett McCann on handling mouse events in runtime created objects in c#Brett McCann2009-11-19T19:43:06Z2009-11-19T19:43:06Zthe only comment I would make is that the event is MouseDown and the compiler didn't like the private method also being named MouseDown. I made it onMouseDown and everything was fine.http://stackoverflow.com/questions/1300355/what-is-a-database-entity-and-what-types-of-dbms-items-are-considered-entities/1300367#1300367Comment by Brett McCann on What is a "database entity" and what types of DBMS items are considered entities?Brett McCann2009-08-19T14:42:12Z2009-08-19T14:42:12ZI would agree with you. An "Entity" is usually the representation of a real world object. A PERSON table is the entity representing a real world person. Things like first name, last name, etc are Attributes of the entity.http://stackoverflow.com/questions/1294377/ideal-software-developer-ideal-software-managerComment by Brett McCann on Ideal Software Developer & Ideal Software ManagerBrett McCann2009-08-18T14:53:14Z2009-08-18T14:53:14ZThis is not a specific programming question, so you should mark it as Community Wiki.http://stackoverflow.com/questions/1271643/what-is-the-difference-between-group-by-distinct-union-for-selecting-distinct-v/1271838#1271838Comment by Brett McCann on What is the difference between group by, distinct, Union for selecting distinct values for multiple columns?Brett McCann2009-08-14T12:45:04Z2009-08-14T12:45:04ZIn your example you were union'ing off of different columns. So you are in effect, taking row based data, and presenting it as column based. If you had a table with 4 text columns and 1 row of data, and you selected each column using unions, your result set would be 1 column with 4 rows of data.
http://stackoverflow.com/questions/1173782/c-wpf-open-file-and-edit-certain-textComment by Brett McCann on C# WPF Open File and edit certain textBrett McCann2009-07-23T19:12:27Z2009-07-23T19:12:27Zis there a question here?http://stackoverflow.com/questions/1137083/c-how-do-i-select-a-list-box-item-when-i-have-the-value-name-in-a-string/1137142#1137142Comment by Brett McCann on c# How do I select a list box item when I have the value name in a string?Brett McCann2009-07-16T12:20:03Z2009-07-16T12:20:03Z+1, for also providing a test method. Good programming habit.http://stackoverflow.com/questions/604522/performing-equivalent-of-kill-process-tree-in-c-on-windows/604527#604527Comment by Brett McCann on Performing equivalent of "Kill Process Tree" in c++ on windowsBrett McCann2009-03-02T23:48:05Z2009-03-02T23:48:05Zfollow up, if that forked process dies and orphans its jobs, will TerminateJobObject still be able to kill the orphans left behind?http://stackoverflow.com/questions/604522/performing-equivalent-of-kill-process-tree-in-c-on-windowsComment by Brett McCann on Performing equivalent of "Kill Process Tree" in c++ on windowsBrett McCann2009-03-02T23:46:35Z2009-03-02T23:46:35Zwhile I would have no problem believing that ;) the fact that Process Explorer does it makes me wonder. I believe it was written before that company was acquired my MS.http://stackoverflow.com/questions/425044/how-to-estimate-a-programming-task-if-you-have-no-experience-in-it/425063#425063Comment by Brett McCann on How to estimate a programming task if you have no experience in it.Brett McCann2009-01-08T17:08:29Z2009-01-08T17:08:29Z+1 if you are starting from ground zero, you need some time with the 3rd party product to at least get your hands around it.http://stackoverflow.com/questions/267215/to-azure-or-not-to-azure/292636#292636Comment by Brett McCann on To Azure or Not to Azure?Brett McCann2008-12-10T22:30:38Z2008-12-10T22:30:38Zwell I think there is also a trend towards "private" clouds. Similar architectures, but run in house, behind your firewall.http://stackoverflow.com/questions/320657/when-good-programmers-go-bad/320672#320672Comment by Brett McCann on When good programmers go bad!Brett McCann2008-11-26T14:37:51Z2008-11-26T14:37:51Zvery good point on giving him the interesting project. You've got 9 other people who are contributing to the team. The last thing you want to do is "reward" the one person who others see as unmotivated.http://stackoverflow.com/questions/317393/what-are-your-2009-predictionsComment by Brett McCann on What are your 2009 Predictions?Brett McCann2008-11-25T14:05:49Z2008-11-25T14:05:49ZAgreed, these types of questions should be Wiki