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
-
Using a choice-field you can set the value depending on the internal counter of the items:
So this should work:
–––
let a := text('Invoice Status');
if a = "Paid" then
Gigs.Status := 1else
Gigs.Status := 2
end
–––Birger
-
Hey sweet, thanks!
Content aside
- 6 yrs agoLast active
- 2Replies
- 1490Views