文件名称:自动升级文件和上传升级文件程序
-
所属分类:
- 标签属性:
- 上传时间:2020-05-07
-
文件大小:80.04kb
-
已下载:0次
-
提 供 者:
-
相关连接:无下载说明:别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容来自于网络,使用问题请自行百度
上传局域网内自动升级文件(update.pbw)和上传最新升级文件(ftp_update.pbw)
把编辑好的update.exe放在当前应用的下面,即可自动升级。
需建表
系统版本控制表
system_set
字段
cur_ver vchar
程序升级表
CREATE TABLE t_updata(
[ver] [char] (5) NOT NULL ,
[filename] [varchar] (30) NOT NULL ,
[fileblob] [image] NULL ,
[filesize] [int] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
update原理
从表中取得当前最新版的程序拷贝到当前目录。
注意事项
变量str_ini赋当前应用的配置文件名。
在应用程序中得注意事项。
以下为应用的open事件
program_ver='1.02'//当前程序版本
SELECT isnull(system_set.cur_ver,'') //取表中的最新版本
INTO :str_ver
FROM system_set;
SELECT count(t_updata.ver) //是否存在更新的程序文件
INTO :i_cnt
FROM t_updata
WHERE t_updata.ver = :str_ver ;
setprofilestring(str_ini, "system","ver",program_ver)//对配置文件进行赋值,以便update.exe比较版本。
if (str_ver<>program_ver) then
if i_cnt>0 then
if FileExists('updata.exe') then
messagebox('提示','当前程序已有升级版本,现在马上升级!')
run('updata.exe')//运行升级程序
halt close;
return;
else
messagebox('提示','当前程序已有升级版本!')
end if
end if
end if
把编辑好的update.exe放在当前应用的下面,即可自动升级。
需建表
系统版本控制表
system_set
字段
cur_ver vchar
程序升级表
CREATE TABLE t_updata(
[ver] [char] (5) NOT NULL ,
[filename] [varchar] (30) NOT NULL ,
[fileblob] [image] NULL ,
[filesize] [int] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
update原理
从表中取得当前最新版的程序拷贝到当前目录。
注意事项
变量str_ini赋当前应用的配置文件名。
在应用程序中得注意事项。
以下为应用的open事件
program_ver='1.02'//当前程序版本
SELECT isnull(system_set.cur_ver,'') //取表中的最新版本
INTO :str_ver
FROM system_set;
SELECT count(t_updata.ver) //是否存在更新的程序文件
INTO :i_cnt
FROM t_updata
WHERE t_updata.ver = :str_ver ;
setprofilestring(str_ini, "system","ver",program_ver)//对配置文件进行赋值,以便update.exe比较版本。
if (str_ver<>program_ver) then
if i_cnt>0 then
if FileExists('updata.exe') then
messagebox('提示','当前程序已有升级版本,现在马上升级!')
run('updata.exe')//运行升级程序
halt close;
return;
else
messagebox('提示','当前程序已有升级版本!')
end if
end if
end if
(系统自动生成,下载前可以参看下载内容)
下载文件列表
压缩包 : 自动升级文件和上传升级文件程序.rar 列表 updata updata/XP updata/XP/Xp-ButtonFace updata/XP/TMP updata/updata.pbw updata/说明.txt updata/updata.pbl updata/updata.pbt updata/XP/xpprg.bmp updata/XP/xpProgbar1.bmp updata/XP/xppb1.bmp updata/XP/xppb2.bmp updata/XP/xppb3.bmp updata/XP/xppb4.bmp updata/XP/xptop.bmp updata/XP/xpbott.bmp updata/XP/xp_chk_1.bmp updata/XP/xp_chk_2.bmp updata/XP/xp_chk_3.bmp updata/XP/xp_chk_4.bmp updata/XP/xp_chk_5.bmp updata/XP/xp_chk_6.bmp updata/XP/xp_chk_7.bmp updata/XP/xp_chk_8.bmp updata/XP/xp_radio_8.bmp updata/XP/xp_radio_2.bmp updata/XP/xp_radio_3.bmp updata/XP/xp_radio_4.bmp updata/XP/xp_radio_5.bmp updata/XP/xp_radio_6.bmp updata/XP/xp_radio_7.bmp updata/XP/xp_radio_1.bmp updata/XP/xp_button_3_1.bmp updata/XP/xp_button_3_2.bmp updata/XP/xp_button_3_3.bmp updata/XP/xp_button_4_1.bmp updata/XP/xp_button_4_3.bmp updata/XP/xp_groupbox.bmp updata/XP/xp_button_1_2.bmp updata/XP/xp_button_1_1.bmp updata/XP/xp_button_1_3.bmp updata/XP/xp_button_2_2.bmp updata/XP/xp_button_2_1.bmp updata/XP/xp_button_2_3.bmp updata/XP/xp_button_4_2.bmp updata/XP/xp_button_5_1.bmp updata/XP/xp_button_5_2.bmp updata/XP/xp_button_5_3.bmp updata/XP/MSN.bmp updata/XP/MSN.gif updata/XP/Xp-ButtonFace/xp_radio_1.bmp updata/XP/Xp-ButtonFace/xp_radio_2.bmp updata/XP/Xp-ButtonFace/xp_radio_3.bmp updata/XP/Xp-ButtonFace/xp_radio_4.bmp updata/XP/Xp-ButtonFace/xp_radio_5.bmp updata/XP/Xp-ButtonFace/xp_radio_6.bmp updata/XP/Xp-ButtonFace/xp_radio_7.bmp updata/XP/Xp-ButtonFace/xp_radio_8.bmp updata/XP/TMP/xp_button_1.bmp updata/XP/TMP/xp_button_2.bmp updata/XP/TMP/xp_button_3.bmp updata/XP/TMP/xp_button_4.bmp updata/XP/TMP/xp_button_5.bmp updata/xppb1.bmp updata/xppb4.bmp updata/xpbott.bmp updata/xptop.bmp updata/xppb2.bmp updata/xpprg.bmp updata/xpProgbar1.bmp updata/xppb3.bmp updata/xp_chk_1.bmp updata/xp_chk_2.bmp updata/xp_chk_3.bmp updata/xp_chk_4.bmp updata/xp_chk_5.bmp updata/xp_chk_6.bmp updata/xp_chk_7.bmp updata/xp_chk_8.bmp updata/rsgzb.ini updata/uo_reg.sru updata/ftp_updata.pbw updata/ftp_updata.pbl updata/ftp_updata.pbt updata/uo_wd.sru updata/w_pop_fj.srw updata/updata.pbr updata/1.ICO updata/下载使用说明.htm 说明.txt
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.