Chris Farmer

4,018
Reputation
431 views

Registered User

Name Chris Farmer
Member for 1 year
Seen 2 hours ago
Website
Location Nashville, TN
Age
Always happy, never blue.
Nov
25
comment String Compare where null and empty are equal
Sure, but aren't you going to be replacing hundreds of comparisons anyway? How do you plan to do this replacement of != without a manual effort?
Nov
24
revised Syntax error with left join on Linq query with a where clause
code format
Nov
23
answered How to disable the editing of the item after it was approved in SharePoint (WSS)?
Nov
23
comment Sending an Email Using Java
Create an smtp server on your own machine to verify that your code is correct. It's reasonable that the smtp servers you tried would not allow arbitrary machines to relay mail, so the errors you see are not surprising.
Nov
21
comment Delete a Sharepoint Wiki page that has no menu
It's a pretty extreme measure to delete a site collection when a single item in a single list gets messed up, isn't it?
Nov
19
comment List View Change
Isn't this the same thing as changing permissions on the list?
Nov
18
answered How to quickly find a sharepoint document library by id?
Nov
17
comment What is optimal method for accessing function parameters in javascript?
Your senior colleague will, too.
Nov
17
comment Do we need sharepoint to be installed on same machine for developement?
I'd just like to make the point that it's (IMO, of course) just so much easier to do your SharePoint development in VMware or some other virtualized environment. Performance is acceptable on a decent dev workstation, and you have the added benefit of VM snapshots which are occasionally useful to roll back horrible configuration or deployment mistakes.
Nov
15
revised Limit the number of available/visible Content Types in document libraries
edited title
Nov
15
comment Limit the number of available/visible Content Types in document libraries
Just curious... what kinds of data are you storing in this list with 50+ associated content types?
Nov
14
comment Image generator
These are apparently generated on the server, so it's important to know what server-side technology you'd be using on your own site.
Nov
14
comment What are some questions to ask when choosing between two equal programmers?
@ChristopheD -- true, but if they have a lot of points, it's easier for you to research the kinds of things they claim to have expertise in. Quite valuable, IMO.
Nov
14
answered MOSS 404 errors for some users on certain sites, sometimes…
Nov
13
awarded  Popular Question
Nov
13
comment What is use of feature.xml in moss2007?
+1. This book is a great look at the fundamentals of sharepoint from a dev perspective. Well worth buying.
Nov
13
comment how to set exclusive permissions on a SharePoint document library?
I was trying to write a detailed response, but it occurred to me that I don't think there's enough detail here. Are the doclib-project affiliations static? If they change, how/when will they change? Will they change when documents are added/deleted/modified in the library? Is your question really about how to write code to manage the security groups, or is your question more about catching any changes to the library or its documents?
Nov
12
accepted How to obtain SPSite for remote server from URL, username and password?
Nov
12
revised How do I update a sharepoint list using .net?
Oops. Fixed the Misspelling of pgb's name.
Nov
12
revised How to obtain SPSite for remote server from URL, username and password?
added 342 characters in body
Nov
12
answered How to obtain SPSite for remote server from URL, username and password?
Nov
12
comment What is use of feature.xml in moss2007?
It's almost impossible to believe these questions are even real at this point.
Nov
12
comment Getting started with SharePoint 2010 for SharePoint 2007 Developers
Way to snag the low-hanging SharePoint 2010 fruit!
Nov
11
revised Which addin is recommended for Visual Studio 2008 (C#) ?
edited tags
Nov
11
comment How to override SharePoint field rendering in EditForm?
I personally like this idea, but at some companies subverting the administrative and change control process with something like this might cause more trouble than the original problem itself!
Nov
11
comment How to override SharePoint field rendering in EditForm?
I am not at a SharePoint machine right now, but my guess is that there's a default rendering template in the built-in control templates within the 12 hive. You certainly could modify this to show your border, but keep in mind that future service packs or other updates may overwrite your changes. And modifying those files is always fraught with at least a little risk! Hopefully someone else here will be able to recognize a solution that will work better for your case!
Nov
11
answered How to override SharePoint field rendering in EditForm?
Nov
11
accepted Which properties and functions must be run under elevated privileges?
Nov
11
revised How do I update a sharepoint list using .net?
added lists service docs url
Nov
11
comment .NET: Blog post on GUID?
Instead of asking for the MSDN or blog link, why not just ask what features are used to make up a guid?
Nov
10
answered How do I update a sharepoint list using .net?
Nov
10
comment How do I update a sharepoint list using .net?
I think you would also want to use using around the OpenWeb call.
Nov
10
comment Will JRE 1.4 support classes compiled with Java 1.5 & 1.6?
This answer inspires much confidence. ;)
Nov
10
answered What event is triggered when a document is saved in a Document Library in SharePoint?
Nov
9
answered Patent on server side image generation
Nov
8
comment Prevent Concurrent Editing of a List Item
I don't think there's a safe definition of "while an item is being edited" here. Anyone could open an item's edit form and leave it sitting there forever. Surely you don't want to lock out other users at that point, do you?
Nov
6
awarded  Popular Question
Nov
5
accepted Does an open-source poker-related math library exist?
Nov
5
answered Does an open-source poker-related math library exist?
Nov
5
awarded  Popular Question
Nov
4
awarded  Notable Question
Nov
3
answered Which properties and functions must be run under elevated privileges?
Oct
28
answered Integrating an existing ASP.NET application into SharePoint
Oct
28
accepted Adding web page to blank sharepoint site definition
Oct
28
comment sharepoint development concept issue — about site and application
Oedipus is correct. I wasn't trying to make any practical claim to help the original poster in my previous comments. I just meant to clarify that multiple web applications almost certainly do already exist on every SharePoint server.
Oct
28
comment sharepoint development concept issue — about site and application
How about both central administration and your "regular" site?
Oct
27
comment sharepoint development concept issue — about site and application
Your definition of a Web Application implies that there can be only one per front-end server, while there can really be many.
Oct
27
revised Why can’t I use focus() to place a cursor inside of a text field outside of Firefox?
added 4 characters in body
Oct
27
asked How to help the debugger see my javascript, or how to best refactor my script to help make it debugger-friendly?
Oct
27
comment Javascript to close IE6, IE7, IE8 and Firefox without confirmation box?
Any time your attempt at implementing security is thwarted by an existing security feature in the browser, you might want to reevaluate your technique.