User Tundey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T22:07:38Z http://stackoverflow.com/feeds/user/1453 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1327933/what-does-string-is-not-terminated-mean/1327952#1327952 1 Answer by Tundey for What does 'string is not terminated' mean? Tundey 2009-08-25T12:25:37Z 2009-08-25T12:25:37Z <p>"string not terminated" usually means you are missing the closing quote for your string.</p> http://stackoverflow.com/questions/1213589/why-would-a-database-developer-use-linq/1213685#1213685 2 Answer by Tundey for Why would a Database developer use LINQ Tundey 2009-07-31T16:58:13Z 2009-07-31T16:58:13Z <p>I think a better question is why would one replace SQL with LINQ when querying a database?</p> http://stackoverflow.com/questions/1201867/windows-workflow-why-do-they-get-stuck-in-persistence/1201896#1201896 1 Answer by Tundey for Windows Workflow: Why do they get stuck in persistence? Tundey 2009-07-29T17:40:14Z 2009-07-29T17:40:14Z <p>Have you checked the clock on your db and web servers (if they are not the same server)? I've had similar problems before with workflow and the root cause was that the db and web server clocks were not in sync.</p> http://stackoverflow.com/questions/1178640/how-do-i-use-a-common-class-between-winforms-client-and-web-service/1178764#1178764 0 Answer by Tundey for How do I use a common class between winforms client and web service? Tundey 2009-07-24T16:34:45Z 2009-07-24T16:34:45Z <p>The issue is that when your objects come over the wire, they are deserialized into classes that are private to the web service's proxy. So even though the names of the classes are the same, it's a separate class. And you'll notice (if you use F12 in Visual Studio) that the classes from the webservice don't have all the methods of the classes in the "common" project. </p> http://stackoverflow.com/questions/1171594/moss-vs-traditional-asp-net/1172251#1172251 2 Answer by Tundey for MOSS vs. traditional ASP.NET Tundey 2009-07-23T14:42:57Z 2009-07-23T14:42:57Z <p>Frankly, I don't understand why people compare SharePoint and ASP.NET as if they were competing products. If you need majority of the features of SharePoint (collaboration, workflow, communities, office integration, document management etc), then it may be worth your while to use SharePoint rather than re-inventing everything.</p> <p>But if you are developing a classic web application, why bring MOSS into the picture? Unless your clients already have MOSS in place and would rather use it to host their apps. And if your clients are really gung ho about SharePoint, you might want to remind them that SharePoint licensing is very expensive while ASP.NET is free!</p> <p>Part of the curse and blessing of SharePoint is it's ability to be infinitely customized. Most of the features of SharePoint can either be used as-is, customized with SharePoint Designer or replaced entirely by writing your own C# code. This is a blessing because it means SharePoint is infinitely customizable. It's a curse because customizing it can be a royal pain.</p> http://stackoverflow.com/questions/870552/what-are-you-doing-to-prepare-for-sharepoint-2010/1145507#1145507 0 Answer by Tundey for What are you doing to prepare for SharePoint 2010? Tundey 2009-07-17T20:26:20Z 2009-07-17T20:26:20Z <p>I think most people are probably not going to upgrade existing 2007 installations to 2010. Unless there's a very compelling reason. Like Jamie's said, why fix what's not broken? Especially when the fix might just cripple everything. Especially as a bug in SP2 causes existing installations to expire 180 after SP2 installation. </p> <p>If you have a customer that <strong>must</strong> have MOSS 2010, I would think the safe thing to do would be to install it side-by-side as opposed to upgrading. SharePoint is such a behemoth with <strong>so</strong> many ways of doing things that I am afraid an upgrade will not work in 80% of the customized installations out there.</p> http://stackoverflow.com/questions/1143882/error-while-loading-jpeg-a-generic-error-occurred-in-gdi/1143954#1143954 0 Answer by Tundey for Error while loading JPEG: "A generic error occurred in GDI+." Tundey 2009-07-17T15:20:36Z 2009-07-17T15:20:36Z <p>The error can be a permission problem. Especially if your application is an ASP.NET application. Try moving the file to the same directory as your executable (if Win forms) or the root directory of your web application (if asp.net).</p> http://stackoverflow.com/questions/1143878/crystal-report-running-thru-net/1143928#1143928 1 Answer by Tundey for Crystal report - Running thru .NET Tundey 2009-07-17T15:17:20Z 2009-07-17T15:17:20Z <p>A solution is to create a system DSN (ODBC) for connecting to your target database. You can then switch the ODBC to whichever database you want (local,test,stage etc). Also, if you ensure an ODBC connection of the same name is available on all your servers, moving the report from dev->test->stage->production should be easy.</p> http://stackoverflow.com/questions/1143397/how-to-safely-remove-orphaned-values-in-the-windows-registry/1143427#1143427 1 Answer by Tundey for How to safely remove orphaned values in the Windows registry? Tundey 2009-07-17T13:53:57Z 2009-07-17T13:53:57Z <p>Have you tried tools like <a href="http://www.ccleaner.com/" rel="nofollow">CCleaner</a>?</p> http://stackoverflow.com/questions/1143274/how-do-you-deploy-your-asp-net-applications-to-live-servers/1143317#1143317 0 Answer by Tundey for How do you deploy your ASP.NET applications to live servers? Tundey 2009-07-17T13:36:09Z 2009-07-17T13:36:09Z <p>Simple XCopy for ASP.NET. Zip it up, sftp to the server, extract into the right location. For the first deployment, manual set up of IIS</p> http://stackoverflow.com/questions/1125004/which-is-more-efficient-multiple-mysql-tables-or-one-large-table/1125039#1125039 1 Answer by Tundey for Which is more efficient: Multiple MySQL tables or one large table? Tundey 2009-07-14T12:24:21Z 2009-07-14T12:24:21Z <p>I think this is one of those "it depends" situation. Having multiple tables is cleaner and probably theoretically better. But when you have to join 6-7 tables to get information about a single user, you might start to rethink that approach. </p> http://stackoverflow.com/questions/1119801/whats-faster-in-or-or/1119864#1119864 1 Answer by Tundey for What's faster IN or OR? Tundey 2009-07-13T14:42:08Z 2009-07-13T14:42:08Z <p>Regardless of whether or not A is a computation or column, looks like SQL Server 2005 converts IN to OR clauses.</p> http://stackoverflow.com/questions/1092020/xml-vs-binary-performance-for-serialization-deserialization/1092090#1092090 0 Answer by Tundey for XML vs Binary performance for Serialization/Deserialization Tundey 2009-07-07T12:41:54Z 2009-07-07T12:41:54Z <p>Have you tried creating custom serialization classes for your classes? Instead of using XmlSerializer which is a general purpose serializer (it creates a bunch of classes at runtime). There's a tool for doing this (sgen). You run it during your build process and it generates a custom assembly that can be used in pace of XmlSerializer. </p> <p>If you have Visual Studio, the option is available under the Build tab of your project's properties.</p> http://stackoverflow.com/questions/997109/newbie-asp-net-programmer-needs-help/997140#997140 1 Answer by Tundey for Newbie ASP.Net programmer needs help Tundey 2009-06-15T16:47:49Z 2009-06-15T16:47:49Z <p>You can force the page to refresh by using a meta tag, or javascript. Or AJAX.</p> http://stackoverflow.com/questions/950272/splistitem-in-formslib-does-not-handle-blank-values/950387#950387 0 Answer by Tundey for SPListItem in FormsLib does not handle blank values Tundey 2009-06-04T12:54:32Z 2009-06-04T12:54:32Z <p>Yes. I have encountered this and the work around I came up with was to add a single space instead of clearing out the field entirely. In my experience though, it only happened if I made the changes in the EditForm. When done in InfoPath, it seemed to work.</p> <p>Of course, after using " " as my empty value, I had to trim it whenever I needed to check if the field was indeed blank.</p> http://stackoverflow.com/questions/643859/which-comes-first-the-interface-or-the-class/643865#643865 0 Answer by Tundey for Which comes first - The Interface or the Class Tundey 2009-03-13T17:57:08Z 2009-03-13T17:57:08Z <p>Well if you really go through the design phase, you'll have created the designs for the interface and class before coding either. Right?</p> http://stackoverflow.com/questions/638727/charts-for-asp-net/638769#638769 2 Answer by Tundey for Charts for ASP.NET Tundey 2009-03-12T14:10:05Z 2009-03-12T14:10:05Z <p>All those recommending Microsoft new Chart Control should know that it requires .NET 3.5 SP1. So while it's free and good looking, unless you are running .NET 3.5, you can't use it.</p> http://stackoverflow.com/questions/638727/charts-for-asp-net/638751#638751 1 Answer by Tundey for Charts for ASP.NET Tundey 2009-03-12T14:05:15Z 2009-03-12T14:05:15Z <p>I have used Telerik for basic charting and it's not bad. Of course, it's not free. So you might want to investigate the Microsoft Chart Control first.</p> http://stackoverflow.com/questions/638561/what-is-the-proper-way-to-format-code/638616#638616 3 Answer by Tundey for What is the proper way to format code? Tundey 2009-03-12T13:23:59Z 2009-03-12T13:23:59Z <p>Unless you go nuts with the vertical spacing, I see no problem with separating out your code. I know people like to toss around the idea of using little methods, but something even if your method does one single thing, that single thing could take a lot of code to accomplish. Not everything can be done in a screenful of code.</p> http://stackoverflow.com/questions/638525/how-if-at-all-can-you-make-an-asp-net-usercontrol-inherit-from-another-usercont/638581#638581 0 Answer by Tundey for How (if at all) can you make an ASP.NET UserControl inherit from another UserControl? Tundey 2009-03-12T13:16:02Z 2009-03-12T13:16:02Z <p>The short answer is no it can't be <em>easily</em> done. There's no inheritance between user controls or webforms. You can create an inheritance hierarchy between the code behinds classes but the gui components aren't inherited.</p> http://stackoverflow.com/questions/624340/sharepoint-form-layout-in-vb/624715#624715 0 Answer by Tundey for Sharepoint form layout in VB Tundey 2009-03-09T01:29:21Z 2009-03-09T01:29:21Z <p>Smart Part (or a variation of it) is the easiest way to go. Why mess with rendering direct html when you can develop a user control more easily?</p> <p>Plus if you are not an expert in VB, having Visual Studio Designer will help with creating user controls</p> http://stackoverflow.com/questions/620978/how-to-deploy-web-config-modifications-in-a-sharepoint-web-application/624701#624701 0 Answer by Tundey for how to deploy web.config modifications in a Sharepoint web application? Tundey 2009-03-09T01:24:50Z 2009-03-09T01:24:50Z <p>I think direct web.config manipulation can get tricky when you have multiple servers. If your entire installation is only on a few servers, it just might be easier doing that than trying to make simple web.config changes via code.</p> <p>Plus, manipulating the web.config directly ensures you have a complete web.config in your source control system. If you use the API to make changes, all you'll have in source control is a bunch of C# code that you hope are bug free!</p> http://stackoverflow.com/questions/619716/why-cast-to-an-interface/619737#619737 8 Answer by Tundey for Why cast to an interface? Tundey 2009-03-06T17:40:04Z 2009-03-06T17:40:04Z <p>Because you want to restrict yourself to only methods provided by the interface. If you use the class, you run the risk of calling a method (inadvertently) that's not part of the interface.</p> http://stackoverflow.com/questions/618903/is-there-any-reason-why-an-aspbutton-will-work-but-an-asplinkbutton-will-not/618923#618923 1 Answer by Tundey for Is there any reason why an asp:Button will work but an asp:LinkButton will not? Tundey 2009-03-06T13:52:17Z 2009-03-06T13:52:17Z <p>LinkButton uses javascript. Check that it's not turned off on the browser.</p> http://stackoverflow.com/questions/603389/sharepoint-list-error-value-does-not-fall-within-the-expected-range/603405#603405 0 Answer by Tundey for SharePoint List Error: "Value does not fall within the expected range" Tundey 2009-03-02T18:22:07Z 2009-03-02T19:03:13Z <p>This usually means "URL" is not a field in the list. </p> <p>If it's a promoted InfoPath column, try deactivating and re-activating the form template to the site. I have noticed that I have to do this whenever I add a new promoted field to an infopath template.</p> http://stackoverflow.com/questions/20389/deploying-infopath-forms-to-different-sharepoint-servers 1 Deploying InfoPath forms to different SharePoint servers Tundey 2008-08-21T16:12:45Z 2009-02-27T16:42:42Z <p>How do you manage deploying InfoPath forms to different sharepoint servers? Is there a better way to deal all the data connections being site-specific without opening the forms, editing the data connections and republishing for each environment?</p> http://stackoverflow.com/questions/592035/why-is-resharper-making-the-following-recommendation/592056#592056 0 Answer by Tundey for Why is resharper making the following recommendation? Tundey 2009-02-26T19:30:29Z 2009-02-26T19:30:29Z <p>I suppose because T could be a non-reference type.</p> http://stackoverflow.com/questions/582552/tfs-trial-edition-licensing-question/582572#582572 0 Answer by Tundey for TFS Trial Edition Licensing Question Tundey 2009-02-24T17:02:19Z 2009-02-24T17:02:19Z <p>Apart from this being illegal, I would think the hassle of switching to a new server every 90 days will out weigh the cost of just paying for the software. </p> <p>So you have 3 choices</p> <ul> <li>pay for the software and get legal</li> <li>keep switching servers every 90 days</li> <li>switch to a free open source system (subversion?)</li> </ul> <p>There's a 4th choice: you can go to ALL Microsoft events and hope they give out free licenses to TFS at one of the events :)</p> http://stackoverflow.com/questions/577516/4d-is-it-any-good/577547#577547 2 Answer by Tundey for 4D - is it any good? Tundey 2009-02-23T12:58:32Z 2009-02-23T12:58:32Z <p>I'll be wary of investing too much into something like this. On the good side, if that's what your company uses learning it will pay dividends. But the skills you learn will be hard to use in other places.</p> http://stackoverflow.com/questions/566761/object-reference-not-set-to-an-instance-of-an-object/566777#566777 1 Answer by Tundey for Object reference not set to an instance of an object Tundey 2009-02-19T19:27:00Z 2009-02-19T19:27:00Z <p>Are you sure that's where the error is? Looks like the exception started from the Write method of HttpResponse.</p> http://stackoverflow.com/questions/1277965/should-i-set-the-initial-java-string-values-from-null-to/1277977#1277977 Comment by Tundey on Should I set the initial java String values from null to ""? Tundey 2009-08-14T17:07:09Z 2009-08-14T17:07:09Z @Chris: But Java is not a loosely-typed language so why even bother with a half-assed attempt to make it look like one? http://stackoverflow.com/questions/1213589/why-would-a-database-developer-use-linq/1213785#1213785 Comment by Tundey on Why would a Database developer use LINQ Tundey 2009-07-31T17:35:44Z 2009-07-31T17:35:44Z lol @ &quot;every dedicated DBA nightmare&quot;. http://stackoverflow.com/questions/1213589/why-would-a-database-developer-use-linq/1213685#1213685 Comment by Tundey on Why would a Database developer use LINQ Tundey 2009-07-31T17:33:35Z 2009-07-31T17:33:35Z @Marc_s: You can get intellisense with tools for databases too. So that's not a compelling reason. @Robert: Linq is the preferred method for accessing your data through an ORM such as Linq to SQL? Isn't that like using a word to define itself. Bear in mind, I am not questing Linq itself. I like the idea of writing queries against non-sql data structures. But I don't understand why one would replace SQL with Linq (replace CAML with Linq on the other hand would be great). http://stackoverflow.com/questions/1177438/c-try-catch-else/1177451#1177451 Comment by Tundey on C# try-catch-else Tundey 2009-07-24T12:51:08Z 2009-07-24T12:51:08Z You beat me to it. http://stackoverflow.com/questions/1176011/sql-to-determine-minimum-sequential-days-of-access Comment by Tundey on SQL to determine minimum sequential days of access? Tundey 2009-07-24T12:45:54Z 2009-07-24T12:45:54Z Does this question qualify as &quot;meta&quot; since it's using SO to improve SO? :) http://stackoverflow.com/questions/1176011/sql-to-determine-minimum-sequential-days-of-access/1176255#1176255 Comment by Tundey on SQL to determine minimum sequential days of access? Tundey 2009-07-24T12:44:46Z 2009-07-24T12:44:46Z This is why DTE is probably my favorite feature in SQL 2005. http://stackoverflow.com/questions/1172152/c-and-asp-net-mcqs Comment by Tundey on C# and ASP.NET MCQs Tundey 2009-07-23T13:42:57Z 2009-07-23T13:42:57Z This belongs on StackOverflow http://stackoverflow.com/questions/950272/splistitem-in-formslib-does-not-handle-blank-values/950387#950387 Comment by Tundey on SPListItem in FormsLib does not handle blank values Tundey 2009-06-04T13:30:10Z 2009-06-04T13:30:10Z fortunately, I haven't had to deal with those. sorry. http://stackoverflow.com/questions/446474/how-do-you-write-code-at-home/446633#446633 Comment by Tundey on How do you write code at home? Tundey 2009-05-08T12:54:13Z 2009-05-08T12:54:13Z Because most likely the software is licensed for company use. http://stackoverflow.com/questions/576365/how-can-i-export-my-asp-net-page-to-excel/576371#576371 Comment by Tundey on How can I export my ASP.NET page to Excel? Tundey 2009-04-09T17:36:42Z 2009-04-09T17:36:42Z You have to do more than this. Otherwise, the exported &quot;excel document&quot; will include links to images on your site, filters, buttons etc. http://stackoverflow.com/questions/686806/msbuild-timeout/686818#686818 Comment by Tundey on msbuild timeout Tundey 2009-03-26T17:46:18Z 2009-03-26T17:46:18Z You question makes it appear that you are looking for a way to <b>have</b> msbuild timeout instead of a way to prevent it from timing out. http://stackoverflow.com/questions/638727/charts-for-asp-net/638750#638750 Comment by Tundey on Charts for ASP.NET Tundey 2009-03-12T14:46:25Z 2009-03-12T14:46:25Z Touche! 2 points for going through all my posts to find this one. But still I think a question like &quot;what's ASP.NET&quot; is way more general than &quot;give me some recommendations for charting&quot;. http://stackoverflow.com/questions/638727/charts-for-asp-net/638750#638750 Comment by Tundey on Charts for ASP.NET Tundey 2009-03-12T14:07:33Z 2009-03-12T14:07:33Z I think the person is looking for informed opinions and not just marketing sales pitches. I like to think everyone here can go a google search but when they come here, they want first hand experience. http://stackoverflow.com/questions/638496/what-is-fastest-int-convert-toint32x-or-int32-parsex/638507#638507 Comment by Tundey on What is fastest: (int), Convert.ToInt32(x) or Int32.Parse(x)? Tundey 2009-03-12T13:21:10Z 2009-03-12T13:21:10Z How do you &quot;know&quot;? Unless x is an int, you can't ever know for sure! http://stackoverflow.com/questions/620978/how-to-deploy-web-config-modifications-in-a-sharepoint-web-application/621146#621146 Comment by Tundey on how to deploy web.config modifications in a Sharepoint web application? Tundey 2009-03-09T01:26:20Z 2009-03-09T01:26:20Z I think it depends on how many WPE you have in your environment.