0

Combobox affects a Combobox in another form

Hi, I'd like to have my Combobox change the value of a Combobox on another form. Is this doable? I've tried all kinds of syntaxes but can't seem to make it so. Cheers!

let a := text('Invoice Status');
if a = "Paid" then
text(Gigs.Status) = "Closed"
else
text(Gigs.Status) = "Open"
end

2 replies

null
    • Birger_H
    • 5 yrs ago
    • Reported - view

    Using a choice-field you can set the value depending on the internal counter of the items:

    Screen Shot 2018-09-03 at 10.11.42,700

    So this should work:

    –––
    let a := text('Invoice Status');
    if a = "Paid" then
    Gigs.Status := 1else
    Gigs.Status := 2
    end
    –––

    Birger

    • rick
    • 5 yrs ago
    • Reported - view

    Hey sweet, thanks!

Content aside

  • 5 yrs agoLast active
  • 2Replies
  • 1489Views