Recordset Autocomplete

  1. 5 years ago

    TheMexican

    24 Jun 2018 User since 2016

    Looking at your lets Cook Nav, there is some code Window2.WillShow event

    var sql = "SELECT * FROM Recipe WHERE rowid=\(self.identifier)";
    var rs = Recipes.select(sql);
    
    self.NavigationItem1.title = rs.name;
    TextView1.text = rs.instructions;
    ImageView1.image = rs.image;
    
    View1.preparation = rs.preparation_time;
    View1.cooking = rs.cooking_time;
    View1.difficulty = rs.difficulty;

    Are there any plans on making autocomplete on Instantiated Objects via code?
    It would be nice if when we type rs. Creo will identified rs as a Recordset and then let you autocomplete.

  2. andrea

    25 Jun 2018 Administrator User since 2016

    This is a known issue, we will improve the autocomplete as soon as possible.

or Sign Up to reply!