Page 1 of 1
Switch rvActionOpen File load formats
Posted: Wed Jul 22, 2020 4:03 pm
by jgkoehn
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.
Re: Switch rvActionOpen File load formats
Posted: Wed Jul 22, 2020 6:43 pm
by Sergey Tkachenko
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)
Re: Switch rvActionOpen File load formats
Posted: Wed Jul 22, 2020 10:04 pm
by jgkoehn
Thanks appreciate it