View Single Post
 
Old 05-30-2018, 04:59 PM
Jailer Jailer is offline Windows 10 Office 2010 32bit
Novice
 
Join Date: May 2018
Posts: 7
Jailer is on a distinguished road
Default

Ok after some random code insertion it seems to be working. What got it working was changing this:

Code:
Call UpdateBookmark("bmctime", TextBox9.Value)
For i = 0 To ListBox1.ListCount - 1
To this:

Code:
Call UpdateBookmark("bmctime", TextBox9.Value)
Me.Repaint
UserForm1.Hide
For i = 0 To ListBox1.ListCount - 1
I have no idea why and no idea if that's a best practice or even proper but it is working.
Reply With Quote