Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"Calculating..." message

Status
Not open for further replies.

missinglinq

Programmer
Feb 9, 2002
1,914
0
0
US

Anyone have any idea why this realtime clock hack would cause the "Calculating..." message to appear in the taskbar for one PC and not another? I've used it for years without seeing this message, but someone else (an admitted neophyte) using it swears the message didn't appear until he put this in his code.

The control is named txtOmega (yeah, I'm a watch freak!)
The Timer Interval is set to 1000.
Then the code:
Code:
Private Sub Form_Timer()
  Me.txtOmega = Time 'Displays current time
End Sub
Thanks

The Missinglinq

Richmond, Virginia

There's ALWAYS more than one way to skin a cat!
 
bump!

The Missinglinq

Richmond, Virginia

There's ALWAYS more than one way to skin a cat!
 
Howdy missinglinq . . .

Try:
Code:
[blue]Private Sub Form_Timer()
  Me.Caption = Time 'Displays current time
End Sub[/blue]

Calvin.gif
See Ya! . . . . . .

Be sure to see FAQ219-2884:
 
I'll get him to try that, AceMan! As I said, I've been using the hack for years without experiencing the noted behavior, but he is running the new, buggy, Access Flagship, as someone recently called it! More like the MSS Albatross, until they get all the service packs out!

Thanks!

Linq

The Missinglinq

Richmond, Virginia

There's ALWAYS more than one way to skin a cat!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top