M
Marc
Dear All,
in a report I need to insert a sentence, if a boolean field (EU) is true or
false.
My need is the following: if a sample is sent in EU (European Union), for
the custom, in the proforma-invoice (report) the incoterms must be
declatated.
Incoterms for EU: Delivery Duty Paid + Location
Incoterms outside EU: Delivery Duty Unpaid + Location
I though something of *automatic* and very easy, without building new fields
in tables, such as VB code, since the final user is not a power user.
If EU = True Then
Incoterm.Caption="Incoterm: Delivery Duty Paid "
Else
Incoterm.Caption="Incoterm: Delivery Duty Unpaid "
End If
but I am not able to find the Caption property concerning an unbound
textbox.
Does anybody can tell me if this method can run or if there is an
alternative procedure?
Many thanks in advance,
Marc
in a report I need to insert a sentence, if a boolean field (EU) is true or
false.
My need is the following: if a sample is sent in EU (European Union), for
the custom, in the proforma-invoice (report) the incoterms must be
declatated.
Incoterms for EU: Delivery Duty Paid + Location
Incoterms outside EU: Delivery Duty Unpaid + Location
I though something of *automatic* and very easy, without building new fields
in tables, such as VB code, since the final user is not a power user.
If EU = True Then
Incoterm.Caption="Incoterm: Delivery Duty Paid "
Else
Incoterm.Caption="Incoterm: Delivery Duty Unpaid "
End If
but I am not able to find the Caption property concerning an unbound
textbox.
Does anybody can tell me if this method can run or if there is an
alternative procedure?
Many thanks in advance,
Marc