View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_7_] Bob Phillips[_7_] is offline
external usenet poster
 
Posts: 1,120
Default time/timing/breakpoint

Not sure I fully understand.

What is btnNext, and what does it do? I assume tbTime is a textbox. What
relevance does ControlSource have?

--
HTH

Bob Phillips

"Oskar von dem Hagen" wrote in
message ...
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