home *** CD-ROM | disk | FTP | other *** search
- on fillPrint
- global LogParms
- initCardData()
- put item 2 of LogParms into field "QuerentName"
- put item 3 of LogParms into field "QQuestion"
- put item 4 of LogParms into field "DivDate"
- put item 1 of LogParms into field "DivTime"
- end
-
- on initCardData
- global CardsDealt, CCindexes, CardList, author, CdNames, IllDigWaite, IllDigFoster, DigWaite, DigFoster
- ClearFields()
- repeat with i = 1 to CardsDealt - 1
- set CardName to line value(item i of CCindexes) of CdNames
- set tmp to char 1 to the number of chars in CardName - 2 of CardName
- if value(item i of CCindexes) <= 78 then
- put field "CardNames" & tmp && "(Dig)" & RETURN & RETURN into field "CardNames"
- if author = "Waite" then
- put field "CardMeaning" & line value(item i of CCindexes) of DigWaite && "(W)" & RETURN & RETURN into field "CardMeaning"
- else
- put field "CardMeaning" & line value(item i of CCindexes) of DigFoster && "(F)" & RETURN & RETURN into field "CardMeaning"
- end if
- next repeat
- end if
- put field "CardNames" & tmp && "(Ill)" & RETURN & RETURN into field "CardNames"
- if author = "Waite" then
- put field "CardMeaning" & line value(item i of CCindexes) mod 78 of IllDigWaite && "(W)" & RETURN & RETURN into field "CardMeaning"
- next repeat
- end if
- put field "CardMeaning" & line value(item i of CCindexes) mod 78 of IllDigFoster && "(F)" & RETURN & RETURN into field "CardMeaning"
- end repeat
- end
-