G
Guest
Hiya
I've got a form like this:
ExpenseType (Combo) - Bound to T-ExpenseReports
DollarAmount (Text) - Unbound
I want to make it so that when
Expense.Value = "Per Diem"
DollarAmount.Value = "65"
So I put an Event Procedure in ExpenseType's AfterUpdate option and wrote
the code like this:
If Expense.Value = "Per Diem"
DollarAmount.Value = "65"
EndIf
I get no result wether I type "Per Diem" or "per diem" or anything in
between. I'm guessing this has something to do with either Field Types or a
glitch in the matrix.
Any suggestions?
/amelia
I've got a form like this:
ExpenseType (Combo) - Bound to T-ExpenseReports
DollarAmount (Text) - Unbound
I want to make it so that when
Expense.Value = "Per Diem"
DollarAmount.Value = "65"
So I put an Event Procedure in ExpenseType's AfterUpdate option and wrote
the code like this:
If Expense.Value = "Per Diem"
DollarAmount.Value = "65"
EndIf
I get no result wether I type "Per Diem" or "per diem" or anything in
between. I'm guessing this has something to do with either Field Types or a
glitch in the matrix.
Any suggestions?
/amelia