Could somebody help with this please.. I would like to display the card number automatically within a text field. i.e. the card opens and a lablel/field displays the card number, I thought it would be straight foward but I cannot get it to work.
Thx
Displaying the card number automatically
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
-
- Posts: 2
- Joined: Wed Apr 30, 2014 9:39 am
Re: Displaying the card number automatically
Hi Barry,
You have to do that in the stack script
and if you have an opencard message in a card or group script use pass like this:
Best
Jean-Marc
You have to do that in the stack script
Code: Select all
on opencard
put the num of this cd into fld "Mylabel"
end opencard
Code: Select all
on opencard
do something
pass opencard
end opencard
Jean-Marc
https://alternatic.ch
-
- Posts: 2
- Joined: Wed Apr 30, 2014 9:39 am
Re: Displaying the card number automatically
Many thx , I'll give that a go