Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Member
20 Points
4 Posts
Jun 13, 2006 03:33 PM|LINK
================== List Projects ================== To make sorting works
In Project.vb, Public Shared Function GetAllProjects(ByVal sortParameter As String) As List(Of Project)
change:
If
To:
If Not String.IsNullOrEmpty(sortParameter) Then
RichardYang
Member
20 Points
4 Posts
Re: Trials and Tribulations of Time Tracker
Jun 13, 2006 03:33 PM|LINK
==================
List Projects
==================
To make sorting works
In Project.vb, Public Shared Function GetAllProjects(ByVal sortParameter As String) As List(Of Project)
change:
If
String.IsNullOrEmpty(sortParameter) ThenTo:
If Not String.IsNullOrEmpty(sortParameter) Then