User Tundey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T22:07:38Zhttp://stackoverflow.com/feeds/user/1453http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1327933/what-does-string-is-not-terminated-mean/1327952#13279521Answer by Tundey for What does 'string is not terminated' mean?Tundey2009-08-25T12:25:37Z2009-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#12136852Answer by Tundey for Why would a Database developer use LINQTundey2009-07-31T16:58:13Z2009-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#12018961Answer by Tundey for Windows Workflow: Why do they get stuck in persistence?Tundey2009-07-29T17:40:14Z2009-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#11787640Answer by Tundey for How do I use a common class between winforms client and web service?Tundey2009-07-24T16:34:45Z2009-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#11722512Answer by Tundey for MOSS vs. traditional ASP.NETTundey2009-07-23T14:42:57Z2009-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#11455070Answer by Tundey for What are you doing to prepare for SharePoint 2010?Tundey2009-07-17T20:26:20Z2009-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#11439540Answer by Tundey for Error while loading JPEG: "A generic error occurred in GDI+."Tundey2009-07-17T15:20:36Z2009-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#11439281Answer by Tundey for Crystal report - Running thru .NETTundey2009-07-17T15:17:20Z2009-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#11434271Answer by Tundey for How to safely remove orphaned values in the Windows registry?Tundey2009-07-17T13:53:57Z2009-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#11433170Answer by Tundey for How do you deploy your ASP.NET applications to live servers?Tundey2009-07-17T13:36:09Z2009-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#11250391Answer by Tundey for Which is more efficient: Multiple MySQL tables or one large table?Tundey2009-07-14T12:24:21Z2009-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#11198641Answer by Tundey for What's faster IN or OR?Tundey2009-07-13T14:42:08Z2009-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#10920900Answer by Tundey for XML vs Binary performance for Serialization/DeserializationTundey2009-07-07T12:41:54Z2009-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#9971401Answer by Tundey for Newbie ASP.Net programmer needs helpTundey2009-06-15T16:47:49Z2009-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#9503870Answer by Tundey for SPListItem in FormsLib does not handle blank valuesTundey2009-06-04T12:54:32Z2009-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#6438650Answer by Tundey for Which comes first - The Interface or the ClassTundey2009-03-13T17:57:08Z2009-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#6387692Answer by Tundey for Charts for ASP.NETTundey2009-03-12T14:10:05Z2009-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#6387511Answer by Tundey for Charts for ASP.NETTundey2009-03-12T14:05:15Z2009-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#6386163Answer by Tundey for What is the proper way to format code?Tundey2009-03-12T13:23:59Z2009-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#6385810Answer by Tundey for How (if at all) can you make an ASP.NET UserControl inherit from another UserControl?Tundey2009-03-12T13:16:02Z2009-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#6247150Answer by Tundey for Sharepoint form layout in VBTundey2009-03-09T01:29:21Z2009-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#6247010Answer by Tundey for how to deploy web.config modifications in a Sharepoint web application?Tundey2009-03-09T01:24:50Z2009-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#6197378Answer by Tundey for Why cast to an interface?Tundey2009-03-06T17:40:04Z2009-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#6189231Answer by Tundey for Is there any reason why an asp:Button will work but an asp:LinkButton will not?Tundey2009-03-06T13:52:17Z2009-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#6034050Answer by Tundey for SharePoint List Error: "Value does not fall within the expected range"Tundey2009-03-02T18:22:07Z2009-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-servers1Deploying InfoPath forms to different SharePoint serversTundey2008-08-21T16:12:45Z2009-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#5920560Answer by Tundey for Why is resharper making the following recommendation?Tundey2009-02-26T19:30:29Z2009-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#5825720Answer by Tundey for TFS Trial Edition Licensing QuestionTundey2009-02-24T17:02:19Z2009-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#5775472Answer by Tundey for 4D - is it any good?Tundey2009-02-23T12:58:32Z2009-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#5667771Answer by Tundey for Object reference not set to an instance of an objectTundey2009-02-19T19:27:00Z2009-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#1277977Comment by Tundey on Should I set the initial java String values from null to ""?Tundey2009-08-14T17:07:09Z2009-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#1213785Comment by Tundey on Why would a Database developer use LINQTundey2009-07-31T17:35:44Z2009-07-31T17:35:44Zlol @ "every dedicated DBA nightmare".http://stackoverflow.com/questions/1213589/why-would-a-database-developer-use-linq/1213685#1213685Comment by Tundey on Why would a Database developer use LINQTundey2009-07-31T17:33:35Z2009-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#1177451Comment by Tundey on C# try-catch-elseTundey2009-07-24T12:51:08Z2009-07-24T12:51:08ZYou beat me to it.http://stackoverflow.com/questions/1176011/sql-to-determine-minimum-sequential-days-of-accessComment by Tundey on SQL to determine minimum sequential days of access?Tundey2009-07-24T12:45:54Z2009-07-24T12:45:54ZDoes this question qualify as "meta" since it's using SO to improve SO? :)http://stackoverflow.com/questions/1176011/sql-to-determine-minimum-sequential-days-of-access/1176255#1176255Comment by Tundey on SQL to determine minimum sequential days of access?Tundey2009-07-24T12:44:46Z2009-07-24T12:44:46ZThis is why DTE is probably my favorite feature in SQL 2005.http://stackoverflow.com/questions/1172152/c-and-asp-net-mcqsComment by Tundey on C# and ASP.NET MCQsTundey2009-07-23T13:42:57Z2009-07-23T13:42:57ZThis belongs on StackOverflowhttp://stackoverflow.com/questions/950272/splistitem-in-formslib-does-not-handle-blank-values/950387#950387Comment by Tundey on SPListItem in FormsLib does not handle blank valuesTundey2009-06-04T13:30:10Z2009-06-04T13:30:10Zfortunately, I haven't had to deal with those. sorry.http://stackoverflow.com/questions/446474/how-do-you-write-code-at-home/446633#446633Comment by Tundey on How do you write code at home?Tundey2009-05-08T12:54:13Z2009-05-08T12:54:13ZBecause 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#576371Comment by Tundey on How can I export my ASP.NET page to Excel?Tundey2009-04-09T17:36:42Z2009-04-09T17:36:42ZYou have to do more than this. Otherwise, the exported "excel document" will include links to images on your site, filters, buttons etc. http://stackoverflow.com/questions/686806/msbuild-timeout/686818#686818Comment by Tundey on msbuild timeoutTundey2009-03-26T17:46:18Z2009-03-26T17:46:18ZYou 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#638750Comment by Tundey on Charts for ASP.NETTundey2009-03-12T14:46:25Z2009-03-12T14:46:25ZTouche! 2 points for going through all my posts to find this one. But still I think a question like "what's ASP.NET" is way more general than "give me some recommendations for charting".http://stackoverflow.com/questions/638727/charts-for-asp-net/638750#638750Comment by Tundey on Charts for ASP.NETTundey2009-03-12T14:07:33Z2009-03-12T14:07:33ZI 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#638507Comment by Tundey on What is fastest: (int), Convert.ToInt32(x) or Int32.Parse(x)?Tundey2009-03-12T13:21:10Z2009-03-12T13:21:10ZHow do you "know"? 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#621146Comment by Tundey on how to deploy web.config modifications in a Sharepoint web application?Tundey2009-03-09T01:26:20Z2009-03-09T01:26:20ZI think it depends on how many WPE you have in your environment.