View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Oskar von dem Hagen[_2_] Oskar von dem Hagen[_2_] is offline
external usenet poster
 
Posts: 5
Default time/timing/breakpoint

A button in my form is supposed to assign the actual time to tbtime, which
has a ControlSource assigned.

Private Sub cbtime_Click()
tbtime.Value = Time
Call bnNext_Click
End Sub

The "next" part works. The "time" part
doesn't work
- without breakpoint
- with breakpoint and "Continue"
does work
- with breakpoint and F8

"breakpoint" refers to a breakpoint at tbtime.value = time

Could somebody illuminate me? Why does this happen and how can I correct the
problem?

Oskar von dem Hagen