Blog Home 
Scott Yokiel MOSS 2007 & .NET blog (and some bad spelling) - Monday, June 30, 2008

RSS 2.0 Atom 1.0 CDF  
 
Sign In
 
 Monday, June 30, 2008

Heres a sweet trick to be able to treat the GAC like any other folder.  Including droping PDB file in there so we can attache to a process and debug. (MOSS Workflows)

Create a short cut and paste in this for the destination, THATS IT.....

%systemroot%\Assembly\GAC_MSIL

 

6/30/2008 6:28:52 PM (Central Standard Time, UTC-06:00)  #    Comments [0]    |  Trackback
 Friday, June 13, 2008

I will be presenting at the first bi-annual sharepoint camp tomorrow and wanted to post a how to on the content i will be presnting.  So here it is...

ShareCare2008.pdf (1.33 MB)
6/13/2008 5:38:22 PM (Central Standard Time, UTC-06:00)  #    Comments [0]    |  Trackback
 Monday, May 05, 2008

I had a tough time in IIS7 tring to figure out how to set a specific use to run as without using the app pool.  Here it is...

5/5/2008 10:03:13 AM (Central Standard Time, UTC-06:00)  #    Comments [0]    |  Trackback
 Thursday, May 01, 2008

SO i had the need to increment the ID in one of my lists and it was hairy to try to add and delete items via the API just to do this.  SO i broke down and looked into SQL server.  Open you content db and run a qry like this with you List GUID.  Then go ahead and run the update.  So far so good for me, let me know if i missed something.

SELECT  tp_NextAvailableId, *
FROM         AllLists
WHERE     (tp_ID = 'bcf068c4-d585-4168-8ba8-1f28eb58003c')

--Update AllLists
--set tp_NextAvailableId = 150
--where (tp_ID = 'bcf068c4-d585-4168-8ba8-1f28eb58003c')

5/1/2008 3:50:09 PM (Central Standard Time, UTC-06:00)  #    Comments [0]    |  Trackback
 Monday, April 28, 2008

So some times you may have a list and not want to expose all of your fields to the user.  Well this is easy enough with a list but what about edit and insert.  Well today i stumbled apon the easy way and it involves the use of designer. I have attached a word doc with the content fromthe attached link in the case this disappears some day. 

But the credit goes to these guys...

http://blah.winsmarts.com/2007-5-Customize_the_-and-quot;NewFormaspx-and-quot;_page_for_a_SharePoint_List.aspx

CustomizeNewListItem.docx (70.29 KB)

BEWARE DON"T DO THIS UNTIL READING THE FOLLOWING

DONT RENAME EXISTING FORMS LEAVE THEM BE...

http://blogs.msdn.com/dszabo/archive/2007/02/20/custom-list-newform-aspx-ruined-in-wss-3-0.aspx

 

http://support.microsoft.com/?id=935504

 

4/28/2008 7:38:44 PM (Central Standard Time, UTC-06:00)  #    Comments [0]    |  Trackback
Copyright © 2008 RBA Consulting.