in

SharePoint Blogs

The Best Place for SharePoint-related Blogs
Need SharePoint Training? Attend a SharePoint Bootcamp!

Did you have a blog here?

Read this for important information on our recovery!


Browse by Tags

Sorry, but there are no more tags available to filter with.
  • Naming standards

    Body: You can never have enough naming standards guides. I've been working on a project for the last nine months with about 15 other developers. We're coding in C# in VS2005 and the standards that were provided covered camel casing, pascal casing etc. But one thing that really bugs me is the...
    Posted to Mirrored Blogs (Weblog) by Anonymous on 08-31-2007
  • ComboBox SelectedValue()

    Body: <NoteToSelf> I had some issues with SelectedValue() on a WinForms ComboBox when adding values dynamically to it and used this: public class ComboValues { private string _key; private string _value; public string Value { get { return _value; } set { _value = value ; } } public string Key ...
    Posted to Mirrored Blogs (Weblog) by Anonymous on 08-31-2007
  • JoinView for DataTables

    Body: We've been doing a lot of work with DataSets recently on this project and have had some issues on standards for creating new DataTables and TableAdapters. We have tried to enforce having DataTables with TableAdapters that directly reflect the base tables in a DataSet so that you can use the...
    Posted to Mirrored Blogs (Weblog) by Anonymous on 08-31-2007
  • Strongly Typed datasets command timeout

    Body: I have been doing a lot of work recently with Strongly typed datasets and table adapters. We have found that the standard 40 seconds for some methods just wasn't enough...mainly due to big batch processes that call in large amounts of data in a view from various tables. I found a great article...
    Posted to Mirrored Blogs (Weblog) by Anonymous on 08-31-2007
  • Generic Lists

    Body: I'm sure this is an obvious one, but this is a nice use of the new List with Generics: List < DirectDebitsRequestPayment > payments = new List < DirectDebitsRequestPayment >(); DirectDebitsRequestPayment payment = new DirectDebitsRequestPayment (); payment.Amount = new decimal ...
    Posted to Mirrored Blogs (Weblog) by Anonymous on 08-31-2007
  • Asynchronous SQL stored procedure command execution in .NET 2.0

    Body: I was looking for a way to call a stored procedure asynchronously and Keyvan Nayyeri's article which does just that. This can come in handy where you do not want to increase the timeout of a stored procedure but have some serious processing going on in the database. I'm currently doing...
    Posted to Mirrored Blogs (Weblog) by Anonymous on 08-31-2007
  • VS2005: Rebuild selected project

    Body: You can add your own custom shortcut to build only the current project (and its dependencies). Go to Tools | Options and under Environment, click Keyboard. Type Build.RebuildSelection in the ‘Show commands containing:’ text box. Then type in your desired shortcut in the ‘Press shortcut keys:’ text...
    Posted to Mirrored Blogs (Weblog) by Anonymous on 08-31-2007
  • SQL Temp tables vs. Variable tables

    Body: Cursors are the bane of performance life for me at the moment! I've been looking at rewriting some stored procedures with temp tables and found this article which clarifys things for me a bit more between variable tables and temp tables. Category: Microsoft .Net Development Published: 11/21...
    Posted to Mirrored Blogs (Weblog) by Anonymous on 08-31-2007
  • Dependency Injection

    Body: Big talk around this area which I have recently experienced first hand on the project I am on... this article has a great explanation of it. Most definately the way to develop code. Category: Microsoft .Net Development Published: 11/7/2006 12:00 AM
    Posted to Mirrored Blogs (Weblog) by Anonymous on 08-31-2007
  • Release Management

    Body: I've been looking into Release management and versioning assemblies in .Net 2.0. Joshua shows a good way of using a nant script to do this automatically. Joe's blog explains how you can do this in one location using a SolutionInfo.cs file, but this is not automated on the actual version...
    Posted to Mirrored Blogs (Weblog) by Anonymous on 08-31-2007
Page 1 of 4 (33 items) 1 2 3 4 Next >

Need SharePoint Training? Attend a SharePoint Bootcamp!

Posts (c) their respective authors. Everything else (c) 2007 SharePoint Experts