SaveFileDialog plus "cdlOFNNoChangeDir"?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Phill.  W

    SaveFileDialog plus "cdlOFNNoChangeDir"?

    With the CommonDialog, you can prevent the user from changing
    the directory in which a file will be saved by specifying

    ..Flags = .Flags Or cdlOFNNoChangeD ir

    Is there an equivalent flag (or other mechanism) that can be used
    in conjunction with the [System.Windows. Forms].SaveFileDialog ?

    TIA,
    Phill W.


  • Siva M

    #2
    Re: SaveFileDialog plus "cdlOFNNoC hangeDir"?

    The equivalent of cdlOFNNoChangeD ir is FileDialog.Rest oreDirectory property.
    But, I don't it prevents users changing folders.

    -Siva

    "Phill. W" <P.A.Ward@o-p-e-n-.-a-c-.-u-k> wrote in message
    news:def93b$mk$ 1@yarrow.open.a c.uk...
    With the CommonDialog, you can prevent the user from changing
    the directory in which a file will be saved by specifying

    ..Flags = .Flags Or cdlOFNNoChangeD ir

    Is there an equivalent flag (or other mechanism) that can be used
    in conjunction with the [System.Windows. Forms].SaveFileDialog ?

    TIA,
    Phill W.



    Comment

    Working...