Tab form displayed and updated whilst running VBA

Brombrough

New Member
Joined
Apr 10, 2017
Messages
49
Hi,

Thanks in advance.

Many years ago, I was shown that its possible to display full screen type form, display only, could not save, form that shows completed actions whilst running a lengthy vba code.

The best way to describe it is a progress sheet (Not Bar) that rolls up the page when another line is added.

list would look something like this (Example shows 1 & 2 complete and 3 incomplete:-

Record No | no of address| Currency |total Account Value | Time Started | Time Ended |
1 | 45 | AUD | $459,256 | 08/Nov/2017 (11:49) | 08/Nov/2017 (12:53) |
2 | 457 | GBP | £457,885 | 08/Nov/2017 (11:43) | 08/Nov/2017 (13:14) |
3 | | EUR | | 08/Nov/2017 (13:14) | |



Hope you get the gist.
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
the form can be set:
recordsetType = snapshot
allowedits = false

you can set a timer to refresh the form every X seconds:
timerInterval = 10000 (10 seconds)

put a requery to update the form, in the TIMER event
Code:
Private Sub Form_Timer()
SubForm.Requery
End Sub
 
Upvote 0

Forum statistics

Threads
1,221,657
Messages
6,161,084
Members
451,684
Latest member
smllchng5

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top