RPT1.PRG
上传用户:abc1382430
上传日期:2013-01-31
资源大小:1233k
文件大小:1k
源码类别:

行业应用

开发平台:

VFP

  1.     set talk off
  2.     set esca off
  3.     set path to..
  4.     do LoadSDK                    && 装入SDK,只需在程序入口处调用一次即可
  5.     do _OutReport in MisTool with "YearRpt","公司年度利润表"
  6.     retu
  7.     proc YearRpt
  8.     use Profit
  9.        ?  "               公司1994-1995各月份报表"
  10.        ?  "┌─────┬─────────┬─────────┐"
  11.        ?  "│  月  份  │ 1994年利润(万元) │ 1995年利润(万元) │"
  12.     go top
  13.     do whil .not. eof()
  14.        R1=Month+"      "
  15.        R2=str(p1994,18,2)
  16.        R3=str(p1995,18,2)
  17.        ?  "├─────┼─────────┼─────────┤"
  18.        ?  "│"+R1+    "│"+R2+            "│"+R3+            "│"
  19.        skip
  20.     endd
  21.        ?  "└─────┴─────────┴─────────┘"
  22.     ejec
  23.     use
  24.     retu