Just converted a Mac Desktop app from Xojo 2018 to 2021 r3.1 and I have to say it all went quite smoothly, however there is this annoyance with Autocomplete not working for some basic commands (MacOS 10.14.6).
For example, let’s say I initiate a recordset with
Dim rs_pmtfrom As RecordSet = ps_inslookup.SQLSelect
if I type “rs” then the recordset name “rs_pmtfrom” pops up, but then if I type “rs_pmtfrom.f” nothing happens. Usually, it will fill in “rs_pmtfrom.field”
and then “rs_pmtfrom.field(“invoice”).st” also does not autocomplete to “rs_pmtfrom.field(“invoice”).stringvalue”.
When I type it manually, the code compiles and runs properly.
No other issues so far - but this was not expected.