I came across the following post:
From: Tom Rizzo [MSFT]
Subject: Free Chapters and samples on SharePoint 2003 Development
Newsgroups: microsoft.public.sharepoint.portalserver.development
Date: 2003-10-06 22:42:29 PST
I just finished my Exchange and Outlook book (linked below) and the book was too long to include all the SharePoint material I wrote so we made it available for FREE on the mspress website. It's about a 500 page book on WSS and SPS 2003 development including web parts (basic, async, toolpane, toolparts, connections, galleries, etc) and the API (document libraries, lists, etc).
Be sure to download the supplemental chapters and also the sample applications for the book.
Let me know if you have any questions or comments. Enjoy!
Tom
--
Looking for a good book on programming Exchange, Outlook, ADSI and SharePoint? Check out http://www.microsoft.com/MSPress/books/5517.asp
This posting is provided "AS IS" with no warranties, and confers no rights.
This is terrific stuff!!
I noticed a descrepancy on page F-68. When discussing the HtmlDesignerAttribute, there are a few examples. Look at these two (specifically, the bold part):
[HtmlDesignerAttribute(BrowserBuilderType.Dynamic,
"DialogFeatures=center:yes;dialogHeight=11;dialogWidth=12;status=no;"
+ "resizable=no;unadorned=yes;")]
[HtmlDesignerAttribute(BrowserBuilderType.Dynamic,
DialogFeatures="center:yes;dialogHeight=11;dialogWidth=12;"
+ "status=no;resizable=no;unadorned=yes;")]
The first example has DialogFeatures included in the quoted string, the second does not. I can't get either version to work in a VB project. Can anyone help?