E
extrnh
i have a macro that exports charts as gif files using the following
code:
Charts(i).Export Filename:=strWebPath & "images\" &
strChartName & ".gif", FilterName:="gif"
when each chart is exported, a progress bar is displayed. i would
like to disable the display of the progress bar form, but
Application.DisplayAlerts = False and Application.ScreenUpdating =
False do not work.
any ideas on how to disable the display of the progress bar?
code:
Charts(i).Export Filename:=strWebPath & "images\" &
strChartName & ".gif", FilterName:="gif"
when each chart is exported, a progress bar is displayed. i would
like to disable the display of the progress bar form, but
Application.DisplayAlerts = False and Application.ScreenUpdating =
False do not work.
any ideas on how to disable the display of the progress bar?