hi xperts,
newbie here
I have the following sub which is used to create a callout .
======================
Sub callout1()
Dim wsactive As Worksheet
Dim box1 As Shape
Set wsactive = ActiveSheet
Set box1 = wsactive.Shapes.AddCallout(msoCalloutOne, 840, 10, 100, 50)
box1.Callout.Angle = msoCalloutAngle90
box1.TextFrame.Characters.Text = "1. Get details"
End Sub
======================
now i want to create a separate sub (say delcallout1) which when called would delete the callout. i have 3 such callouts to create which should appear and get cleared between many events (mainly commandbutton clicks).at a time only one callout will be active.
is there any way to do this?? plzzz help meee
newbie here
I have the following sub which is used to create a callout .
======================
Sub callout1()
Dim wsactive As Worksheet
Dim box1 As Shape
Set wsactive = ActiveSheet
Set box1 = wsactive.Shapes.AddCallout(msoCalloutOne, 840, 10, 100, 50)
box1.Callout.Angle = msoCalloutAngle90
box1.TextFrame.Characters.Text = "1. Get details"
End Sub
======================
now i want to create a separate sub (say delcallout1) which when called would delete the callout. i have 3 such callouts to create which should appear and get cleared between many events (mainly commandbutton clicks).at a time only one callout will be active.
is there any way to do this?? plzzz help meee