首页
社区
课程
招聘
[求助]请教PB高手一个菜鸟问题:
发表于: 2006-6-17 23:01 3573

[求助]请教PB高手一个菜鸟问题:

2006-6-17 23:01
3573
integer li_connect_ret
integer li_rc
integer li_check_ret
string ls_jym
string ls_hospitalname
string ls_check_ret
string ls_connect
string ls_yhs
string ls_regiskey
string ls_dbms
string ls_cur_date
string ls_end_date
string ls_final_date
string ls_login_ret

在PBKILL中反编出以上代码,不知其作用,是不是声明一种变量或调用的意思?

在以下代码段中出现了ls_connect 和ls_yhs 等内容,它们应是变量还是一种自定义函数?

ls_connect = gf_check_yhs(gs_module)
ls_yhs = string(top(ls_jym))

if dec(ls_connect) > dec(ls_yhs) and ls_hospitalname <> "" then
        messagebox("错误信息","用户数量超过许可证数量!")
        return -5
end if

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 0
支持
分享
最新回复 (4)
雪    币: 442
活跃值: (1216)
能力值: ( LV12,RANK:1130 )
在线值:
发帖
回帖
粉丝
2
ls_connect 连接用户数量

ls_yhs 用户许可数量
2006-6-17 23:08
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
我找不到ls_yhs 这个东西在那呀!它应该是事先定义好的,要如何才能找到这些东西?

ls_connect = gf_check_yhs(gs_module)
ls_yhs = string(top(ls_jym))

if dec(ls_connect) > dec(ls_yhs) and ls_hospitalname <> "" then
        messagebox("错误信息","用户数量超过许可证数量!")
        return -5
end if

2006-6-17 23:24
0
雪    币: 215
活跃值: (70)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
4
ls_yhs是一个字符型变量
gf_check_yhs是个全局函数
仅仅这点代码不能说明问题!
发到yhsoft@yeah.net帮你看看!!
2006-6-18 00:39
0
雪    币: 203
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
ls==local string
gf=global functiom
li=local int
.......
2006-6-29 11:19
0
游客
登录 | 注册 方可回帖
返回
//