C
Charles A. Lackman
Hello,
I have an app that allows me to Open a file, by right clicking it and
opening it with my program.
Public Sub New (Byval AFile as String)
The problem is that when you open the file this way, it does not allow me to
release the resources of the file so that I can save back to the opened file
(Actualy it is a bitmap).
When I use an OpenFileDialog box to open the file, I am easily disposing the
resources and have no problem saveing back to the file. The problem only
happens when I open the file using the
Public Sub New (Byval AFile as String).
Any Suggestions?
Chuck
I have an app that allows me to Open a file, by right clicking it and
opening it with my program.
Public Sub New (Byval AFile as String)
The problem is that when you open the file this way, it does not allow me to
release the resources of the file so that I can save back to the opened file
(Actualy it is a bitmap).
When I use an OpenFileDialog box to open the file, I am easily disposing the
resources and have no problem saveing back to the file. The problem only
happens when I open the file using the
Public Sub New (Byval AFile as String).
Any Suggestions?
Chuck