Joel_Eisenstat

Member

Last active [hidden]

  1. 4 years ago
    Thu Mar 12 09:39:31 2020
    Joel_Eisenstat started the conversation CreoPlayer Runtime Error.

    Good morning,
    A runtime error occurs for CreoPlayer but is fine for the simulator ; computed property
    get {
    return _formatdate;
    }
    set {
    _formatdate = value;
    Console.write(value);
    date.text = value[0...9];

    }
    TIA

  2. Sat Jan 18 11:21:59 2020
    Joel_Eisenstat started the conversation PickerView Runtime Error .

    Good morning ,
    For this snippet ; Works in the Simulator
    if ( column == 0) {
    PickerView1.selectRowInComponent(row, 1, true);
    } else if ( column == 1) {
    PickerView1.selectRowInComponent(row, 0, true);
    }
    generates an error in runtime
    Thanks
    Joel

  3. Wed Dec 11 11:57:13 2019
    Joel_Eisenstat posted in Button attributes.

    After cycling through objects the attributes become available

  4. Wed Dec 11 11:48:31 2019
    Joel_Eisenstat started the conversation Button attributes.

    When placing a button the attributes - title, image , background - are greyed out when an input view is used. They cannot be set.

  5. Mon Dec 2 13:37:01 2019
    Joel_Eisenstat posted in TextView text.color.

    I also have an issue with changing a TextView.text object when under animation as well . This is more involved as it is populated by a query in a view during the animation ;

    identifier = cell.identifier
    PostgreSQL1.connect();
    var sql = 'SELECT * FROM "Chart_Odont_Repository_Note" WHERE "id" = \(cell.identifier)';
    var rs = PostgreSQL1.select(sql);
    Console.write(PostgreSQL1.errorMessage);
    Procedure.noteText.text = Procedure.noteText.text + "\n" + rs.note;
    Procedure.View2.hidden = true;
    Keyboard.hide();

    The Procedure.noteText.text appears correct but is not updated in Postgres , the original text is though. No postgres errors

  6. Fri Nov 29 00:27:47 2019
    Joel_Eisenstat started the conversation SegmentedControl.

    Hi,
    There may be an issue with a segmented control within an input view, multiple segments are selected ( previous segment is not released) . This isn't the case with a segmented control ( same code) within a window[attachment:5de065b83b3db]
    Thanks
    Joel

  7. Mon Nov 18 16:19:14 2019
    Joel_Eisenstat started the conversation TextView text.color.

    There may be an issue with TextView.animation and changing the text colour.
    When animating TextView ( to rise above the keyboard) DidBeginEditing, DidEndEditing it works well when the text colour is not changed. However when the text colour is changed ( to stand out from the background ) the new text is not saved .
    DidBeginEditing;
    TextView1.animate(1.0, 0.8, '', {
    TextView1.backgroundColor = Color.yellow
    TextView1.frame.y = 250;
    TextView1.textColor = Color.red;
    }, null)

    DidEndEditing
    TextView1.animate(1.0, 0.8, '', {
    TextView1.backgroundColor = Color.black
    TextView1.frame.y = 611;
    TextView1.textColor = Color.white;
    }, null)

  8. Tue Oct 29 20:08:25 2019
    Joel_Eisenstat posted in String runtime error.

    got it, if ( t != null ) { should be if ( t != "" ) {

  9. Tue Oct 29 11:10:32 2019
    Joel_Eisenstat started the conversation String runtime error.

    For a computed property in a list to format a date - 2019-10-08 00:00:00 to 2019-10-08
    get {
    return _d;
    }
    set {
    _d = value;
    var t = String(value);
    if ( t != null ) {
    date.text = t[0...9];
    }
    }

    Runtime Error
    Out of bounds error: first_index 0 beyond bounds 0...-1

    Can't see why as this works -
    var d = String(TextField1.text);
    TextField2.text = d[0...9];
    related to list ?

  10. Sun Oct 13 11:04:41 2019
    Joel_Eisenstat posted in Modal Window sizes .

    The only modal form sizes that seem different from full screen are page sheet and form sheet. Can these be adjusted and if fixed what are the parameters for design mode ?

View more