home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 - Expo 2000 / Image.iso / t-online / decoder / formular.dir / 00007.ls < prev    next >
Encoding:
Text File  |  1997-02-10  |  1.1 KB  |  31 lines

  1. on ├╝bertrag3
  2.   put EMPTY into field "produkt3"
  3.   set x to the number of chars in field "stk3"
  4.   set y to 5 - x
  5.   repeat with i = 1 to y
  6.     put " " after field "produkt3"
  7.   end repeat
  8.   put field "stk3" after field "produkt3"
  9.   put "  " after field "produkt3"
  10.   put "Adapter f├╝r Telefondose" after field "produkt3"
  11.   repeat while the number of chars in field "produkt3" < 35
  12.     put " " after field "produkt3"
  13.   end repeat
  14.   put "(1009)    " after field "produkt3"
  15.   put "   12,40 DM" after field "produkt3"
  16.   if the number of chars in field "gesmtprx3" = 7 then
  17.     put "       " & field "gesmtprx3" after field "produkt3"
  18.   end if
  19.   if the number of chars in field "gesmtprx3" = 8 then
  20.     put "      " & field "gesmtprx3" after field "produkt3"
  21.   end if
  22.   if the number of chars in field "gesmtprx3" = 9 then
  23.     put "     " & field "gesmtprx3" after field "produkt3"
  24.   end if
  25.   if the number of chars in field "gesmtprx3" = 10 then
  26.     put "    " & field "gesmtprx3" after field "produkt3"
  27.   end if
  28.   set the textSize of member "produkt3" to 10
  29.   put field "produkt3" & RETURN after field "bestelltext"
  30. end
  31.