|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
24 Articles match "List"
|
Related DevelopMentor Courses
|
MORE
|
|
SharePoint for Developers (WSSv3/MOSS2007)
How can I build custom lists, pages, master pages, web parts, event handlers, content types and more? Now events are accessible on all lists. Reusable Lists and Custom Content Types Content types are new to WSS v3 and provide a rich way to push common type information down into SharePoint list items. We learn to leverage content types from client applications such as Word and Excel and to use them with regular lists. The technologies covered will each be deployed utilizing the new feature and solution framework in WSS. How do I connect to the object model?
DevelopMentor Courses
- Friday, June 12, 2009
Foundations of C# Programming and the.NET Framework
For example, GUI controls like buttons, trees, lists, etc. use events to report user actions such as button click, list selection, etc. The classic examples are collections such as hash tables, trees, and linked lists where the code to build the structure is independent of the type stored inside. less code!) Distinguish between "implementation inheritance" and "interface inheritance" Use ADO.NET to connect to SQL Server and run a simple query Build a basic Windows Forms GUI Essential C# is ".NET NET 101" for developers moving to.NET. interface vs. field)?
DevelopMentor Courses
- Friday, June 12, 2009
F# Programming for C# Developers
They can form the basis of complex data structures, and this module demonstrates both a linked list and a binary tree implementation as examples. Then we have a quick recap of arrays and lists before introducing a more advanced, continuation-based list type, the sequence. We investigate the list comprehensions supported by F# for all list types. Essential F# for C# developers helps you place these techniques and take advantage of the special support for functional and advanced object oriented approaches that F# offers. plumbing? Map, Filter and Fold ?
DevelopMentor Courses
- Friday, June 12, 2009
|
200 Articles match "List"
|
The Latest from DevelopMentor
|
MORE
|
|
Ed Yourdon on Agile
If you haven’t heard of him, or don’t believe me just look at the list of books he’s written.) Ed Yourdon seems to have fallen off my radar so far this century. Last century I read a lot of his stuff and came to respect him as a man who knows what he’s talking about when it comes to IT and software development. I recently discovered that he has a blog , and from there that he has recently been to the Agile 2010 conference. In fact it appears that the whole Agile thing has, to a large part, passed him by.
Allan Kelly's Blog
- Thursday, August 26, 2010
The No Business Case Myth
But a business plan which lists many many features to be build and a detailed schedule of when they will be built is little more than an illusion. Once in a while I run across individuals, or even teams, who still think Agile is about just getting on and doing it. Well it is, good for them, but, that doesn’t mean there isn’t a reason for doing it. There seems to be a myth in some circles that work done using Agile techniques doesn’t require a business case. Lets get this clear: Agile does not excuse you from having a business case for your work.
Allan Kelly's Blog
- Monday, August 16, 2010
Right vs. Left Economists: Fight!
Helpfully, this is a list of significant differences between economists on the right and left. It is frustrating to read/listen to economists with strong political views.
Handwaving
- Tuesday, August 10, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Caching a SharePoint list as a datatable
For one of my current projects I needed to show a SPGridView with data from a small list on the frontpage of the Intranet. The list wasn't very small so didn't want to read if from the database on every hit of the frontpage, but on the hand it was so big that I couldn't cache it. So I decided to combine the two and use the PortalSiteMapProvider to figure out when an update was needed and the DataTable for the real caching of the list items. Now the big question was how to cache it.
The Black Knight Sings
- Friday, December 19, 2008
-
Giving end users a list of all the SharePoint sites they have access to
When You’re running a medium sized SharePoint Farm you may often get requests from end users for a list of all the SharePoint sites they have access to. ve implemented a small feature which provides this information as an application page, which you can access through a new menu item on the Welcome menu. The implementation of this is quiet simple: Add a menuitem to the Welcome menu pointing to our own application page: < CustomAction Id = " 6346660F-707E-40d2-A7CF-AB6BAC7A98FD ". Location = " Microsoft.SharePoint.StandardMenu ". GroupId = " PersonalActions ". Sequence = " 400 ".
The Black Knight Sings
- Sunday, April 26, 2009
-
Concurrent Skip List issues
A commenter on my code sample for a concurrent skiplist correctly pointed out two errors in the program. attempted to fix both, but further testing revealed another problem in Release mode (optimized, no debug). One of the thread would suddenly stop. After much screwing around, I discovered that the program was stuck in a spin wait: “while (!goAhead) goAhead) ;. added a volatile declaration to that variable and then the program worked. It turns out the loop keeps reusing the value in the register, rather than reloading the variable when another thread says it’s OK to go.
Handwaving
- Wednesday, August 26, 2009
-
List all SharePoint groups a user belongs to
It uses the UserGroup web service to list all the SharePoint Groups a user belongs to in a specified Site Collection. This is just a small Utility requested on one of the SharePoint Newsgroups. It's a small console application which requires two parameters: ···The first parameter is the Url of the site collection including protocol (example: [link]. ···The second parameter is the full username including Domain (example: MOSSWORKuser). using System; using System.IO; using System.Xml; using ListUsersGroups.ug; namespace ListUsersGroups. {. class Program. {. if (args.Length. Value); }.
The Black Knight Sings
- Monday, July 20, 2009
-
Manage Your Christmas Card List
In my household, my wife manages the Christmas card mailing list. Our Christmas card mailing list is kept in a little address book that is full of entries that have been crossed out as addresses, marital status, and family members have all changed. It’s perhaps a tad embarrassing that it never occurred to me before that Crowd Space would be ideal for Christmas mailing list management. And despite good intentions of keeping everything in order, friendships are rarely formed alphabetically. Crowd Space ( [link] ) is the flagship product of my little web company.
Derek Hatchard blogs on
- Thursday, December 17, 2009
-
Visual Studio Tricks Series: #3 Managing the Recent Projects List
want to talk about managing the recently projects list. If you're like me, then you work with many different projects (especially after I teach a class) and your recent project list becomes polluted with projects you don't care about. In this post, "Recent Projects in Visual Studio 2005" ,net DEvHammer discusses how to access the registry to alter that list. Well, I didn't feel like going to the registry everytime I wanted to clean that list. So I whipped up a simple UI to manage that list (basically manage that registry list). hope you enjoy it!
Michael C. Kennedy's Weblog
- Wednesday, September 12, 2007
-
List Quota and Locklevel of all Site Collections in Farm
It creates a tab delimited list of all the Site Collections in the current farm. Here is another small utility requested in one of the SharePoint newsgroups. using System; using Microsoft.SharePoint; using Microsoft.SharePoint.Administration; namespace ListQuotas. {. class Program. {. static void Main( string [] args). {. Console.WriteLine( "Site Coll nametSite Coll UrltIs ReadLockedtIs WriteLockedtQuota in bytes" ); SPSecurity.RunWithElevatedPrivileges( delegate. {. foreach ( SPWebApplication webapp in SPWebService.ContentService.WebApplications). {.
The Black Knight Sings
- Monday, July 20, 2009
|
|
|