Search Results

1
vote

Deploying Layouts in SharePoint

Since you are using VSeWSS, you can execute your own code upon feature activation. So try writing an SPFeatureReceiver that will call SPWeb.RevertAllDocumentContentStreams() to reghost directly aft …
0
votes

sharepoint WSS workflow - “failed on start” error

Tricky. At this point my guess is that your best bet is to open your workflow files, which you can access from SharePoint Designer (open your original/root/template web in it). Once you've …
1
vote

Sharepoint import version error

Maybe there's a better way, but here's what I would just do because it can be done in the background, simultaneously to doing other stuff... OK, both are version 12, so that would probably …
2
votes

Filtering Sharepoint Lists on a “Now” or “Today”

Have you tried this: create a Computed column, called 'Expiry', with a formula that amounts to '[Created] + 7 days'. Then use the computed column in your View's filter. Let us know whether this wor …
0
votes

VSeWSS problems when creating a new base class which inherits from SPItemEventReceiver

For experimental purposes: does the error occur without the base class being abstract? …
0
votes

Combining different lists data and showing it in a webpart

If you don't want to code, I guess the Google term to use for pre-built solutions is "SharePoint list roll-up". …
0
votes

How to deploy an assembly using the Team Definition in Sharepoint?

If there's any SharePoint-relevant code (web part, event receiver etc) in your project, the assembly will be packaged up in the resulting WSP and your solution manifest will already have an instruc …
2
votes

Scope of a timer job feature

It depends entirely on your scenario. The timer jobs I've written so far I have scoped by web application (it's just a matter of modifying your feature.xml). However, depending on what your timer j …
1
vote

Adding fields to the List Forms - Sharepoint

It doesn't count as "development", but wouldn't creating a new List column, Site Column or Content Type add this additional field to all your list forms just fine? How does this not work in your pa …
1
vote

Hiding a SharePoint Custom Field Type in Edit and Create mode

Generally you set the SPField.ReadOnlyField property to True to achieve the desired behaviour for any field. (Don't forget to SPField.Update accordingly!) There is an equivalent CAML attribute for …