Excel - Open a named userform -
sure basic, had userforms had not named , called these using userform1.show
. have named these eg. progressbar.
i call 1 userforms.add("progressbar").show vbmodeless
but cant figure out how make bit work:
private sub userform_initialize() 'with userforms("progressbar") me .startupposition = 0 .left = application.left + (0.5 * application.width) - (0.5 * .width) .top = application.top + (0.5 * application.height) - (0.5 * .height) end end sub
how should call these forms?
it progressbar opposed userforms("progressbar") wouldn't it?
Comments
Post a Comment