User Brody - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T23:17:40Zhttp://stackoverflow.com/feeds/user/17131http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/993139/sandcastle-dead-links-access-is-denied-and-other-woes/1162376#11623760Answer by Brody for Sandcastle - dead links, "access is denied" and other woes.Brody2009-07-22T00:00:04Z2009-07-22T00:00:04Z<p>I am not too sure but you may be falling into the OSs security trap.</p>
<p>I have found that help files that are sourced outside the server are frequently blocked. You need to unblock the file (in the case of CHMs) by right clicking it, selecting properties and clicking the Unblock button.</p>
<p>That sorted out the problem for me. Good luck.</p>
http://stackoverflow.com/questions/1102241/select-permission-denied-for-user-who-is-dbowner-in-sql-server/1102313#11023130Answer by Brody for Select permission denied for user who is db_owner in SQL ServerBrody2009-07-09T07:20:49Z2009-07-09T07:20:49Z<p>MOst likely the user isn't actually the DBO. Check the table name is [dbo].[tablename] and that the user actually is the dbo.</p>
<p>Actually - More information about the error would be nice. Cause you usually have select access to tables you have created.</p>
<p>Are there any deny permissions set?</p>
http://stackoverflow.com/questions/1021715/winforms-menu-as-array/1023254#10232541Answer by Brody for winforms menu as arrayBrody2009-06-21T05:07:00Z2009-06-21T05:07:00Z<p>Each child menu item is in the DropDownItems collection - So you can loop through that (If you are using ToolStripMenuItems and not the older style menus).</p>
http://stackoverflow.com/questions/1023178/how-to-close-the-command-window-of-a-batch-file-which-was-started-by-another-batc/1023216#10232161Answer by Brody for How to close the command window of a batch file which was started by another batch fileBrody2009-06-21T04:40:41Z2009-06-21T04:40:41Z<p>If you start CMD with the /C parameter it will terminate when the command is finished.</p>
http://stackoverflow.com/questions/750303/what-is-the-differences-between-sql-server-authentication-and-windows-authenticat/750351#7503511Answer by Brody for what is the differences between sql server authentication and windows authentication..?Brody2009-04-15T04:49:44Z2009-04-15T04:49:44Z<p>I think the main difference is security.</p>
<p>Windows Authentication means that the identity is handled as part of the windows handashaking and now password is ever 'out there' for interception.</p>
<p>SQL Authentication means that you have to store (or provide) a username and a password yourself making it much easier to breach. A heap of effort has gone into making windows authentication very robust and secure.</p>
<p>Might I suggest that if you do implement Windows Authentication use Groups and Roles to do it. Groups in Windows and Roles in SQL. Having to setup lots of users in SQL is a big pain when you can just setup the group and then add each user to the group. (I think most security should be done this way anyway).</p>
http://stackoverflow.com/questions/732909/a-simple-sql-select-query/732925#7329250Answer by Brody for A Simple Sql Select QueryBrody2009-04-09T05:27:16Z2009-04-09T05:27:16Z<p>That is not the best way to store the information you have.</p>
<p>If it is all you have got then you need to be doing a contains (not an IN). The best answer is to have another table that links Participants to Meetings.</p>
<p>Try SELECT Meeting, Participants FROM Meeting CONTAINS(Participants, @ParticipantId)</p>
http://stackoverflow.com/questions/712313/how-can-i-code-a-program-that-works-with-a-front-end-and-some-modules/712485#7124850Answer by Brody for How can i code a program that works with a front end and some modules?Brody2009-04-03T03:44:58Z2009-04-03T03:44:58Z<p>I think you would getter milage out of an MDI application that uses a plugin model to load modules that get initialised and enroll themselves in the MDI containers menu.</p>
http://stackoverflow.com/questions/712380/closing-application-and-running-an-external-application/712479#7124791Answer by Brody for Closing application and running an external applicationBrody2009-04-03T03:41:41Z2009-04-03T03:41:41Z<p>Do it in reverse. Get the entire updated file down using the old application (storing it temporarily) and then start the updater application using process start. All the update has to do is copy the new file over the old file and restart the application.</p>
<p>The updater can catch the access denied exceptions and wait for the application to become available for being copyied over. Once the copy is done - it deletes the temporary new file and starts the application again before shutting down.</p>
<p>Then you can update the updater (using the normal application) if you need to.</p>
http://stackoverflow.com/questions/616762/what-is-the-best-way-to-associate-a-file-with-a-piece-of-data/616793#6167932Answer by Brody for What is the best way to associate a file with a piece of data?Brody2009-03-05T21:53:06Z2009-03-05T21:53:06Z<p>The best solution would be to put the documents in the database. This simplifies all the linking and backingup and restoring issues - But it might not solve the basic 'we just want to point to documents on our file server' mindset the users may have.</p>
<p>It all depends (in the end) on actual user requirements.</p>
<p>BUt my recommendation would be to put it all together in the database so you retain control of them. Leaving them in the file system leaves them open to being deleted, moved, ACL'd or anyone of hundreds of other changes that could render your linking to them pointless or even damaging.</p>
<p>Database bloat is only an issue if you haven't sized for it. Do some tests and see what effects it has. 100GB of files on a disk is probably just as big as the same files in a database.</p>
http://stackoverflow.com/questions/420597/would-you-use-enterpriseservices-in-a-new-enterprise-development/584193#5841930Answer by Brody for Would you use EnterpriseServices in a new enterprise development?Brody2009-02-24T23:56:25Z2009-02-24T23:56:25Z<p>No.</p>
<p>We had no end of issues (mainly unresolvable memory leaks in COM+ - caused by various COM+ interop bits we couldn't affect) when we went with .Net in COM+. We changed to WCFServices exposing business layer functionality and kept our distributed transactions to a minimum (i.e. The transaction is complete inside the WCF service - The only way you can do it really). Using the built in .Net Transaction stuff handles everything we needed to handle transactionwise.</p>
<p>I would stick with various WCF service layers to expose functionality. Keep one layer internal and provide exposed services on an external layer that communicates with the internal layer. It's a bit heavy but seems to scale well later and provides the security you'd expect (and require).</p>
http://stackoverflow.com/questions/577084/enterprise-services-alternative/577087#5770870Answer by Brody for Enterprise Services AlternativeBrody2009-02-23T10:03:59Z2009-02-24T23:49:18Z<p>Wouldn't that just be a standard dll?</p>
<p>What do you mean by hosted?</p>
<p><strong>* EDIT *</strong>
Oh, Out of process. I'd use a WCF service in IIS over enterprise services (Serviced Components). </p>
http://stackoverflow.com/questions/575834/database-design-issue-multiple-scores-in-different-categories/576093#5760930Answer by Brody for Database design issue - multiple scores in different categoriesBrody2009-02-22T23:39:57Z2009-02-22T23:39:57Z<p>Well, A relational database is optimised for storing relationships so a table for storing item descriptions, another for Scoring Categories (including Score Description) and a joining table (item to score) seems the perfect answer.</p>
<p>What are the drawbacks? Well, each item will have several score records, thats true. It also wouldn't be that readible in a query browser. But with the correct keys and indexes it would be fast enough to use the way you need it.</p>
http://stackoverflow.com/questions/563394/getting-the-gui-of-an-app-that-went-poof/563419#5634190Answer by Brody for Getting the GUI of an app that went poof!Brody2009-02-19T00:01:11Z2009-02-19T00:01:11Z<p>Sounds like you are toast.</p>
<p>But some versions of Visual Studio (and by that I mean the later releases) will save a current copy of open documents and you may find that it will ask if you want to recover them when you open it again.</p>
<p>Otherwise. No. I think they have gone.</p>
http://stackoverflow.com/questions/544626/mistaken-mass-deletes-and-updates-design-error/544638#5446380Answer by Brody for Mistaken mass deletes and updates -- design error?Brody2009-02-13T03:50:56Z2009-02-13T03:50:56Z<p>But really the issue is how safe is your 'Live' data. Running untested scripts on a 'Live' database is asking for trouble.</p>
http://stackoverflow.com/questions/544108/from-a-query-window-can-a-stored-procedure-be-opened-into-another-query-window/544140#5441401Answer by Brody for From a Query Window, can a Stored Procedure be opened into another Query Window?Brody2009-02-13T00:02:40Z2009-02-13T02:31:05Z<p>You are trying to mix two technologies here. </p>
<ol>
<li>SQL and SQLSyntax</li>
<li>The SQL Management Tool</li>
</ol>
<p>It is probably not possible to use TSQL to manipulate the Management Studio, which is what you appear to want. I suspect cut and paste is your only option.</p>
http://stackoverflow.com/questions/544025/convincing-an-it-manager-to-allow-sql-server-instead-of-access/544068#5440681Answer by Brody for Convincing an IT Manager to allow SQL Server instead of AccessBrody2009-02-12T23:42:45Z2009-02-12T23:42:45Z<p>Licensing for one. I doubt he wants to have hundreds of Office licenses (one for each end user that connects to the site). SQL has licenses that allows multiple connects at the same time without specific connection licenses.</p>
<p>Not to mention scalability and reliability issues. SQL Server ios designed to be used and administrated in a 24/7 environment. Access has not.</p>
<p>SQL can scale to squillions of simultaneous connections, Access cannot.</p>
<p>SQL can backup while operating, Access cannot.</p>
<p>SQL is designed as a highly robust data repository, Access is not designed with the same requirements in mind.</p>
http://stackoverflow.com/questions/480748/help-with-one-step-build-all-projects-installer-net-wix/482335#4823351Answer by Brody for Help with one step build all projects + installer (.NET + WiX)Brody2009-01-27T04:47:27Z2009-01-27T04:47:27Z<p>We found it easiest to use a utility to edit the project itself and to dump all the pre-build and post build events before we build it with our autobuilder (in our case <a href="http://www.kinook.com/visualbuildpro" rel="nofollow">VisualBuild</a>).</p>
<p>This leaves us with a nice and juicy build process that doesn't rely on any nasty hacks in the IDE and give us full control over where source comes from and where built components go to.</p>
http://stackoverflow.com/questions/471150/whats-the-best-xsd-xml-schema-authoring-tool/471858#4718582Answer by Brody for What's the best XSD (XML Schema) authoring tool?Brody2009-01-23T04:10:01Z2009-01-23T04:10:01Z<p>Visual Studio has an XSD utility that does an adequate job of generating an xsd from an xml sample or a class or vice versa or most combinations of xsd, class and xml.</p>
http://stackoverflow.com/questions/471765/a-framework-type-search-tool-for-net/471855#4718550Answer by Brody for A framework type search tool for .NETBrody2009-01-23T04:06:16Z2009-01-23T04:06:16Z<p>Isn't that what <a href="http://msdn.microsoft.com" rel="nofollow">MSDN</a> is for (for the framework assemblies certainly). And for your own applications you can use <a href="http://msdn.microsoft.com/en-us/vstudio/bb608422.aspx" rel="nofollow">sandcastle</a> (if you are brave enough - although the <a href="http://www.codeplex.com/SHFB" rel="nofollow">sandcastle help file builder</a> does help).</p>
http://stackoverflow.com/questions/434255/timer-doesnt-loop/434341#4343413Answer by Brody for Timer doesnt "loop"Brody2009-01-12T03:15:08Z2009-01-12T03:15:08Z<p>Drop all that thread stuff and do it all in a form that implements the system tray icon. Put your timer in that form and everything you want is done.</p>
<p>Something like</p>
<pre><code>LoginForm login = new LoginForm();
if(login.ShowDialog()==DialogResult.OK)
{
Application.Run(new SystemTrayForm());
}
</code></pre>
http://stackoverflow.com/questions/421660/xml-deserialization-convert-attribute-value-into-class-automatically-net/421796#4217960Answer by Brody for XML Deserialization - convert attribute value into class automatically (.net)Brody2009-01-07T19:46:58Z2009-01-07T19:46:58Z<p>You could do this quite easily - Just not as a deserialisation action.</p>
<p>Use XSD to create your classes for deserialisation. NOw these are all partial classes so you can write a new part of the review class (that contains the attribute 'version') and add a method that gets/sets the version. </p>
<p>In the get method simple create a new instance of that class and in the set method simple update the existing version from ther supplied version class.</p>
http://stackoverflow.com/questions/409725/how-to-force-sharepoint-tasks-to-be-editable-by-assigned-to-only/411907#4119071Answer by Brody for How to force SharePoint tasks to be editable by "Assigned To" only?Brody2009-01-04T23:29:38Z2009-01-04T23:29:38Z<p>It looks like you need to create an event handler that updates the permission on the Task everytime the assigned user is changed.</p>
<p>Quite a few people have had this problem in the past.</p>
<p>Check out <a href="http://suguk.org/forums/thread/11068.aspx" rel="nofollow">this</a> site for an example of the problems people have had. That said it should work out-of-the-box if you copy content when setting up the Task List.</p>
http://stackoverflow.com/questions/411751/daily-builds-is-that-realistic/411765#4117651Answer by Brody for Daily builds, is that realistic?Brody2009-01-04T22:01:36Z2009-01-04T22:01:36Z<p>The easiest way to have daily builds is to work in streams.</p>
<p>Have a development stream, a QA (or test) stream and finally a release stream.</p>
<p>Build your QA and release streams whenever they change. Build your development stream only when you need to.</p>
<p>Now you can make major changes to your development stream and then merge them (in source control) in a few easier operations and your automatic build process kicks off.</p>
http://stackoverflow.com/questions/409325/check-if-a-file-is-open-from-another-process/410218#4102180Answer by Brody for Check if a file is open from another processBrody2009-01-04T01:17:37Z2009-01-04T01:17:37Z<p>You could try to open it and if it errors then it is probably already locked.</p>
http://stackoverflow.com/questions/409933/does-learning-c-net-require-an-msdn-subscription/409942#4099421Answer by Brody for Does Learning C#/.NET Require An MSDN Subscription?Brody2009-01-03T21:57:39Z2009-01-03T21:57:39Z<p>Well, MSDN is free on the web so your reference isn't a problem.</p>
<p>The .NET Framework and compiler are free too.</p>
<p>Visual Studio is not free but that is just a development environment. You can write code with just notepad and some of the books out there do just that as they are teaching c# and not how to use the VS IDE.</p>
<p>So you sure can but it is much easier with Visual Studio.</p>
<p><em>EDIT</em> Ack! I forgot c# Express - Show how easy you can get hooked to 'Da Man!'</p>
http://stackoverflow.com/questions/408556/does-one-persist-xml-csv-other-through-repositories-services-other/409902#4099021Answer by Brody for Does One Persist XML/CSV/Other Through Repositories/Services/OtherBrody2009-01-03T21:41:35Z2009-01-03T21:41:35Z<p>Wouldn't you just change your XML repository to have a SQL backend. It really shouldn't matter what yopur repositories do they are just meant to be 'black boxes' for the storage and retrieval of your data. Keep you secret XML knowledge in the XML repository and just backend it with SQL.</p>
<p>You could chain it to your SQL repository or keep it seperate.</p>
http://stackoverflow.com/questions/409849/sql-selecting-and-updating/409872#4098721Answer by Brody for Sql, selecting and updatingBrody2009-01-03T21:25:01Z2009-01-03T21:25:01Z<p>Going to the DB isn't so bad. If you aren't returning anything 'across the wire' then an update shouldn't do you too much damage and its only a few hundred thousand rows. What is your worry?</p>
http://stackoverflow.com/questions/401584/ways-to-validate-subscription-service-in-freemium-product-is-valid/401700#4017000Answer by Brody for ways to validate subscription service in freemium product is validBrody2008-12-30T22:23:04Z2008-12-30T22:23:04Z<p>I'd work this from the other end and have a paid-to field with a paid up date stored there. That way you could have users cancel there sub and still get the benefit of the payment they did make.</p>
http://stackoverflow.com/questions/401441/c-move-controls-from-form-to-tabpage-in-vs-form-designer/401488#4014883Answer by Brody for C#: Move Controls From Form to tabPage in VS Form DesignerBrody2008-12-30T20:59:33Z2008-12-30T20:59:33Z<p>Have you tried cut and paste. That usually works for me.</p>
http://stackoverflow.com/questions/396789/is-web-browser-discrimination-okay/397174#3971740Answer by Brody for Is Web Browser "Discrimination" Okay?Brody2008-12-29T05:19:19Z2008-12-29T05:19:19Z<p>Of course it is. It is your web site. If people don't like it they won't come back.</p>
<p>You may want them to come back or use your site properly so you might want to think about how to support that.</p>
http://stackoverflow.com/questions/750303/what-is-the-differences-between-sql-server-authentication-and-windows-authenticat/750344#750344Comment by Brody on what is the differences between sql server authentication and windows authentication..?Brody2009-04-15T04:52:18Z2009-04-15T04:52:18ZSame windows user for connection pooling isn't a bad idea if they are services (or web services) and you still get a benefit for individual users too (but you'll have a lot more connections in a lot more pools)http://stackoverflow.com/questions/732864/finalize-vs-dispose/732889#732889Comment by Brody on Finalize vs DisposeBrody2009-04-09T05:38:26Z2009-04-09T05:38:26Z@JP: But the Using(...) pattern makes it so much simpler to cope with.http://stackoverflow.com/questions/732864/finalize-vs-dispose/732878#732878Comment by Brody on Finalize vs DisposeBrody2009-04-09T05:34:41Z2009-04-09T05:34:41ZThe standard IDisposal pattern and the hidden implementation of a Dispose(bool) to handle disposing managed components optional seems to cater for that issue.http://stackoverflow.com/questions/544626/mistaken-mass-deletes-and-updates-design-errorComment by Brody on Mistaken mass deletes and updates -- design error?Brody2009-02-13T03:51:31Z2009-02-13T03:51:31ZOr 'Are-you-Sure?'http://stackoverflow.com/questions/409725/how-to-force-sharepoint-tasks-to-be-editable-by-assigned-to-only/537875#537875Comment by Brody on How to force SharePoint tasks to be editable by "Assigned To" only?Brody2009-02-12T23:51:47Z2009-02-12T23:51:47ZThen they don't get the behaviour they want :(http://stackoverflow.com/questions/109731/how-to-branch-a-virtual-server-in-hyper-v/110039#110039Comment by Brody on How to branch a virtual server in Hyper-V?Brody2009-02-03T00:49:02Z2009-02-03T00:49:02ZSo was I but no luck so farhttp://stackoverflow.com/questions/500770/i-am-having-problems-sending-email-using-smtpclient-sendasync-with-gmailComment by Brody on I am having problems sending email using SmtpClient SendAsync with gmailBrody2009-02-02T02:59:40Z2009-02-02T02:59:40ZWe need to see what errors you are getting or what code you are using. It doesn't work is not quite enough information.http://stackoverflow.com/questions/436760/smo-scripting-objects-and-securityComment by Brody on SMO scripting objects and securityBrody2009-01-12T20:07:30Z2009-01-12T20:07:30ZWhat sc ripts do you want to generate?http://stackoverflow.com/questions/409995/truncate-text-at-a-stop-character-match/410066#410066Comment by Brody on Truncate Text at a Stop Character MatchBrody2009-01-04T01:12:50Z2009-01-04T01:12:50ZThe Split would work with a variety of languages.http://stackoverflow.com/questions/409598/to-find-the-dependency-of-object-accross-multiple-databases/409636#409636Comment by Brody on To find the dependency of object accross multiple databases?Brody2009-01-03T21:28:40Z2009-01-03T21:28:40ZThats hardly broken. You are saying if the dependancies doesn't exist when it is created then sp_depends doesn't report on it. It is of limited utility, sure, but hardly 'broken'.http://stackoverflow.com/questions/397148/why-doesnt-python-have-multline-commentsComment by Brody on Why doesn't Python have multline comments?Brody2008-12-29T05:22:28Z2008-12-29T05:22:28ZIf you can do it as a string why add more ways?http://stackoverflow.com/questions/396830/converting-a-development-team-from-ftp-to-a-versioning-system/397170#397170Comment by Brody on Converting a development team from FTP to a Versioning SystemBrody2008-12-29T05:15:43Z2008-12-29T05:15:43ZOther streams are possible of course.http://stackoverflow.com/questions/396938/computer-simulation-of-the-evolution-processComment by Brody on Computer simulation of the Evolution process.Brody2008-12-29T05:10:47Z2008-12-29T05:10:47ZIt does seem somewhat like a troll. It is a very big question and there are quite a few excellent responses and yet the original asker dismisses them all.http://stackoverflow.com/questions/397094/date-in-dropdown-list-box/397098#397098Comment by Brody on Date in Dropdown list boxBrody2008-12-29T05:02:19Z2008-12-29T05:02:19ZIt blows and exception in the DateTime Constructor so you wont get bad dates in the DB but the user experience ain't going to be good.http://stackoverflow.com/questions/397089/sql-question-from-joel-spolsky-articleComment by Brody on SQL question from Joel Spolsky articleBrody2008-12-29T04:16:30Z2008-12-29T04:16:30ZI doubt this is an simply explained concept or Joel would have covered it already. Sometimes you just have to trust (or try and see).