Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub Image9_Cliquer()
  2.     Static winit!
  3.     Dim w!
  4.     With ActiveSheet.Shapes(Application.Caller)
  5.         If winit = 0 Then
  6.             winit = .Width
  7.             w = Application.CentimetersToPoints(50)
  8.             .Width = w
  9.         Else
  10.             .Width = winit
  11.             winit = 0
  12.         End If
  13.     End With
  14. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement