Page 1 of 1
Displaying the card number automatically
Posted: Wed Apr 30, 2014 10:18 am
by barrygilligan
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
Re: Displaying the card number automatically
Posted: Wed Apr 30, 2014 11:05 am
by jmburnod
Hi Barry,
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
and if you have an opencard message in a card or group script use pass like this:
Code: Select all
on opencard
do something
pass opencard
end opencard
Best
Jean-Marc
Re: Displaying the card number automatically
Posted: Wed Apr 30, 2014 11:13 am
by barrygilligan
Many thx , I'll give that a go