DevPinoy.org
A Filipino Developers Community
All Tags » How To (RSS)
            

Browse Site by Tags

Showing related tags and posts accross the entire site.
  • Accidentally deleted the Distrbution Share in MDT 2008

    The Distribution Share in Microsoft Deployment Toolkit 2008 stores information as well as files required to install the operating systems and applications intended to be deployed via Microsoft Deployment Toolkit 2008. The safeguards against accidental deletion of the file system folder (by default C...
    Posted to Pinoy Aggregated Tech Feeds (Weblog) by Anonymous on 09-15-2008
  • Starting Log4Net

    One of the task that a developer needs to accomplish is to code a module for logging, and creating it from scratch will take some of your precious time. So to be a little more productive, we can use a tested library like Log4Net. I have browsed for some pages and found a lot of variations. So putting...
    Posted to Humprey Evangelista Cogay (Weblog) by Comgen on 04-30-2008
  • How To: What is Anonymous Types in C#

    Yesterday I wrote an article explaning what var means in .NET 3.x . Today lets talk about Anonymous Types. Anonymous Types as describe by the C# 3.0 specification are tuple types automatically inferred and created from object initializers. Anonymous Types allows the new operator to be used with an anonymous...
    Posted to Keith Rull (Weblog) by keithrull on 01-23-2008
  • How To: Read the values of a GridViewRow and assign them to a control

    A few days ago a forum question was posted in DevPinoy.org on how to read the values of a inside a GridViewRow and assigning them to a Label control(or TextBox) when that row is selected. I wasn't able to reply to that thread early due to time constraints with a project I had at that time but I told...
    Posted to Keith Rull (Weblog) by keithrull on 11-01-2007
  • SqlServer: Return Random Records in T-Sql, the GUID way.

    In one of the website I have developed, we feature random products displayed on a webpart. This can be done several ways either of the code behind or via t-sql but I think the simplest way to do it is via t-sql with the help of Guid columns. Globally Unique Identifier or GUID is a randomly generated...
    Posted to Rodel E. Dagumampan (Weblog) by dehran ph on 06-20-2007
  • .NET: A Significant Discovery On TortoiseSVN

    I had very bad intermittent connection lately and this TortoiseSVN is really killing me. With my speaker system tuned on 60% volume playing jazz music to stimulate my mind, while I'm committing several files on our server, suddenly the SVN's error sound breaks my silence. This sound is really...
    Posted to Rodel E. Dagumampan (Weblog) by dehran ph on 04-21-2007
  • How To: Check if there are processes that are running using .NET

    I was running a test on my Web Server today when a friend of mine IMed me about an interesting question about .NET. He was a new programmer for this company and the old developer that he replaced was running production(oh my) applications right of his desktop. The IT manager was getting worried because...
    Posted to Keith Rull (Weblog) by keithrull on 03-09-2007
  • ASP.NET: Utility.TryParse() To Better Handle Parameters

    In ASP.NET, one of the tedious things to do is to get values from query string parameters, cast/convert to proper types and assign to local variable for further processing. Initally most developers simply code like this: 1 int orderId = Request.QueryString[ "order_id" ]; 2 OrderBLL orderManager = new...
    Posted to Rodel E. Dagumampan (Weblog) by dehran ph on 01-22-2007
  • .NET: Advanced Data Paging with Sorting In SqlServer 2005

    dwarvend, a former teammate in my frist company once asked me about data paging large resulsets in ASP.NET. Data paging in SQL Server 2005 is relatively easy with new RowNumber feature but supporting dynamic sorting is little tricky. I have this executable to script to demonstrate this sorting. --check...
    Posted to Rodel E. Dagumampan (Weblog) by dehran ph on 01-15-2007
  • Asymmetric Accessor Accessibility

    Seems like i learn something new everyday... public string Name { get { return name; } protected set { name = value; } } I never knew that i could put an accessibility level to the 'set' portion of my property. This technique is called Asymmetric Accessor Accessibility . Read more here .
    Posted to Keith Rull (Weblog) by keithrull on 01-02-2007
Page 1 of 2 (15 items) 1 2 Next >

Copyright DevPinoy 2005-2008
Powered by Community Server (Commercial Edition), by Telligent Systems