Click here to Skip to main content
15,882,055 members
Home / Discussions / C#
   

C#

 
GeneralRe: viewing photo from MySQL Pin
Richard Deeming3-Sep-14 2:43
mveRichard Deeming3-Sep-14 2:43 
GeneralRe: viewing photo from MySQL Pin
Dave Kreskowiak3-Sep-14 3:45
mveDave Kreskowiak3-Sep-14 3:45 
GeneralRe: viewing photo from MySQL Pin
Richard Deeming3-Sep-14 3:52
mveRichard Deeming3-Sep-14 3:52 
GeneralRe: viewing photo from MySQL Pin
Jassim Rahma3-Sep-14 4:12
Jassim Rahma3-Sep-14 4:12 
Questioncalculating total time betweem time ranges Pin
devil54e3-Sep-14 0:28
devil54e3-Sep-14 0:28 
AnswerRe: calculating total time betweem time ranges Pin
Richard MacCutchan3-Sep-14 0:55
mveRichard MacCutchan3-Sep-14 0:55 
GeneralRe: calculating total time betweem time ranges Pin
devil54e3-Sep-14 1:12
devil54e3-Sep-14 1:12 
GeneralRe: calculating total time betweem time ranges Pin
Richard MacCutchan3-Sep-14 1:28
mveRichard MacCutchan3-Sep-14 1:28 
It is just a matter of reading all the values one by one.

  • Read the first time value, that is the starting time of work.
  • Read the next time, that is the ending time of work.
  • The difference between those two is added to the total work time.
  • Set the end time as the new start time, that is the starting time of idle.
  • Read the next time, that is the ending time of idle (and the next starting time of work).
  • The difference between start and end should be added to idle time.
  • Set the end time as the new start time (of work).
  • Repeat the process until all times have been dealt with.


In cases such as this you should forget about programming and coding issues, and think about the logical steps needed to get your answer. Write down those steps and go through them a few times to ensure they make sense. Then when you are happy that your algorithm is correct you can write and test the actual code needed for your application.
GeneralRe: calculating total time betweem time ranges Pin
devil54e3-Sep-14 2:13
devil54e3-Sep-14 2:13 
AnswerRe: calculating total time betweem time ranges Pin
Pete O'Hanlon3-Sep-14 1:09
mvePete O'Hanlon3-Sep-14 1:09 
GeneralRe: calculating total time betweem time ranges Pin
devil54e3-Sep-14 1:17
devil54e3-Sep-14 1:17 
AnswerRe: calculating total time betweem time ranges Pin
Richard Deeming3-Sep-14 1:41
mveRichard Deeming3-Sep-14 1:41 
GeneralRe: calculating total time betweem time ranges Pin
devil54e3-Sep-14 2:12
devil54e3-Sep-14 2:12 
GeneralRe: calculating total time betweem time ranges Pin
Richard Deeming3-Sep-14 2:18
mveRichard Deeming3-Sep-14 2:18 
GeneralRe: calculating total time betweem time ranges Pin
devil54e3-Sep-14 2:32
devil54e3-Sep-14 2:32 
QuestionMessage Closed Pin
2-Sep-14 0:42
Group 110523772-Sep-14 0:42 
AnswerRe: mask attack Pin
Rob Philpott2-Sep-14 0:44
Rob Philpott2-Sep-14 0:44 
GeneralRe: mask attack Pin
Group 110523772-Sep-14 1:03
Group 110523772-Sep-14 1:03 
GeneralRe: mask attack Pin
Chris Quinn2-Sep-14 3:02
Chris Quinn2-Sep-14 3:02 
AnswerRe: mask attack Pin
Manfred Rudolf Bihy2-Sep-14 0:56
professionalManfred Rudolf Bihy2-Sep-14 0:56 
AnswerRe: mask attack Pin
Dave Kreskowiak2-Sep-14 1:54
mveDave Kreskowiak2-Sep-14 1:54 
RantRe: mask attack Pin
Eddy Vluggen2-Sep-14 2:57
professionalEddy Vluggen2-Sep-14 2:57 
GeneralRe: mask attack Pin
Richard Deeming2-Sep-14 3:22
mveRichard Deeming2-Sep-14 3:22 
GeneralRe: mask attack Pin
Eddy Vluggen2-Sep-14 3:25
professionalEddy Vluggen2-Sep-14 3:25 
GeneralRe: mask attack Pin
Richard Deeming2-Sep-14 3:45
mveRichard Deeming2-Sep-14 3:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.