The installation went fine, and is running ok on my localhost, I 'm clicking my way through the app and everything is working fine, until I try and run a report and I get:
System.FormatException: Input string was not in a correct format
Line 260:
Line 261: For Each str As String In substrings
Line 262: Dim id As Integer = CInt(str)
Line 263: list.Add(Project.GetProjectById(id))
Line 264: Next str
Source File: C:\Inetpub\wwwroot\TimeTracker1\App_Code\BLL\Project.vb Line: 262
Have the same declaration at Line 307, but I don't know enough to understand how to reformat the string as it's passed in... Any suggestions?
Dennis