Subject Re: Editor Presets
From Charlie <tm@tc.com>
Date Thu, 17 Jun 2021 17:59:23 -0400
Newsgroups dbase.getting-started

I am using libre which should be similar.  Here is my code on the push button.  Hope it helps.

csvpath = trim(form.ebay_var1.rowset.fields["csvpath"].value)
                txno= ltrim(str(form.ebay_var1.rowset.fields["etextno"].value))
                prgpatha = "C:\Program Files (x86)\LibreOffice 5\program\soffice.exe "
                prgpathb = "C:\Program Files\LibreOffice\program\soffice.exe "
                if file(csvpath+"\etext"+txno+".csv")
                   if file(prgpatha)
            RUN(true,prgpatha+csvpath+"\etext"+txno+".csv")
                   elseif file(prgpathb)
                      RUN(true,prgpathb+csvpath+"\etext"+txno+".csv")
                   else
                      msgbox( "Libre path not found." )
                   endif
                else
                   msgbox( "No csv file found at: "+csvpath+"." )
                endif


David S Veale Wrote:

> I just upgraded (finally) from dBASE Plus 10 to dBASE 2019.  In the new version, when I go into Source Editor Properties / Editor the only color scheme option for Editor Presets is "dBASE Classic".  There used to be more options.  Is there something I need to do to see the additional color scheme options, or are the just gone in this version?