ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Listboxes 2 (https://www.excelbanter.com/excel-programming/300773-listboxes-2-a.html)

DENISE

Listboxes 2
 
I have two forms each with a listbox on them

How do I get it so that when the user clicks a button on
the first form the second form is displayed which it's
listbox containing the same data as the first

This is what I've got so far
sub Userform1_click()
userform2.show
userform2.listbox1.value = userform1.listbox1.value
end sub

helmekki[_9_]

Listboxes 2
 
Hi

u donot need a vba code to do this...........
use validation List
would be effactive

pls find the attached file, it might be helpful

your

Attachment filename: dynamic lists.xls
Download attachment: http://www.excelforum.com/attachment.php?postid=57027
--
Message posted from http://www.ExcelForum.com


Bob Phillips[_6_]

Listboxes 2
 
Private Sub CommandButton1_Click()
With UserForm2
.ListBox1.List = Me.ListBox1.List
.ListBox1.ListIndex = 0
.Show
End With
End Sub


--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Denise" wrote in message
...
I have two forms each with a listbox on them

How do I get it so that when the user clicks a button on
the first form the second form is displayed which it's
listbox containing the same data as the first

This is what I've got so far
sub Userform1_click()
userform2.show
userform2.listbox1.value = userform1.listbox1.value
end sub





All times are GMT +1. The time now is 05:28 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com