views:

83

answers:

3

The subject has it all. I want to have the Windows save as dialog as part of my own dialog. Is that even possible ?

+1  A: 

I've found this MSDN article from 2005:

Extend the Common Dialog Boxes Using Windows Forms 1.x

Applies to:
Microsoft® .NET Framework 1.1
Microsoft® Visual Studio .NET 2003

So I don't know whether it'll be applicable in your case. It might have some pointers though.

ChrisF
+2  A: 

I would say that what you actually want to do is to extend Windows File Save dialog as opposed to embedding it inside your own. Here are some links:

http://msdn.microsoft.com/en-us/library/ms646951%28VS.85%29.aspx

http://msdn.microsoft.com/en-us/library/ms646960%28VS.85%29.aspx

Igor Zevaka
+1  A: 

You can subclass the standard Windows Save As Dialog Box and add your own functionality to it..there's a similar question posted here.

Hope this helps, Best regards, Tom.

tommieb75