Hi all,

probably a very easy one: I've got an userform in an add-in. I'd like to fill in some variables (textboxes, checkboxes etc) and then simulate the pressing of a commandbutton on that addin-userform from another workbook.

I thought it'd be easy like:
with workbooks("Addin.xlam").fUserForm
.txtbox1 = "test"
.show
end with
But it doesnt seem to work. Anyone got a clue on this? I could write another code within the addin which would take all the variables from the other workbook and pass them along to the userform but I'd like to do it directly.

Thanks