Switch rvActionOpen File load formats
Switch rvActionOpen File load formats
My users tend to prefer .rtf as their primary format instead of rvf. Is there a simple way without editing RichViewActions to change the order or at least default it to .rtf.
-
- Site Admin
- Posts: 17555
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Switch rvActionOpen File load formats
RichViewActions do not allow changing order of formats in the file saving dialog.
You can
1) Assign RTF as a default format for new documents - RVAControlPanel.DefaultFileFormat = ffeRTF
2) Make RTF the default format in TrvActionOpen. Assign rvActionOpen.LastFilterIndex = 2 (if RTF is the second format in this dialog)
You can
1) Assign RTF as a default format for new documents - RVAControlPanel.DefaultFileFormat = ffeRTF
2) Make RTF the default format in TrvActionOpen. Assign rvActionOpen.LastFilterIndex = 2 (if RTF is the second format in this dialog)
Re: Switch rvActionOpen File load formats
Thanks appreciate it