The article was very beneficial. I input the following with one last problem:
Private Sub Form_Timer()
Me!Eastern.Caption = Format(Now, "dd mmm / hh:nn")
Me!Central.Caption = Format(DateAdd("h", -1, Now()), "dd mmm / hh:nn")
Me!Pacific.Caption = Format(DateAdd("h", -3, Now()), "dd mmm / hh:nn")
Me!Berlin.Caption = Format(DateAdd("h", 6, Now()), "dd mmm / hh:nn")
Me!Tokyo.Caption = Format(DateAdd("h", 14, Now()), "dd mmm / hh:nn")
Me!Baghdad.Caption = Format(DateAdd("h", 8, Now()), "dd mmm / hh:nn")
Me!Afghanistan.Caption = Format(DateAdd("h", 9.5, Now()), "dd mmm /
hh:nn")
End Sub
The problem being the code does not recognize 9.5, or 9 1/2, or 9:30. Where
time in Kabul, Afghanistan is 9.5 hours ahead of my time (eastern standard
time, US)