Code Comments
Programming Forum and web based access to our favorite programming groups.Hi 1. Do you save "Time" variable in Long data type? 2. You must convert sum of hours/minutes (Long type) in your report, to string. For example: for three digit hours: hhh:mm So, make conversion by dividing SumOfMinutes by 80 minutes (/ and % for "trailing" minutes) to get HoursCount and MinutesCount - it's only math. Then make a string: SumString = Format(HoursCount,@n3) & ':' & Format(MinutesCount,@N02) or something like that. Zoran
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.