User AdamBT - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T04:29:05Zhttp://stackoverflow.com/feeds/user/22426http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1677076/text-manipulation/1677372#16773720Answer by AdamBT for Text manipulationAdamBT2009-11-04T23:22:34Z2009-11-04T23:22:34Z<p>Looks like you can just OR the columns with the same name together.</p>
http://stackoverflow.com/questions/1632280/c-windows-service-needs-to-make-registry-changes1C# Windows service needs to make registry changesAdamBT2009-10-27T17:06:42Z2009-10-27T23:43:29Z
<p>I have a service that needs to update the registry every 5 minutes (counteract gpo). The code runs fine in a regular application, but when I put it in a windows service, it doesn't make the changes. I am using the local system account for the service and it is not throwing any exceptions</p>
<p>The code below works in a regular console app but not in the service:</p>
<pre><code>RegistryKey key = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop", true);
if (key != null)
{
key.SetValue("ScreenSaverIsSecure", "0", RegistryValueKind.String);
key.SetValue("ScreenSaveActive", "0", RegistryValueKind.String);
key.SetValue("ScreenSaveTimeOut", "0", RegistryValueKind.String);
key.SetValue("SCRNSAVE.EXE", "", RegistryValueKind.String);
}
key = Registry.CurrentUser.OpenSubKey(@"Software\Policies\Microsoft\Windows\Control Panel\Desktop", true);
if (key != null)
{
key.SetValue("ScreenSaverIsSecure", "0", RegistryValueKind.String);
key.SetValue("ScreenSaveActive", "0", RegistryValueKind.String);
key.SetValue("ScreenSaveTimeOut", "0", RegistryValueKind.String);
key.SetValue("SCRNSAVE.EXE", "", RegistryValueKind.String);
}
System.Diagnostics.Process.Start(@"c:\windows\System32\RUNDLL32.EXE", "user32.dll, UpdatePerUserSystemParameters");
</code></pre>
<p>Any Ideas?</p>
<p><strong>EDIT:</strong></p>
<p>Thanks for the replies. I don't know why the "CurrentUser" escaped my attention. Thanks for pointing that out.</p>
<p>My problem still remains that the group policy is being pushed against the currentuser. Right now I am considering just creating an app that loads at startup and stays active. Any other suggestions would be welcome.</p>
<p><strong>EDIT:</strong></p>
<p>As to Will's comment, I am unable to find the <em>UpdatePerUserSystemParameters</em> function signature in the win32 api. Does that imply that it can be called without parameters?</p>
<pre><code> [System.Runtime.InteropServices.DllImport("user32.dll")]
private static extern bool UpdatePerUserSystemParameters();
</code></pre>
http://stackoverflow.com/questions/1356699/sharepoint-zones/1357018#13570180Answer by AdamBT for Sharepoint zonesAdamBT2009-08-31T11:31:34Z2009-08-31T15:10:47Z<p>The names of the zones don't mean anything. You can set them up however you want. There is no way to add new zones as they are hard wired in the code. See this <a href="http://blog.sharepointalist.com/2009/04/sharepoint-2007-moss-add-url-zone.html" rel="nofollow">link</a>
That being said, there should be an "Extranet" zone as this is one that is hardwired in.</p>
<p>I think it would have been better if MS would have just numbered the zones and let the user name them.</p>
http://stackoverflow.com/questions/1341050/registering-sharepoint-event-receivers-that-are-already-registered1Registering SharePoint Event Receivers that are already registeredAdamBT2009-08-27T13:17:38Z2009-08-27T22:58:44Z
<p>I am writing a web part against a list. The first thing I do in the web part is verify that my custom event receivers are registered on the list. If they are not, I register the programmatically.</p>
<p>I have noticed that if I try to register an event that is already registered, I get no errors and no “Extra” events are registered.</p>
<p>My question is: Would it be more efficient to just register the events each time the web part loads rather than iterating through each event in the event receiver list and doing compares to see if each of my event receivers are there?</p>
<p><strong>Edit</strong></p>
<p>About the Property bag suggestions. After thinking a bit more about it, this will not be a feasable solution. The reason that I am "verifying" that the receivers are there is because we have 3rd party webparts that are attached to the same list. These have, in the past, actually unregistered our custom receivers. Setting a flag in the property bag will just let me know that I have verified once, but won't tell me if they get removed by another.</p>
http://stackoverflow.com/questions/219382/profile-user-db-error-in-webpart1Profile User DB error in WebPartAdamBT2008-10-20T18:25:04Z2009-08-14T01:48:22Z
<p><strong>EDIT:</strong> Modified title and added update.<br></p>
<p><strong>UPDATE</strong>:
<em>We no longer believe this is a 64bit vs 32bit problem. We have found that the only people that were seeing this, were people that were set in the farm policy as "full control." (Not acting as System Account) Once we tested regular users, we found none had the problem. Removing the "problem" users from the farm policy and adding them back, fixed all but one user(a fellow dev:)).</em></p>
<p>We started out our Farm with 2 32bit WFE's and a 32bit Application server. We have decided to add 64bit front ends to our farm, and for the most part, almost everything worked fine. The exception is a custom web part that accesses the user profile database. Works fine on 32bit front end, but we get the following error on the 64bit front end:</p>
<blockquote>
<p>User Not Found: Could not load profile data from the database. </p>
<p>Description: An unhandled exception
occurred during the execution of the
current web request. Please review the
stack trace for more information about
the error and where it originated in
the code. </p>
<p>Exception Details:
Microsoft.Office.Server.UserProfiles.UserNotFoundException:
User Not Found: Could not load profile
data from the database.</p>
<p>Source Error: </p>
<p>An unhandled exception was generated
during the execution of the current
web request. Information regarding the
origin and location of the exception
can be identified using the exception
stack trace below. </p>
<p>Stack Trace: </p>
<p>[UserNotFoundException: User Not
Found: Could not load profile data
from the database.]<br />
Microsoft.Office.Server.UserProfiles.UserProfile.Load(SqlDataReader
myReader, Boolean bFirstRead, Boolean
bWssId) +930<br />
Microsoft.Office.Server.UserProfiles.UserProfile.Load(SqlDataReader
myReader) +64<br />
Microsoft.Office.Server.UserProfiles.UserProfile.RetrieveUser(String
strAcct, Guid gAcct, Byte[] bSid,
Nullable`1 recordId, Boolean
doNotResolveToMasterAccount) +1507<br />
Microsoft.Office.Server.UserProfiles.UserProfile..ctor(UserProfileManager
objManager, String strAcct, Boolean
doNotResolveToMasterAccount, Boolean
forceUserIsSelf) +584<br />
Microsoft.Office.Server.UserProfiles.UserProfile..ctor(UserProfileManager
objManager, String strAcct) +80<br />
Microsoft.Office.Server.UserProfiles.UserProfileManager.GetUserProfile(String
strAccountName) +205</p>
</blockquote>
<p>Since the WFE is on the same farm, it should be looking at the same database.</p>
<p>Let me know if any more info is needed.</p>
<p>Any ideas would be appreciated!</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/194427/what-do-you-think-about-using-the-project-euler-website-as-a-candidate-profiling/1275463#12754631Answer by AdamBT for What do you think about using the Project Euler website as a candidate profiling tool?AdamBT2009-08-14T00:41:14Z2009-08-14T00:41:14Z<p>How about you ask them if they are a member of any site like Project Euler, SO, and/or is a contributor to an open source project. If they say yes, you know that they are, at the very least, interested in programing and/or problem solving. You could even ask them to log into there account and see some of their contributions/solutions. </p>
<p>I, personally, would find it refreshing for someone to ask to see my work that I did when not under the pressure of someone standing over my shoulder watching me <strong>TYPE</strong> a solution for FizzBuzz.</p>
<p>Finding out that your candidate is a contributor to an open source project and/or a member of a programming community seems much more valuable than finding out if they can handle the pressure of typing (or writing on a whiteboard/paper) while the interviewer is waiting.</p>
<p>All that being said, I believe any programmer with the minimum math background (basic algebra) should be able to solve any of the first ten Project Euler questions in less than 30 minutes.</p>
<p>Finding out a candidate is a Project Euler member should be a big plus. Most of the questions past 30ish are not for the faint of heart, and although they are quite math intensive, implementing a <strong>KNOWN</strong> algorithm in an efficient manner is, in most cases, not trivial. </p>
http://stackoverflow.com/questions/192122/moss-2007-invalid-url-exception-spsite-openweb0MOSS 2007 -- Invalid URL Exception SPSite.OpenWeb(...)AdamBT2008-10-10T16:21:31Z2009-08-13T22:50:45Z
<p>This may seem a bit trivial, but I have not been able to figure it out. I am opening up a SPSite and then trying to open up a SPWeb under that SPSite. This is working fine on the VPC, which has the same Site Collection/Site hierarchy, but on production, I get an exception telling me that the URL is invalid when I try the SPSite.OpenWeb(webUrl);. I have verified that the URL’s are correct.</p>
<p>The Code:</p>
<pre><code> try
{
SPSite scheduleSiteCol = new SPSite(branchScheduleURL);
lblError.Text += Environment.NewLine + "Site Collection URL: " + scheduleSiteCol.Url;
SPWeb scheduleWeb = scheduleSiteCol.OpenWeb(branchScheduleURL.Replace(scheduleSiteCol.Url, "")); //<--- Throws error on this line
SPList scheduleList = scheduleWeb.GetList(branchScheduleURL + "/lists/" + SPContext.Current.List.Title);
return scheduleList.GetItemById(int.Parse(testID));
}
catch (System.Exception ex)
{
lblError.Text += Environment.NewLine + ex.ToString();
return null;
}
</code></pre>
<p>Note:<br>
branchScheduleURL is actually the whole URL that includes the URL of the Web as well.</p>
<p>The output + exception:</p>
<blockquote>
<p>Site Collection URL: https://ourSite.com/mocc
<br>System.ArgumentException: Invalid URL: /internal/scheduletool. at Microsoft.SharePoint.SPSite.OpenWeb(String strUrl, Boolean requireExactUrl) at Microsoft.SharePoint.SPSite.OpenWeb(String strUrl) at MOCCBranchScheduleListWeb.MOCCBranchScheduleListV3.GetConflictListItem(String branchScheduleURL, String testID)System.NullReferenceException: Object reference not set to an instance of an object. at MOCCBranchScheduleListWeb.MOCCBranchScheduleListV3.CheckForConflicts(String[] cfcFlags1, DateTime startTime, DateTime endTime, String[] cfcFlags2)</p>
</blockquote>
<p>Note:<br>https://ourSite.com/mocc/internal/scheduletool is the SPWeb I am trying to open.</p>
<p>Am I missing something obvious? Any help would be greatly appreciated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1268267/webpart-metadata/1269515#12695152Answer by AdamBT for WebPart "metadata"?AdamBT2009-08-13T00:53:31Z2009-08-13T00:53:31Z<p>Directly accessing the sharepoint content databases is a big "no no." That's the official answer. :)</p>
<p>That being said, I have only ever looked in the content databases and never tried to actually change anything manually.</p>
<p>My suggestion, would be to modify the existing web part to modify the property based on currently set property(s). (I am assuming that some currently set property is invalid or needs to be updated based on changes to the infrastructure.) ... If this is the case, you can validate the property; making sure that current property is changed to what it needs to be, and/or making sure future property changes are valid. </p>
<p>Good luck!</p>
http://stackoverflow.com/questions/1268836/how-to-clone-an-item-in-a-sharepoint-list/1269483#12694831Answer by AdamBT for How to clone an Item in a SharePoint list?AdamBT2009-08-13T00:44:25Z2009-08-13T00:44:25Z<p>Your best bet is to use event receivers. The ItemAdded(Synchronous) or ItemAdding(Asynchronous) event receivers will allow you to access the data from the item that was just added.</p>
<p>You can use this information to create a different item, either in the same list, in a new list, or in any type of storage medium you can get too.</p>
<p>Custom workflows will also give you much of the same ability.</p>
<p>Excellent article on ER's --> <a href="http://developers.de/blogs/adis%5Fjugo/archive/2009/03/12/develop-and-deploy-a-sharepoint-event-receiver-from-the-scratch.aspx" rel="nofollow">http://developers.de/blogs/adis_jugo/archive/2009/03/12/develop-and-deploy-a-sharepoint-event-receiver-from-the-scratch.aspx</a></p>
http://stackoverflow.com/questions/1265631/does-an-asp-net-application-somehow-automatically-integrate-better-with-sharepoin/1269439#12694391Answer by AdamBT for Does an ASP.NET application somehow automatically integrate better with SharePoint than classic ASP?AdamBT2009-08-13T00:29:27Z2009-08-13T00:29:27Z<p>The short answer is NO. If it wasn't written as a sharepoint addon, you are going to have to figure out how to integrate it into sharepoint.</p>
<p>Integration may be as simple as putting the page in a pageviewer webpart or adding it in as a page in a library. However, getting it to truly interact with sharepoint (sharepoint lists, sharepoint webservices, etc...) will take some wiring up. "Wiring it up" will either take some custom code or at the very minimum some interaction with sharepoint designer (ick). Like many others that have answered, "seamless" probably doesn't apply unless it was written specifically for SharePoint.</p>
<p>We have done quite a few "integration" projects with both ASP and ASP.net, and have found them to be equally frustrating. :)</p>
http://stackoverflow.com/questions/1225923/c-eventlog-impersonation-and-access-denied-win32exception/1227350#12273500Answer by AdamBT for C#: Eventlog, impersonation and Access Denied Win32ExceptionAdamBT2009-08-04T12:53:38Z2009-08-04T12:53:38Z<p>Are you checking to see if "MyCustomSource" exists before you try writing to it?</p>
http://stackoverflow.com/questions/205893/sharepoint-interview-questions/206071#20607111Answer by AdamBT for SharePoint interview questionsAdamBT2008-10-15T19:27:51Z2009-01-28T14:44:07Z<p>Q. When running with SPSecurity.RunWithElevatedPrivileges (web context) what credentials are being used?</p>
<p>A. The App Pool Identity for the web application running SharePoint.</p>
http://stackoverflow.com/questions/251256/creating-custom-field-types-and-custom-content-types2Creating Custom Field Types and Custom Content TypesAdamBT2008-10-30T18:34:07Z2009-01-28T14:07:12Z
<p>Does anyone have any good links for developing custom field and content types that doesn't involve using VSeWSS? Most of the stuff I have seen on the web requires installing VSeWSS, I would rather build them from scratch with just VS2005.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/464974/how-to-create-a-shared-document-library-in-sharepoint-that-can-be-used-in-subsite/465066#4650660Answer by AdamBT for How to create a shared document library in SharePoint that can be used in subsites?AdamBT2009-01-21T12:22:31Z2009-01-21T12:22:31Z<p>Not out of the box. You will either need a third party "roll-up" ("roll-down") web part or you will need to write your own. OTB, views for lists/libraries are only visible at the current site level.</p>
<p>That being said, roll-ups (in one form or another) are probably one of the most common 3rd party seller for sharepoint (just a guess). In fact, I would bet there are several free projects out there that you could use (Check codeplex). You should have no problem finding one that meets your needs.</p>
<p>My suggestion would be to write your own, as this would give you some real good experience using the SharePoint object model and there really are no complicated concepts. Once you get past being able to do site navigation and accessing list data through the OM, you pretty much have all the tools you need.</p>
<p>Good Luck</p>
http://stackoverflow.com/questions/396963/sharepoint-password-change/424370#4243700Answer by AdamBT for Sharepoint password change AdamBT2009-01-08T14:16:42Z2009-01-08T14:16:42Z<p>Wow! ... First I would like to commend Bjørn Furuknap for noticing Lee's blatant misuse of Stack Overflow. After reading Lee's previous comments, I would say he and his company (SharePointBoost) owe SO money for advertising. At this time, he has posted 25+ times and has always linked to SharePointBoost as being the solution to the problem.</p>
<p>We use multiple 3rd Party tools, but I can garantee that we will never use SharePointBoost after seeing their flagrant attempt at free advertising and misleading the SO user. </p>
<p>Shame on you Lee.Sharepoint and shame on you SharePointBoost!</p>
http://stackoverflow.com/questions/419628/sharepoint-document-collaboration/420188#4201881Answer by AdamBT for Sharepoint Document collaborationAdamBT2009-01-07T12:46:23Z2009-01-07T18:39:38Z<p>SharePoint has no clue what is actually in the document (other than indexing for search). </p>
<p>To do what you want, you would have to break the document up into 3 different documents and use item level permissions on each, or put each part in a seperate document library that already has the permission levels set to correspond to the user(s) you want to be able to contribute to that part.</p>
http://stackoverflow.com/questions/284860/can-moss-32-bit-and-64-bit-exist-in-the-same-farm/354314#3543140Answer by AdamBT for Can MOSS 32 bit and 64 bit exist in the same farm?AdamBT2008-12-09T21:37:51Z2008-12-09T21:37:51Z<p>We are actually running 32 and 64 bit wfe's in the same farm with no problems. We talked to an MVP and he said it is absolutely supported. The issue you have is load balancing 32 and 64 together.</p>
<p>MVP quote about the MSDN atricle <a href="http://technet.microsoft.com/en-us/library/cc261700.aspx" rel="nofollow">http://technet.microsoft.com/en-us/library/cc261700.aspx</a>:</p>
<blockquote>
<p>They assume you are load balancing 32 and 64 in the same NLB and that wouldn't balance well. It is absolutely supported architectually, however. It should work.</p>
</blockquote>
http://stackoverflow.com/questions/350852/least-squares-c-library/351147#3511471Answer by AdamBT for Least Squares C# libraryAdamBT2008-12-08T22:20:53Z2008-12-08T22:20:53Z<p>We have used MathLibX in the past and it has worked quite well. I personally have used it to do a Least Square Fit "prediction" algorithm and found it very easy to use.</p>
<p><a href="http://www.mathfunctions.com/index.htm" rel="nofollow">http://www.mathfunctions.com/index.htm</a></p>
<p>Price is $80, and it comes with 7 other functions.</p>
<p>Good Luck</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/309983#3099832Answer by AdamBT for What is the best comment in source code you have ever encountered?AdamBT2008-11-21T19:57:13Z2008-11-21T19:57:13Z<p>Just added this one today:</p>
<pre><code>// Hardcoded this for time sake ... will make andrew fix later :)
</code></pre>
http://stackoverflow.com/questions/309668/uis-in-sharepoint/309868#3098680Answer by AdamBT for UI's in SharepointAdamBT2008-11-21T19:21:07Z2008-11-21T19:21:07Z<p>I would combine 1 and 2 of Mauro's answer. Wrap up your user control in your own web part.</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/251872#25187213Answer by AdamBT for What is your best programmer joke?AdamBT2008-10-30T21:45:23Z2008-10-30T21:45:23Z<p><strong>Saw this on Jokes2Go.com today:</strong></p>
<p>Software Development Process</p>
<p>1) Order the T-shirts for the Development team</p>
<p>2) Announce availability</p>
<p>3) Write the code</p>
<p>4) Write the manual</p>
<p>5) Hire a Product Manager</p>
<p>6) Spec the software
(writing the specs after the code helps to ensure that the
software meets the specifications)</p>
<p>7) Ship</p>
<p>8) Test
(the customers are a big help here)</p>
<p>9) Identify bugs as potential enhancements</p>
<p>10) Announce the upgrade program</p>
http://stackoverflow.com/questions/250992/sharepoint-should-i-use-lists-or-a-database/251237#2512371Answer by AdamBT for SharePoint: should I use lists or a database?AdamBT2008-10-30T18:25:21Z2008-10-30T18:25:21Z<p>In addition to Maxim's answer, I would also advise that you take searching into consideration. OTB Search is really nice if this data is going to be something you will need to dig into.</p>
http://stackoverflow.com/questions/250335/using-spsite-from-32bit-application-to-access-64bit-sharepoint/250579#2505791Answer by AdamBT for Using SPSite from 32bit application to access 64bit SharePointAdamBT2008-10-30T15:23:21Z2008-10-30T15:23:21Z<p>I don't think this is a 32/64bit issue as I am in the same situation as far as developing on 32bit and deploying to 64bit. (Actually, we are running a 32bit and 64bit WFE'S) </p>
<p>Since the exception is being thrown from the SPSite constructor, I would investigate further, as to whether the machine you are running you code on (the SP box) actually recognizes that URL.</p>
http://stackoverflow.com/questions/249724/how-do-i-remove-items-from-the-site-actions-menu-in-sharepoint/250131#2501315Answer by AdamBT for How do I remove items from the Site Actions menu in SharePoint?AdamBT2008-10-30T13:13:59Z2008-10-30T13:13:59Z<p>The site actions menu is defined in the Siteaction.xml in Template\layouts\editingMenu under the 12 hive. The following link shows how to manually remove items.</p>
<p><a href="http://blog.avanadeadvisor.com/blogs/marcorizzi/archive/2008/07/23/11483.aspx" rel="nofollow">Customize Site Actions Menu</a></p>
<p>I have added options to the menu using features, but have never tried to hide OTB option in code. I would be interested in your results.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/246131/is-it-possible-to-aggregate-information-from-portal-list-to-my-site/246793#2467931Answer by AdamBT for Is it possible to aggregate information from portal list to My SiteAdamBT2008-10-29T13:31:09Z2008-10-29T13:40:21Z<p>You need a calendar roll-up web part. There are several 3rd party tools out there that do this. Companies that come to mind first are CorasWorks and Bamboo Solutions. (I am not endorsing either. :)) You might be able to find some free 3rd party roll-ups if you look hard enough.</p>
<p>If you have any sp devs, they could write this webpart for you with little effort.</p>
<p>I will see if I can find you a link or two.</p>
<p>Good Luck!</p>
<p><a href="http://www.codeplex.com/illustris/Release/ProjectReleases.aspx?ReleaseId=16317" rel="nofollow">Free List Rollup at CodePlex</a><br></p>
<p><a href="http://www.corasworks.com/" rel="nofollow">http://www.corasworks.com/</a></p>
<p><a href="http://www.bamboosolutions.com/" rel="nofollow">http://www.bamboosolutions.com/</a><br></p>
<p>I have not tried the CodePlex rollup, but have tried both the corasworks and bamboo rollups. If you can get the CodePlex rollup to do what you want, I would stick with that. :)</p>
http://stackoverflow.com/questions/241513/deploying-new-web-parts/241918#2419181Answer by AdamBT for Deploying New Web PartsAdamBT2008-10-28T01:02:33Z2008-10-28T01:02:33Z<p>Wow, you have me stumped ... I would try deploying some other 3rd party "free" web parts manually and see if you can get those to show up. This site has a few:
<a href="http://www.sharepointblogs.com/mkruger/archive/2007/06/26/free-sharepoint-web-parts-3rd-party.aspx" rel="nofollow">http://www.sharepointblogs.com/mkruger/archive/2007/06/26/free-sharepoint-web-parts-3rd-party.aspx</a></p>
<p>Have you made sure that you set: <code>[assembly: AllowPartiallyTrustedCallers]
</code>
in your AssemblyInfo file? </p>
<p>I am amazed no one else has chimed in on this. I guess next step would be to try to deploy it as a feature/solution. </p>
<p>Is this a simple hello world wp or are you doing something more?</p>
<p>To be honest, I am beginning to believe that it is your wss/moss configuration/settings that is hampering your efforts at the moment. Have you ever successfully deployed a WP to your farm? ... Is this a VPC dev farm or production?</p>
http://stackoverflow.com/questions/241513/deploying-new-web-parts/241527#2415272Answer by AdamBT for Deploying New Web PartsAdamBT2008-10-27T22:00:30Z2008-10-27T22:31:55Z<p>I believe the minimum you need to have a WP show up in the "New" Part of the webPart Catalog, you need the dll in the "bin" folder (bin in the web dir, not the 12 hive :)) or in the GAC and a safe control entry. I would verify the Safe control entry:<br>
Assembly = name of dll<br>
NameSpace = well... The NameSpace where your WebPart class resides<br>
TypeName = the name of your webPart class<br></p>
<p>You can wildcard the NameSpace and TypeName just to be sure you are getting there:</p>
<p><code>... Namespace="*" TypeName="*" ...</code></p>
<p>I would also recommend signing the assembly and putting in a PublicKeyToken=... </p>
<p>Also, try setting the trust level to WSS_Medium or Full.</p>
<p>If this doesn't work, you can try adding a .webpart file to the wpCatalog folder in your web dir.</p>
<p>Edit: Clarification </p>
http://stackoverflow.com/questions/240918/sharepoint-create-view-filter-properties/241075#2410751Answer by AdamBT for Sharepoint, Create View, Filter PropertiesAdamBT2008-10-27T19:07:11Z2008-10-27T21:41:40Z<p>This can be done OTB using the filter dropdowns when modifying or creating a view:</p>
<p><a href="http://img91.imageshack.us/my.php?image=filterew5.png" rel="nofollow">Filter Image</a></p>
<p><img src="http://img91.imageshack.us/my.php?image=filterew5.png" alt="alt text" /></p>
<p>Edit: Fixed image</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234854#23485477Answer by AdamBT for What is your best programmer joke?AdamBT2008-10-24T18:56:29Z2008-10-24T18:56:29Z<p>I am surprised this one has not already been posted. I guess I will do the honors. :)</p>
<p><img src="http://www.vatanappally.com/images/funny_flowchart.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234500#23450032Answer by AdamBT for What is your best programmer joke?AdamBT2008-10-24T17:31:44Z2008-10-24T17:31:44Z<p>JIT Happens! :)</p>
http://stackoverflow.com/questions/290121/asp-net-ajax-error-sys-webforms-pagerequestmanagerparsererrorexceptionComment by AdamBT on ASP.NET Ajax Error: Sys.WebForms.PageRequestManagerParserErrorExceptionAdamBT2009-08-31T19:34:10Z2009-08-31T19:34:10Z@Phil - I notice you marked splattne's answer correct, yet you said in a comment underneath that none of them applied. I am having the same problem, and none of the "reasons" apply for me either.
What was the solution you finally found?http://stackoverflow.com/questions/1341050/registering-sharepoint-event-receivers-that-are-already-registered/1341168#1341168Comment by AdamBT on Registering SharePoint Event Receivers that are already registeredAdamBT2009-08-27T13:45:08Z2009-08-27T13:45:08ZThanks Kusek. Permissions shouldn't be an issue. I am already using elevated permissions to register. The only down side I see to this Idea, is that multiple web parts "may" exist on multiple sites.http://stackoverflow.com/questions/1275611/stackoverflow-english-reader-please-read-noteComment by AdamBT on 我想要做一个中文版的Stackoverflow 有兴趣的请加入讨论 English Reader please read NoteAdamBT2009-08-14T01:37:25Z2009-08-14T01:37:25ZI am assuming this is a J or K question, because it is completely unreadable, cryptic and unintelligible but still gets responses. :) ... No offense intended to you J & K guys :)http://stackoverflow.com/questions/1268964/sharepoint-2007-use-sqlprofileprovider-with-windows-integrated-authenticationComment by AdamBT on SharePoint 2007: Use SqlProfileProvider with Windows Integrated Authentication?AdamBT2009-08-13T00:35:01Z2009-08-13T00:35:01ZDo you just want to store personalized settings for a web part or do you want to store them for a whole site/web? http://stackoverflow.com/questions/1260969/different-user-permisions-for-different-sites-on-sharepoint/1263279#1263279Comment by AdamBT on Different user permisions for different sites on sharepointAdamBT2009-08-13T00:14:07Z2009-08-13T00:14:07Z@Ahmad - If you have admin privs, you should be able to break inheritance and set the permissions as needed. See Andrew's edited answer.http://stackoverflow.com/questions/1260969/different-user-permisions-for-different-sites-on-sharepoint/1263279#1263279Comment by AdamBT on Different user permisions for different sites on sharepointAdamBT2009-08-13T00:07:51Z2009-08-13T00:07:51Z@Alex - It was just a suggestion. Andrew gave the correct answer and I was just confirming it for Ahmad and other users that might have the same question. I said "should" not "you have to" for the benefit of the community. I get nothing out of it whether it is marked as the answer or not.http://stackoverflow.com/questions/1260969/different-user-permisions-for-different-sites-on-sharepoint/1263279#1263279Comment by AdamBT on Different user permisions for different sites on sharepointAdamBT2009-08-12T00:10:24Z2009-08-12T00:10:24Z@Andrew - Good Answer - Might have explained that even after site provisioning, you can break permission inheritance and set permissions as needed. +1
@Ahmad - OOB, MOSS2007 implements Security Trimming. That is to say, "Users can't see items/lists/libraries/sites they do not have access to." You should mark Andrew's answer as the correct answer.http://stackoverflow.com/questions/219382/profile-user-db-error-in-webpart/1014599#1014599Comment by AdamBT on Profile User DB error in WebPartAdamBT2009-06-24T21:10:27Z2009-06-24T21:10:27Z@ Sree - are you seeing this for all users or just a small subset? ... See the UPDATE text on my original post if it is just for a subset.
We also found that 1 user had actually been updated in AD, but the Profile user DB had his old account info.http://stackoverflow.com/questions/205893/sharepoint-interview-questions/206071#206071Comment by AdamBT on SharePoint interview questionsAdamBT2009-01-28T14:42:36Z2009-01-28T14:42:36Z@dahlbyk - Thanks; I will clarify. I never considered it being used in any other context.http://stackoverflow.com/questions/396963/sharepoint-password-changeComment by AdamBT on Sharepoint password change AdamBT2009-01-08T14:57:14Z2009-01-08T14:57:14ZBjørn - Thanks for pointing lee.sharepoint out.
Lee.SharePoint - If you want anyone to take anything you say seriously, you should put a disclaimer in your posts that says you work for SharePointBoost.
Imagine my surprise when you found the solution to your own question at SharePointBoost!http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/303757#303757Comment by AdamBT on What is your best programmer joke?AdamBT2008-11-20T01:03:44Z2008-11-20T01:03:44Z5 and 14 are great!http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/256135#256135Comment by AdamBT on What is your best programmer joke?AdamBT2008-11-03T03:13:06Z2008-11-03T03:13:06ZRepeat, someone already did.http://stackoverflow.com/questions/251256/creating-custom-field-types-and-custom-content-types/251538#251538Comment by AdamBT on Creating Custom Field Types and Custom Content TypesAdamBT2008-10-30T20:05:53Z2008-10-30T20:05:53ZThanks Nat! I will take your advise into consideration. I am a glutton for punishment, though. How could I ever really appreciate these tools if I don't first throw myself headfirst at the wall a couple times. :)http://stackoverflow.com/questions/251256/creating-custom-field-types-and-custom-content-types/251299#251299Comment by AdamBT on Creating Custom Field Types and Custom Content TypesAdamBT2008-10-30T19:23:30Z2008-10-30T19:23:30ZThanks for the reply, CheGue. I will test those links out.http://stackoverflow.com/questions/251256/creating-custom-field-types-and-custom-content-types/251375#251375Comment by AdamBT on Creating Custom Field Types and Custom Content TypesAdamBT2008-10-30T19:21:57Z2008-10-30T19:21:57ZI would like to do it the first time with no add-ins. I am sure once I have a good idea about what all needs to be done, I will start using a tool to streamline the process. Thanks for the reply!