• 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.

copy from one userform to another

I have a workbook that have 2 userforms userform12 and userform 15
but the second userform15 open when i click in a textbox txt17 in userform12

>>> use code - tags <<<
Code:
Private Sub txt17_Enter()
Me.cmbslno.Copy
Unload Me
UserForm15.Show
End Sub
in userform12 there is a textbox that is actually a dropbox "cmbslno" that takes values from wsheet "stoixeia" column A
when i click at txt17 usually in cmbslno there is a values from 1 to 17
i want to do that that value to be paste in userform15 to dropbox cmbslno2
i thought to be copied before unload so to be paste in userform17 just like me.cmbslno2.paste but not works

hope to be understood
 

Attachments

  • MY BOOK 1.xlsb
    66.8 KB · Views: 7
Last edited by a moderator:
 
kingcashandcarry
You should reread Forum Rules:
You have missed few basic things based cross-posting..
 
Back
Top