常用语句模板.txt

来自「水费管理系统」· 文本 代码 · 共 29 行

TXT
29
字号
一、错误处理
if gf_check_insert_error("写入生成用户收费周期表时出错") then
	return
end if

if gf_check_sp_error("执行存储过程时出错") then
	return
end if

if gf_check_cur_error("推进游标时时出错") then
	return
end if

	if gf_check_update_error("更新表:gen_fee_cycle时出错") then
		return
	end if
二、其它
// 在关闭时保存数据
if dw_bank.deletedcount( ) <> 0 &
	or dw_bank.modifiedcount( ) <> 0 then
	long ll_ret
	ll_ret = MessageBox("提示", "有未保存的数据,是否保存?", Question!, YesNoCancel!)
	if ll_ret = 3 then
		return
	elseif ll_ret = 1 then
		commit;
	end if
end if

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?