DevPinoy.org
A Filipino Developers Community

>>> First two to make 3 wins! <<<

Browse by Tags

  • About the Mark Miller talk.

    Ei,, I have been receiving alot of emails lately asking me to share some details about the Mark Miller talk at the San Diego .Net Developers group last week. I'm sorry guys if I havent had the time to post the thoughts that were shared on that session, i have been a bit busy lately but dont worry... i have all my notes... all i need to do right now is organize those accumulated knowledge that i got from that session (i havent been in me lethal shape lately after doing some PHP coding for a frien...
  • Mark Miller at the San Diego .NET Developers Group tommorow!

    Gee! I'll be having a blast tommorow! Finally i'll get to see one of the guys that i look up to in Application Development and Design! Mark Miller, author of (among many other things) CodeRush, a productivity add-in for VS.NET and Refactor! an add-in to Visual Studio .NET that parses your Source code as you move through it and delivers context specific refactorings that automate the process of reorganizing and shaping your source to make it easier to read and cheaper to maintain. Mark will be...
  • What's your favorite piece of code?

    *Note* I also posted this on the forums at [ http://community.devpinoy.org/forums/258/ShowPost.aspx ] "People say that your favorite piece of code tells tales about you.." I want to hear it from you guys, whats your favorite piece code? I work alot with...
    Filed under:
  • Disconnected ADO.NET DataSet Example

    I saw a post in DevPinoy today asking for a demonstration on the disconnected data paradigm in ADO.NET is. With that i decided to create a sample program to illustrate how this works in ADO.NET...
    Filed under:
  • A Collection of Coding Guidelines and Standards in C# and VB.NET

    Here are some useful links that tackle programming guidelines on C# and VB.NET. VB.NET Coding Guidelines by Cory Smith http://addressof.com/blog/articles/CodingGuidelines.aspx VB.NEt Coding Guidelines by Daniel Moth http://www.danielmoth.com/Blog/2004...
    Filed under:
  • Accessing the Windows Registry

    On this example, Keith Rull discusses on how easy it is to accessing registry information using the .NET Framework....
    Filed under:
  • Part 3: Creating CSV in ASP.NET

    In Part 1 and Part 2 of this series, we have used column mappings and index mapping to generate our csv files. These approach requires us to loop thru each colum to create the header, the loop thru again to create the rows. The problem with this approach is the amount of time spent in coding such procedures, well, its not that long... but considere this, if you could do something in a short amount of time with shorter lines of code and changing from one approach to another approach would make yo...
    Filed under:
  • Part 2: Creating CSV in ASP.NET

    In Part 1 of this series i have showed to you how to use a IDataReader in creating a function that would generate a CSV file. In part 2 of this series I'm going to show you how to accomplish the same task but this time using a different object. We will still implement the same concept that we used in Part 1 but shortening code by using native properties of a DataTable in accessing rows and columns....
    Filed under:
  • Part 1: Creating CSV in ASP.NET

    Part 1 shows us how to create CSV files in both C# and VB.NET using techniques that were used back on the old days of ADO and OLEDB but implementing them using native ADO.NET objects(IDataReader) instead of recordsets. We use a IDataReader instead of a provider specific reader (SqlDataReader, OleDbDataReader) for usability of code. This makes our function not provider dependent....
    Filed under:
  • File System Browsing: New Approach vs. Old Approach

    File System Browsing: New Approach vs. Old Approach. this demonstrates how to use the a datable combined with filesystem objects to browse for folders and files. This also deffirentiate the different techniques in doing this task, from the classic programmers point of view, to the asp.net point of view...
    Filed under:
  • Left, Right and Mid functions in C#

    I started as a VB programmer and I must say that i miss using Left, Right and Mid methods since it is not included in C#. But then again, there is always a suitable replacement. The Substring method. The Substring method retrieves a substring from a specified string. In this demo i have decided to show how to use the substring method to create the Left, Right and Mid functions. ...
    Filed under:
  • Generating random strings and numbers in C# and VB.NET

    Last night i decided to create a basic example on how to use the Random class in the .NET framework since randomization can also be useful in doing programs specially when designing applications that requires unique keys. One example of a program that requires a unique key is a random password generator....
    Filed under:

Copyright DevPinoy 2005-2008