RobotStudio event

How to create a "save as" dialog

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

 

Thanks! 

 

Comments

  • You can use the standard c# save file dialog

    SaveFileDialog dlg = new SaveFileDialog();

    ...

  • ThanksSmile. 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 Wink

    regards,
    Johannes

    Johannes Weiman2009-01-15 15:36:06
    Johannes Weiman
    Software Engineer
    ABB Robotics
  • I see, thanks you very much! Smile