Hi
I am trying to export a userform as GIF image. Is this possible? I am using the following code, But I get the error in Export Statement.
Sub export_form()
Dim us As Object
abc = ActiveWorkbook.Path
Set us = UserForm1
gifname = InputBox("Enter name for GIF:")
us.Export abc & gifname & ".gif", FilterName:="GIF"
End Sub