| |
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.
|
26 Articles match "List"
| Related DevelopMentor Courses | MORE | | Foundations of C# Programming and the.NET Framework Training 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 Foundations of C# Programming and the.NET Framework is ".NET NET 101" for developers moving to.NET. DevelopMentor Courses - Tuesday, March 1, 2011 CBAP® Exam Preparation Virtual Training (16 PD/CDUs) Listed in the BABOK? DISCOVER HOW TO: Apply for the CBAP? certification with the right information to get your application accepted the first time Be more effective at preparing and passing the exam Apply knowledge of Business Analysis to the CBAP? exam The Certified Business Analysis Practitioner Exam is the industry recognized assessment of Business Analysis skills, knowledge, and capabilities. Backed by the International Institute of Business Analysis (IIBA?), this exam covers seven core competency areas as well as tools and techniques commonly practiced by a seasoned analyst. Guide DevelopMentor Courses - Thursday, February 23, 2012 Essential Windows Presentation Foundation - WPF Training The module list covered includes: Day 1 Introduction Windows Presentation Foundation is the new API for building user experiences on.NET. Use VS.NET 2008 (or 2010) and Expression Blend together to build your user interface. Integrate your visual designers with your developers to maximize their skills. Properly design your architecture to take advantage of data binding. Use new technologies such as LINQ and XLINQ with WPF. Create professional, modern interfaces with animations, and special effects. Customize the appearance of controls with styles and themes. SP1 and 4.0? to WPF 4.0 DevelopMentor Courses - Wednesday, February 22, 2012 |
291 Articles match "List"
| The Latest from DevelopMentor | MORE | | 10 Things to make you Agile adoption successfull Here then is that list, the team in the room will recognise the first three, it was after that that I had to think. One of the closing slides in my Agile Foundations course includes a quote from Ken Schwaber saying that only 30% of teams who attempt Scrum will be successful. What I find interesting about this quote is that it aligns with many other change management studies. Researchers like Harvard Professor John Kotter regularly say 70% of major change efforts fail. Either way, the prognosis isn’t optimistic. Metrics have a bad name in software development - rightly in most cases. Allan Kelly's Blog - Monday, May 14, 2012 String literals and ‘==’ versus Equals(…) Apparently the string literals in an assembly get put in a master list of string constants and then reused where the same string literal gets used. I had a little fun today playing with ‘==’ vs. the Equals(…) method. knew that somewhere in.NET 2.0 I believe) there had been some improvements in String.Empty versus “”, but I didn’t quite realize that this affected all string literals. In the code below you can see how value types and reference types may behave differently when using ‘==’ versus the Equals method. My surprise came when I discovered that line 39 and 41 both return TRUE. The Blomsma Code - Monday, April 30, 2012 Michael’s.NET Suggested Reading List With Guerrilla.NET from DevelopMentor coming up on May 7th, it’s time to refresh my.NET reading list. Want to get ready for this class or a class like it or just get a quick-start on.NET? Here’s what I would recommend. … Continue reading → DevelopMentor.NET Michael C. Kennedy's Weblog - Friday, April 27, 2012 | -
| The Best from DevelopMentor | MORE | - Michael’s.NET Suggested Reading List
With Guerrilla.NET from DevelopMentor coming up on May 7th, it’s time to refresh my.NET reading list. Want to get ready for this class or a class like it or just get a quick-start on.NET? Here’s what I would recommend. … Continue reading → DevelopMentor.NET - 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 - 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 - 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 - 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 - LINQ: Convert list to a dictionary of lists
Suppose I have a list of time cards from multiple employees, but I want to group them into dictionary, based on the Social Security Number (SSN) of the employee. Here is an example of how to convert a list of items into a dictionary of lists: Dictionary. dict; dict = ( from timecard in listOfTimeCards. group timecard by timecard.SSN ).ToDictionary( ToDictionary( x => x.Key, x => x.ToList() ); C# LINQ The Blomsma Code - Monday, July 11, 2011 - 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
| | |