• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Edit cells while userform is running

Dhamo

New Member
Hi,


I have an user form (similar to find & Replace functionality), when the form is running, I want to edit cells in worksheet. How this can be achieved?
 
when you call the form, put it in VBmodeless mode

Code:
UserForm1.Show vbModeless
 
Back
Top