BloggingAbout.NET
Thoughts of developers

Browse Blog Posts by Tags

Showing related tags and posts for the Blogs application. See all tags in the site
  • Number of working days

    I needed a method to calculate the number of working days between two specified dates. I scanned the internet and found a VBA example in the Microsoft knowledge base . I needed a C# version, so below is the converted code for those who are interested: long WorkingDays(DateTime beginDate, DateTime endDate...
    Posted to Jan Schreuder on .Net by Jan Schreuder on Tue, Nov 30 2004
    Filed under: Filed under:
  • Disasembly IsNumeric

    public static bool IsNumeric ( object Expression ) { bool flag1 ; IConvertible convertible1 = null ; if ( Expression is IConvertible ) { convertible1 = ( IConvertible ) Expression ; } if ( convertible1 == null ) { if ( Expression is char []) { Expression = new string (( char []) Expression ); } else...
    Posted to Jan Schreuder on .Net by Jan Schreuder on Fri, Nov 5 2004
    Filed under: Filed under:
  • ASP.Net and JavaScript

    I haven't done anything with ASP.Net in the past year, but when a friend asked me if I could help him do something very simple I obviously jumped in to help him. So what was that simple task, you may wonder? Well, he needed a messagebox asking the user “Do you really want to delete this?”...
    Posted to Jan Schreuder on .Net by Jan Schreuder on Thu, Nov 4 2004
    Filed under: Filed under:
  • DataGrid samples, part II (revised)

    When you re-assign a datasource to your DataGrid, the selected row becomes the first row in the grid again. That can be very annoying when you just made changes to the last row and want to see if that's OK. So here's a solution. Pass in the DataGrid, the KeyValue for the row you want to set focus to...
    Posted to Jan Schreuder on .Net by Jan Schreuder on Thu, Oct 7 2004
    Filed under: Filed under:
  • How to: Assign a DataSet to a Crystal report document

    In my current project we use type DataSets as a source for the reports we build using Crystal Reports for VS.Net. How this works can be found in the Crystal Reports knowledge base , and more specific in this document . One of the challenges there was to assign DataSets to the reports once it was created...
    Posted to Jan Schreuder on .Net by Jan Schreuder on Thu, Aug 26 2004
    Filed under: Filed under: ,
  • DataGrid samples

    I decided to start posting code samples to help other developers. The first postings will be about DataGrid. The samples are used in the project I'm working on at this moment. Where in my grid did the user click? When you want to use the DoubleClick event to start some action on the selected item in...
    Posted to Jan Schreuder on .Net by Jan Schreuder on Thu, Aug 26 2004
    Filed under: Filed under:
Page 4 of 4 (51 items) < Previous 1 2 3 4
Copyright © 2003-2010 BloggingAbout.NET