Remove typover Block from Txt (1 Viewer)

rgwfly

Registered User.
Local time
Today, 13:03
Joined
Jun 7, 2016
Messages
49
I have a counter that pops up in a user form. the text box is blocked out like waiting for input. I just need it to display the count number itself without the block. I tried switching edit to no and others. I must be missing something.
 
Last edited:

arnelgp

..forever waiting... waiting for jellybean!
Local time
Tomorrow, 04:03
Joined
May 7, 2009
Messages
19,169
on activate event of the form try to recalculate:

me.recalc
 

rgwfly

Registered User.
Local time
Today, 13:03
Joined
Jun 7, 2016
Messages
49
I tried the recalculate it did not work. I guess I failed to mention it the counter is on another form which pops up for a few seconds.


 

Attachments

  • counter.jpg
    counter.jpg
    2.9 KB · Views: 97

arnelgp

..forever waiting... waiting for jellybean!
Local time
Tomorrow, 04:03
Joined
May 7, 2009
Messages
19,169
you do the recalc on that form
 

Minty

AWF VIP
Local time
Today, 20:03
Joined
Jul 26, 2013
Messages
10,355
You can set the label caption in code. Just pick some event that updates it when required.

Me.Label.Caption = DMax(blah blah)
 

rgwfly

Registered User.
Local time
Today, 13:03
Joined
Jun 7, 2016
Messages
49
You can set the label caption in code. Just pick some event that updates it when required.

Me.Label.Caption = DMax(blah blah)

Works perfect. That's good info to know. I can even skip the query.
 

Users who are viewing this thread

Top Bottom