Re: populate a list box with different data



tom,

this is how i have it

code from userform1

Private Sub CommandButton1_Click()
call results
end sub


then from the results sub

sub results ()

unload userform1

various code

userform2.show
end sub

then from userform2

Private Sub CommandButton1_Click()

call searchagain ()

end sub

sub searchagain ()

unload userform2

various code

userform1.show

end sub ()

i have check earlier from another posting that this method was ok what
do you think

john

.


Loading