Fill selected shapes property value with a VBA form text value

Started by Gustavo, November 17, 2017, 11:15:16 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Gustavo

Hi all

I'm trying to make a macro that fill some selected shapes property cells value, with the value of a VBA form text field. All instances of the same master shape. For that I've tried to modify a little bit code from this post from VisioGuy http://visguy.com/vgforum/index.php?topic=57.msg183#msg183 in a class module, but how do I call it from a VBA form? Please point me in the right direction.

Best regards.


Yacine

A usual trigger would be the push of a button.
Create one and in its click event call the desired sub.

sub myButton_Click(...?)
  myRoutine
end sub
Yacine