I was building a program with a save, and save as feature. If you have saved it already and you click save, it doesn't show a form normally. I had an idea how to sort this out, but how do I get a SaveFileDialog to be able to be used in other voids?
Thanks in advance
Save and Save As
Page 1 of 12 Replies - 674 Views - Last Post: 17 July 2010 - 04:47 AM
Replies To: Save and Save As
#2
Re: Save and Save As
Posted 17 July 2010 - 02:08 AM
I found out how to do it, delete this thread please
#3
Re: Save and Save As
Posted 17 July 2010 - 04:47 AM
We don't delete threads. So for those interested in how to do this.
You would do something like this.
You would do something like this.
Boolean Save() { Return SaveAs(FileAddr); } Boolean SaveAs(FileAddr){ \* Stuff to do save *\ }
Page 1 of 1