Hi All,
I have a general issue with Excel files with VBA that I have developped.
After a variable usage time of my files, I have no more access to some menu (like change cell color), even sometimes excel windows becomes completly blank and I have no choice to close excel window and re-open it.
I wonder if on my VBA code, I need to add something to stop completly the VBA process. I use a lot of forms. I use this way to make them appear and disappear, I suspect maybe something missing:
Private Sub UserForm_Activate() Form_export_io.Repaint
Call export_IO
Unload Form_export_io
End Sub
It happen more often when I work with my files with VBA and other files are opened and I switch for one to another.
Maybe something special to do in VBA?
Thanks for help!!!
PBA
I have a general issue with Excel files with VBA that I have developped.
After a variable usage time of my files, I have no more access to some menu (like change cell color), even sometimes excel windows becomes completly blank and I have no choice to close excel window and re-open it.
I wonder if on my VBA code, I need to add something to stop completly the VBA process. I use a lot of forms. I use this way to make them appear and disappear, I suspect maybe something missing:
Private Sub UserForm_Activate() Form_export_io.Repaint
Call export_IO
Unload Form_export_io
End Sub
It happen more often when I work with my files with VBA and other files are opened and I switch for one to another.
Maybe something special to do in VBA?
Thanks for help!!!
PBA