User Dana - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T18:42:36Zhttp://stackoverflow.com/feeds/user/3018http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1710160/how-can-i-copy-files-in-the-middle-of-a-build-in-team-system0How can I copy files in the middle of a build in Team System?Dana2009-11-10T18:32:21Z2009-11-23T16:42:08Z
<p>I have two solutions that I want to include in a build. Solution two requires the dll's from solution one to successfully build. Solution two has a Binaries folder where the dll's from solution one need to be copied before building Solution two. </p>
<p>I've been trying an AfterBuild Target, hoping that it would copy the items after the first SolutionToBuild, but it doesn't fire then. I'm guessing that it would probably fire after both solutions have compiled, but that's not what I want.</p>
<p></p>
<pre><code><SolutionToBuild Include="$(BuildProjectFolderPath)/../../Main/Framework.sln">
<Targets>AfterCompileFramework</Targets>
<Properties></Properties>
</SolutionToBuild>
<SolutionToBuild Include="$(BuildProjectFolderPath)/../../../Dashboard/Main/Dashboard.sln">
<Targets></Targets>
<Properties></Properties>
</SolutionToBuild>
</code></pre>
<p></p>
<p></p>
<pre><code><ItemGroup>
<FrameworkBinaries Include="$(DropLocation)\$(BuildNumber)\Release\Framework.*.dll"/>
</ItemGroup>
<Message Text="FrameworkBinaries: @(FrameworkBinaries)" Importance="high"/>
<Copy SourceFiles="@(FrameworkBinaries)" DestinationFolder="$(BuildProjectFolderPath)/../../../Dashboard/Main/Binaries"/>
</code></pre>
<p></p>
http://stackoverflow.com/questions/150359/what-do-i-use-for-changekey-in-ews-updateitem0What do I use for ChangeKey in EWS UpdateItem?Dana2008-09-29T19:52:44Z2009-08-17T08:34:46Z
<p>I'm trying to use Exchange Web Services to update a calendar item. I'm creating an ItemChangeType, and then an ItemIdType. I have a unique ID to use for ItemIdType.Id, but I have nothing to use for the ChangeKey. When I leave it out, I get an ErrorChangeKeyRequiredForWriteOperations. But when i try to just put something in there, I get an ErrorInvalidChangeKey. </p>
<p>What can I use for this to get it to work?</p>
<p>I'm also trying to determine what is the best implementation of BaseItemIdType to use for ItemChangeType.Item. So far, I'm using ItemIdType, and I'm guessing that's correct, but I haven't been able to find any particularly helpful documentation on this.</p>
http://stackoverflow.com/questions/1190336/how-can-i-restrict-what-web-parts-show-up-in-the-add-web-parts-window1How can I restrict what web parts show up in the Add Web Parts window?Dana2009-07-27T20:07:49Z2009-07-28T18:50:12Z
<p>I'd like to expose a web part to some users, but not all of them. How can I show or hide a web part in the Add Web Parts pop up window? I'd like to do this through code, and I'm hoping to use SharePoint Roles to make this happen.</p>
http://stackoverflow.com/questions/1172516/what-do-you-consider-to-be-the-current-benchmark-for-asp-net-skills/1172543#11725432Answer by Dana for What do you consider to be the current benchmark for ASP.Net skills?Dana2009-07-23T15:21:23Z2009-07-23T15:21:23Z<p>Page lifecycle, order of events.</p>
<p>A solid understanding of what's good and bad about AJAX. when to use it, when to avoid it.</p>
http://stackoverflow.com/questions/484815/need-an-alternative-to-the-provider-pattern0need an alternative to the provider patternDana2009-01-27T19:18:35Z2009-04-30T19:06:11Z
<p>I'm maintaining a web application that utilizes the provider pattern as described below, for configuration purposes. </p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms972319.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms972319.aspx</a><br>
<a href="http://msdn.microsoft.com/en-us/library/ms972370.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms972370.aspx</a></p>
<p>Everything has been working fine, but as we add functionality to our application, we are finding that our provider has become a mash up of several different functions that do not belong together. We are contemplating splitting up the configuration provider so that like functions are organized with other like functions. We're doing this because our original provider now has a handful of functions that do not need to be implemented by some modules. Instead of just throwing NotImplementedException on the extraneous functions when implementing the provider, we would like to just not include them at all. </p>
<p>We realize that we could create multiple providers using the above MSDN method, but multiple providers would just create more entries in the web.config. It would be nice to minimize entries in the web.config, since that is starting to get big. </p>
<p>Has anyone found another way to implement the provider model?</p>
http://stackoverflow.com/questions/778635/will-a-child-application-inherit-from-its-parent-web-config/778700#7787000Answer by Dana for Will a child application inherit from its parent web.config?Dana2009-04-22T19:09:19Z2009-04-22T19:09:19Z<p>the child inherits the parent's web.config.</p>
<p>also, when a new web.config is created in the child, the child's web.config settings override the same settings in the parent's web.config.</p>
http://stackoverflow.com/questions/748948/when-should-the-authenticated-user-be-reset0When should the authenticated user be reset?Dana2009-04-14T19:12:23Z2009-04-14T20:39:05Z
<p>In my web application, I have used the asp Login control to facilitate the login process. I have noticed that if I open the site in a browser and log in, and then open another browser and go to the site, then the second browser shows that I am already logged in, even though I didn't log in using that browser. I have noticed that some other sites (such as my bank's web access) work this way, but it still seems odd to me. I'm not sure if it's bad or not, but it is strange. </p>
<p>Is this behavior bad? </p>
<p>I have also noticed that if I close all of my browsers and then open a new one up and go to the site, I am NOT logged in. </p>
http://stackoverflow.com/questions/714321/is-there-something-wrong-with-my-system-xml-linq-library1Is there something wrong with my System.Xml.Linq library?Dana2009-04-03T15:02:51Z2009-04-03T15:25:02Z
<p>I'm trying to learn some Linq to XML stuff, and I came across the XPathSelectElement function in XElement. This function seems to do just what I need, but for some reason, I can't use it! Check out my code:</p>
<pre><code> XElement rootElement = XElement.Load(dataFile);
XElement parentElement = rootElement.XPathSelectElement(xPath);
</code></pre>
<p>I have included references to System.Xml.Linq everywhere that is needed. All the other stuff in that library that I have tried appears to be working, but XPathSelectElement doesn't even appear in the Intellisense in visual studio. </p>
<p>When building the above code, I get the following error:</p>
<blockquote>
<p>Error 1 'System.Xml.Linq.XElement'
does not contain a definition for
'XPathSelectElement' and no extension
method 'XPathSelectElement' accepting
a first argument of type
'System.Xml.Linq.XElement' could be
found (are you missing a using
directive or an assembly
reference?) C:\PageHelpControl\PageHelp.cs 155 50 HelpControl</p>
</blockquote>
http://stackoverflow.com/questions/570070/iis7-authentication-on-server-2008/570082#5700820Answer by Dana for IIS7 Authentication on Server 2008Dana2009-02-20T15:50:13Z2009-02-20T15:50:13Z<p>In the site's Authentication settings, disable anonymous and enable integrated windows authentication.</p>
http://stackoverflow.com/questions/495443/is-your-qa-team-effective/495518#4955180Answer by Dana for Is your QA Team effective?Dana2009-01-30T13:41:38Z2009-01-30T13:41:38Z<p>Effective? How do you measure that? # of bugs found? What if the code is really solid? What if they just find one bug, but it's a really important one? Do you blame them on the bugs that do slip through the cracks? </p>
http://stackoverflow.com/questions/468062/the-should-be-easy-for-a-junior-developer-to-understand-argument/474457#4744570Answer by Dana for The "Should be easy for a junior developer to understand" argumentDana2009-01-23T20:48:58Z2009-01-23T20:48:58Z<p>Make sure you can understand what it does 6 months down the road. </p>
<p>When in doubt, COMMENT your code. That's what comments are for.</p>
http://stackoverflow.com/questions/461307/how-does-your-organization-approach-usability/461496#4614961Answer by Dana for How does your organization approach usability?Dana2009-01-20T14:24:37Z2009-01-20T14:24:37Z<p>This is just about the same question that I asked a while back: <a href="http://stackoverflow.com/questions/184073/how-important-is-usability-to-your-workplace-employer">http://stackoverflow.com/questions/184073/how-important-is-usability-to-your-workplace-employer</a></p>
<p>I'm on the company's research team, and there are two people on the team that are usability analysts. The company recently created a usability testing lab for them to meet and conduct usability testing. I was pretty impressed with this, because they took a part of the building that wasn't used much and put up some walls and bought some furniture. The whole thing must have cost a little bit. I haven't had a lot of interaction with the usability team, so I don't exactly know what they do.</p>
http://stackoverflow.com/questions/411019/how-do-you-get-yourself-back-out-of-the-zone-when-the-work-day-is-over/424989#4249891Answer by Dana for How do you get yourself back "out of the zone" when the work day is over?Dana2009-01-08T16:43:40Z2009-01-08T16:43:40Z<p>I love my job, but I keep work at work. I don't go home and think about work problems or complain to family/friends about dumb stuff that happens at work. </p>
http://stackoverflow.com/questions/179112/need-a-way-to-authenticate-to-exchange-web-services2Need a way to authenticate to Exchange Web ServicesDana2008-10-07T15:42:42Z2008-12-20T08:51:10Z
<p>I'm using Exchange Web Services to Find, Create, Update, and Delete appointments from the calendars for one or more people. The application would be used by a manager to view employees' vacation time, as well as assign appointments based on availability.</p>
<p>In order for this to all work, an authenticated user's credentials must be sent to the web service. So far, the two methods that I have found that would allow for this are 1) passing in the username and password of each user and 2) impersonating a user to use DefaultCredentials. The DefaultCredentials option doesn't work for us because we do not allow impersonating users. </p>
<p>Does anyone know another way?</p>
http://stackoverflow.com/questions/178484/how-can-we-get-people-to-participate-in-team-building6How can we get people to participate in team building?Dana2008-10-07T13:43:10Z2008-11-28T06:35:37Z
<p>Ok fine, programmers aren't very social. There are a couple people on my team that rarely say a word to anyone else. They won't go to lunch with the rest of the team when we go out, regardless of who pays or where we go. My boss has offered to buy everyone drinks, and one of them went to that, but the other one wasn't interested. What's the best way to make everyone comfortable with team building? Maybe these people just aren't interested in getting to know the rest of the team. If that's the case, what's the best way to not make them feel singled out when they decline invitations to do stuff?</p>
http://stackoverflow.com/questions/234443/adding-a-new-project-to-an-existing-solution-in-tfs2Adding a new project to an existing solution in TFSDana2008-10-24T17:15:29Z2008-11-25T23:23:50Z
<p>I added a project to an existing solution that is currently under source control using TFS, but for some reason I cannot check in the new project. When I view my pending changes, none of the files in the new project show up. None of the files have a plus (for a new file) next to them. What did I do wrong? How do I fix it? It's time to check in.</p>
http://stackoverflow.com/questions/280896/havent-jumped-on-the-linq-bandwagon-what-are-your-reasons-for-not-using-linq/281241#2812411Answer by Dana for Haven't jumped on the Linq bandwagon, what are your reasons for not using linq?Dana2008-11-11T15:37:52Z2008-11-11T15:37:52Z<p>We haven't been able to use Linq yet because we're still on 2.0, and haven't been allowed to upgrade to a newer version. </p>
http://stackoverflow.com/questions/187614/using-delegates-with-exchange-web-services0Using Delegates with Exchange Web ServicesDana2008-10-09T14:54:03Z2008-11-06T09:45:31Z
<p>Has anyone used delegates with exchnage web services? I would like one user to be able to control other users' calendars in Exchange. I'm finding this problem to be a little tricky, and I'd like to see how others have been able to get it to work properly. </p>
http://stackoverflow.com/questions/266053/what-are-some-exercises-you-do-to-make-you-a-better-programmer/266690#2666902Answer by Dana for What are some exercises you do to make you a better programmer?Dana2008-11-05T21:12:13Z2008-11-05T21:12:13Z<p>I run at lunch. On days that I run at lunch, I'm much more productive in the afternoon. Running helps me clear my mind or figure out things that are nagging me. It also gets me away from the screen for a little bit.</p>
http://stackoverflow.com/questions/253642/can-you-recommend-alternative-fileupload-control-for-asp-net-mvc/253707#2537071Answer by Dana for Can you recommend alternative FileUpload control for asp.net-mvc?Dana2008-10-31T14:31:21Z2008-10-31T14:31:21Z<p>We extended the FileUploadControl to add some validation. We also wrote our own control that allows multiple files to be uploaded at once. We are currently evaluating both. Hopefully we decide on one, I would hate to have 2 different upload controls to maintain.</p>
http://stackoverflow.com/questions/251007/how-difficult-is-it-to-turn-a-java-school-programmer-into-a-c-or-c-programmer/251020#25102016Answer by Dana for How difficult is it to turn a "Java School" programmer into a C or C++ programmer?Dana2008-10-30T17:21:49Z2008-10-30T17:21:49Z<p>Programmers program. Someone who actually knows how to program can learn any language. Sure, there's a learning curve, but a good coder can get up to speed relatively quickly. If you're expecting someone with advanced knowledge, you wouldn't be looking to hire fresh grads anyway, right? So there's going to be a learning curve either way.</p>
http://stackoverflow.com/questions/249935/what-are-great-specific-usability-guidelines/250133#2501332Answer by Dana for What are great _specific_ usability guidelines?Dana2008-10-30T13:14:28Z2008-10-30T13:14:28Z<p>If a button does one thing on one screen, and the same button appears on another screen, it better perform the same action as it did on the previous screen. </p>
http://stackoverflow.com/questions/246808/when-is-object-oriented-not-the-correct-solution/246903#2469032Answer by Dana for When is Object Oriented not the correct solution?Dana2008-10-29T14:00:42Z2008-10-29T14:00:42Z<p>I wouldn't bother with OOP if the programming language that you are using doesn't easily allow you to use OOP. We use a BDL at my workplace that is made to be procedural. I once tried to do some OOP, and well, that was just a big oops. Shouldn't have bothered.</p>
http://stackoverflow.com/questions/27853/modalpopupextender-adding-scrollbars-in-sharepoint0ModalPopupExtender adding scrollbars in SharePointDana2008-08-26T12:12:23Z2008-10-28T22:54:00Z
<p>Whenever I show a ModalPopupExtender on my Sharepoint site, the popup shown creates both horizontal and vertical scrollbars. If you scroll all the way to the end of the page, the scrollbar refreshes, and there is more page to scroll through. Basically, I think the popup is setting its bounds beyond the end of the page. Has anyone run into this? Searching Google, it seems this may be a known problem, but I haven't found a good solution that doesn't include recompiling AJAX, which my boss will not allow.</p>
http://stackoverflow.com/questions/240743/keeping-work-personal-life-separate/240801#2408012Answer by Dana for Keeping Work/Personal Life SeparateDana2008-10-27T17:45:57Z2008-10-27T17:45:57Z<p>Leave work at work. Never check in on the office when you are not in the office. If you NEED to work, then go to the office. But do not bend on this. </p>
<p>If I am working, then I am at the office. </p>
http://stackoverflow.com/questions/240525/how-did-you-learn-to-program/240698#2406981Answer by Dana for How did you learn to program?Dana2008-10-27T17:17:33Z2008-10-27T17:17:33Z<p>I took some classes in computer science in high school. Then I went to college and got my bachelors in computer science. Then I got my masters in it. Learning on your own is great, but to be thorough, schooling is also great. Everyone learns differently, and it doesn't make one person better than the other.</p>
http://stackoverflow.com/questions/240602/what-is-agile-development/240655#2406554Answer by Dana for What is "Agile Development"?Dana2008-10-27T17:09:18Z2008-10-27T17:09:18Z<p><a href="http://thedailywtf.com/Articles/The-Great-Pyramid-of-Agile.aspx" rel="nofollow">The Great Pyramid of Agile</a></p>
http://stackoverflow.com/questions/240638/which-version-of-c-and-net-should-i-begin-with/240646#2406467Answer by Dana for Which version of C# (and .Net) should I begin with?Dana2008-10-27T17:07:57Z2008-10-27T17:07:57Z<p>Start with the latest. If you need to work with code built on a previous version, you can then learn the differences between version X and version Y.</p>
http://stackoverflow.com/questions/213057/5-years-experience-100k-salary-really/213081#2130811Answer by Dana for 5 years experience == 100k+ salary? Really?Dana2008-10-17T17:34:31Z2008-10-17T17:34:31Z<p>I haven't heard of anything like that going on in my area. I don't suspect there are many in the six figures at my workplace.</p>
http://stackoverflow.com/questions/205188/whats-the-correct-way-of-registering-installing-an-assembly-to-the-gac/205207#2052070Answer by Dana for What's the 'correct' way of registering/installing an Assembly to the GAC?Dana2008-10-15T15:37:58Z2008-10-15T15:37:58Z<p>If you don't want to handle the gacutil stuff yourself, you can always create a setup project in visual studio. </p>
<p>But I'd stick with gacutil myself.</p>
http://stackoverflow.com/questions/1190336/how-can-i-restrict-what-web-parts-show-up-in-the-add-web-parts-window/1190375#1190375Comment by Dana on How can I restrict what web parts show up in the Add Web Parts window?Dana2009-07-28T17:12:57Z2009-07-28T17:12:57Zthis is encouraging, i know it can be done now. but i need to do it with code.http://stackoverflow.com/questions/748948/when-should-the-authenticated-user-be-resetComment by Dana on When should the authenticated user be reset?Dana2009-04-14T19:36:13Z2009-04-14T19:36:13Znew window. if you have logged in using IE, and then open Firefox, Firefox will show that you are not logged in .http://stackoverflow.com/questions/634206/what-every-programmer-should-know-aboutComment by Dana on What every programmer should know about __ ?Dana2009-03-11T13:54:38Z2009-03-11T13:54:38Zthis should not be closed. it is much more programming related than some of the top posts on this entire site.http://stackoverflow.com/questions/634442/tips-and-exercises-for-caring-for-your-hands-over-timeComment by Dana on Tips and exercises for caring for your hands over time?Dana2009-03-11T13:51:51Z2009-03-11T13:51:51ZI would say that this is a more general, and therefore more universally useful, topic than all of the sited "Related" topics that are much more specific and less applicable. I vote for this being reopened. http://stackoverflow.com/questions/562590/c-net-how-to-display-a-message-in-the-output-window-without-being-in-debug-modeComment by Dana on C# .net How to display a message in the output window without being in debug mode ?Dana2009-02-18T20:28:43Z2009-02-18T20:28:43ZI hope you aren't asking this to figure out how to avoid the debugger. Learn to love the debugger.http://stackoverflow.com/questions/259529/how-can-i-find-a-models-relationshipsComment by Dana on How can I find a model's relationships?Dana2008-11-03T18:59:11Z2008-11-03T18:59:11Za model's relationships? People magazine keeps up with that stuff pretty well! JK :)http://stackoverflow.com/questions/205003/is-it-wrong-to-go-to-interviews-while-employedComment by Dana on Is it wrong to go to interviews while employed?Dana2008-10-15T14:51:04Z2008-10-15T14:51:04Zhave you ever used that as a way to get a raise from your current job?http://stackoverflow.com/questions/195285/what-stupid-policies-affecting-developers-has-your-company-introduced/195634#195634Comment by Dana on What stupid policies affecting developers has your company introduced?Dana2008-10-14T20:00:54Z2008-10-14T20:00:54ZWHY WHY WHY do companies insist that coders need to be dressed up to do their jobs? I will never understand this.http://stackoverflow.com/questions/128099/what-is-the-longest-human-name-you-can-expect/128131#128131Comment by Dana on What is the longest human name you can expect?Dana2008-10-14T13:24:54Z2008-10-14T13:24:54Zi wonder what his name means.http://stackoverflow.com/questions/192689/the-art-of-programmingComment by Dana on The art of programmingDana2008-10-10T19:18:26Z2008-10-10T19:18:26ZI'm not quite sure what you're asking here.http://stackoverflow.com/questions/187807/best-way-to-have-a-live-readable-config-file-in-asp-net/187829#187829Comment by Dana on Best way to have a live readable config file in Asp.Net.Dana2008-10-09T15:37:20Z2008-10-09T15:37:20ZI was just thinking this myself, you beat me to it.http://stackoverflow.com/questions/187199/google-calendar-like-interface/187263#187263Comment by Dana on Google Calendar like interfaceDana2008-10-09T14:00:31Z2008-10-09T14:00:31Zi've been writing something with the devexpress control. not sure if one is better than the other, just throwing out another option.http://stackoverflow.com/questions/187329/give-me-interview-questionsComment by Dana on Give Me Interview Questions!Dana2008-10-09T13:57:01Z2008-10-09T13:57:01Znow why would you post this question? when you were typing it up, didn't you notice there are several other VERY similar questions already out there? what do you expect your question to add to this site that hasn't already been added from the other questions?http://stackoverflow.com/questions/186605/am-i-too-old-to-get-an-entry-level-programming-job/186612#186612Comment by Dana on Am I too old to get an entry level programming job?Dana2008-10-09T12:30:46Z2008-10-09T12:30:46Zyour - possessive pronoun
you're = contraction of you and arehttp://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184673#184673Comment by Dana on What is the best comment in source code you have ever encountered?Dana2008-10-09T01:12:16Z2008-10-09T01:12:16Zcensorship sucks. bring back the original!