How to create a "save as" dialog

How to create a “save as” dialog like the “save as library” dialog in RobotStudio 5.11.
in Addin Program with C#

Thanks!

You can use the standard c# save file dialog

SaveFileDialog dlg = new SaveFileDialog();

Thanks:wink:. But the standard save file dialog has less function than the one of Robot Studio 5.11’s. Of course SaveFileDialog is enough. Thanks again!

The “extended” file dialog is not part of the public API (yet), sorry :stuck_out_tongue_winking_eye:

regards,
Johannes

I see, thanks you very much! :wink: