sharepoint

WSS 3.0 Multiple Domains

We have been running WSS 3.0 for our intranet. We are going to be moving our internet site to WSS 3.0. The vast majority of people will access the new internet site anonymously. My question is in regards to the few people who will need to authenticate so that they can access intranet material from the internet. We are going to host the...

Sharepoint SPDisposeCheck

The SPDisposeCheck utility alerted me to an impproperly disposed SPWeb.Add call. As you can see below, the typical using(SPWeb NewWeb = webs.add(siteUrl ....) method would not work because of the RunWithElevatedPrivileges would make the return newWeb out of context. By looking at the newWeb = webs.Add() line below, can anyone suggest a...

Lookup column with writeback

Hi there, Has anyone ever made a sharepoint lookup column that allows fill inn choices and does writeback to the list it does lookup from? what would it take to make such a column? If a 3.rd party solution is arround that would be realy great to :) Cheers! ...

HDI: Copy a file from SharePoint List to Local Disk

I have a simple tray application for copying files from one location to multiple location at a timed interval (daily job) The System.IO.File.Copy method does not copy from a SharePoint folder. Is there a way to do? ...

SharePoint/WSS: Modify "created by" field?

All - I am using WSS 3.0. Currently, HR will upload an employee's internal company resume to a document library on our site, but for privacy reasons, we must then restrict access to that document library, which forces users to then go through HR each time they want to update their resume. My thought is to create a list with attachment...

sharepoint- creating a new web application

hi, i have sharepoint (wss 3.0) installed. I would like to create a new web application but instead of using the default templates (team site, blank site, etc.) i would like to use a custom template. Basically, I want to copy a site that I have created (copy as site template) and use it in another web application. How do i accomplish t...

Custom List Compare dates in Sharepoint

I am creating two columns Start and end date, when the user enters end date I should validate it with the start date to check that its greater than start date, is there a way to do that?? I am using Custom Library for this, My requirement is I have to store a document with start and end date and I need to do some validations on it. Than...

Lock down InfoPath Templates

Does anyone know how to prevent users from editing an InfoPath form in Design mode? Users are storing InfoPath forms in SharePoint and it seems that anyone can edit the form in design mode and we need to be able to lock that down. ...

Microsoft Dynamic CRM integration SharePoint

Have any of you done a MS CRM 4.0 and Sharepoint integration. Any Pointers? I am new both the CRM and SharePoint. After a little more research, Id like to refine my question. I basically want to use IFRAME to add a sharepoint tab that will show the sharepoint page that I have created. Any hints on how to do that? Also how would I get...

Sharepoint Code Generation Tool

our team is looking to use a code generation tool for the current sharepoint application we are working on. We want to be able to generate most of the stored procedures and business entities instead of having to write them from scratch. Any recommendation what is the best code generation tool to use with sharepoint projects. I am familia...

How to set "Folders" properties in Sharepoint View

Hi all, I want to programmatically set the Folders property for a document library to show this view in the folder of a certain content type. I have check the SPView class. But still have no idea how to do that. anyone has any idea? Cheers ...

SharePoint 403 error for users not exist in "All People"

It is complex, I'll trying to describe it here. If the user and his group have no access rights to anything on the SP site, the user will get a proper "Error:Access Denied" SharePoint page upon logon. If the user has some access to something through his group membership, then a. If the user is listed in the All People list, then the ...

MetaStorm Ework and SharePoint 2007

Has anyone had any experience working with MetaStorm Ework web parts in SharePoint 2007? I've been asked to have a look at this and would be interested to know your thoughts on the best way to approach this. All the best ...

How to manage list version history in WSS 2.0

I knew WSS 2.0 is obsolted, but it is still being used, and in my case, still need to work on it (what a pain..). Is there any way to enable version history for a custom list in WSS 2.0? I can't find any documentation about this. Thanks in advance ...

Order documents by most popular in sharepoint content query webpart

I'd like to order a set of webpages showing inside a content query webpart by 'most viewed' I know sharepoint keeps track of such things but I don't know how to expose this list to the content query web part - can anyone point me in the right direction? Thanks in advance ...

Deploying a webpart which depends on a database store

Whats the best way to deploy a webpart in WSS3 or MOSS2007 which has a database dependency? Should the .wsp include code to create the database, should I encapsulate the .wsp in another installer which handles the database creation, or should I supply two different packages to allow the admin to handle the backend creation? ...

Creating a custom EditorPart in SharePoint

I have used the following article as a guide to creating a custom EditorPart in SharePoint http://blah.winsmarts.com/2006/05/19/writing-custom-editors-for-sharepoint-2007-and-aspnet-20-webparts.aspx However when I implement this technique I cannot save the changes to my custom properties. Basically the CreateChildControls function is...

CAML Query

I'd like to have a CAML query to get the events from a calendar list. I want to get all the events including Today in the upcoming 30 or so days. So far I have: <Where> <DateRangesOverlap> <Geq> <FieldRef Name=\"EventDate\" /> <Value Type=\"DateTime\"> <Today /> </Value> </Geq> <FieldRef Name=\"...

VSeWSS "Attach to IIS Worker Processes" grayed out

This is a repost from the msdn forums that got no good results. In VSeWSS 1.3 on VS 2008, the "Attach to IIS Worker Processes" seems to always be grayed out (Build -> Quick Deploy Solution). This forces me to run iisapp from the command line, note the PID of my w3wp process, hit Ctrl-Alt-P in VS to bring up the Attach to Process dialog...

custom server control on MOSS publishing page

The question was: I've got a page in a MOSS 2007 publishing site that uses a layout (the page inherits from Microsoft.SharePoint.Publishing.TemplatedRedirectionPage),and I need to write a codebehind for this page, but still let the layout templating mechanism work. My attempt was to write a class that inherits from...