Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am a Macro/Vbscripting newbie. Please see the image below. How to name this vbscript so that I can attach it with a button. The idea is to display "The sum is 3" when you hit the button.
Thanks
hola
te paso el script y la aplicación de ejemplo:
sub test()
dim X
x= 1
dim y
y = 2
dim z
z = x + y
msgbox("the sum is " & z )
end sub
sub MyMacro
<macro text>
end sub
And, use MyMacro in action
sub NameofMacro
............
............
end sub
then you will have to call the macro putting NameofMacro and that is!
Good LucK
Fernando
hola
te paso el script y la aplicación de ejemplo:
sub test()
dim X
x= 1
dim y
y = 2
dim z
z = x + y
msgbox("the sum is " & z )
end sub