导航:首页 > 方法技巧 > vfp如何编写表单事件方法

vfp如何编写表单事件方法

发布时间:2023-08-18 16:14:22

① 简述在vfp中创建表单程序的步骤


1、在表单上新建标签label1~label5
2、在表单上新建文本框text1~text5
3、在表单上新建命令按钮command1~command5
4、将表单的数据环境添加rcda.dbf
5、在表单的Init事件里面录入:
with thisform
.label1.caption='编号'
.label2.caption='姓名'
.label3.caption='性别'
.label4.caption='出生日期'
.label5.caption='工资现状'
.command1.caption='每一个'
.command2.caption='上一个'
.command3.caption='下一个'
.command4.caption='最后一个'
.command5.caption='退出'
endwith
6、command1的click事件
go top
7、command2的click事件
if .not.bof()
skip -1
endif
8、command3的click事件
if .not.eof()
skip
endif
9、command4的click事件
go bott
10、command5的click事件
thisform.release

根据④作出一些修改就行了。

② 关于VFP中表单新建方法的调用

1)运行VFP软件,加载表单所在VFP项目。选Docs页。

3)保存所做的修改。运行该表单,测试按钮Click事件代码。

③ vfp表单设计


(1)Form1的Init事件代码:
thisform.timer1.enabled=.t.

(2)Timer1的Timer事件代码:
thisform.caption='计时:'+time()
if thisform.label1.fontsize=60
thisform.label1.fontsize=9
else
thisform.label1.fontsize=thisform.label1.fontsize+1
endif


(1) 表单form1的init事件代码:
set century on
thisform.timer1.enabled=.t.

(2)计时器控件timer1的timer事件代码:
thisform.text1.value=alltrim(str(year(date())))+'年'+alltrim(str(month(date())))+'月'+alltrim(str(day(date())))+'日'
thisform.text1.value=time()

阅读全文

与vfp如何编写表单事件方法相关的资料

热点内容
定额换算根据其计算方法 浏览:95
原因和治疗方法 浏览:962
大电饭锅温控器接线方法图片 浏览:348
企业转型解决方法 浏览:611
axbxc用简便方法计算 浏览:804
木冠幅的测量方法 浏览:368
台式电脑无线驱动的方法 浏览:666
治疗恶心呕吐的方法 浏览:935
豪吉鸡精的鉴别方法 浏览:266
关系中的问题解决方法 浏览:327
细胞内脂类检测方法 浏览:819
吉利帝豪空调不制冷解决方法 浏览:737
储水热水器的使用方法 浏览:920
紫金锁的使用方法视频 浏览:734
导线截面积计算方法 浏览:124
阴虱怎么去除简单方法 浏览:790
烫伤掉皮怎么处理方法 浏览:5
运动技术训练方法简答 浏览:782
这个方法让你的电脑变好看 浏览:654
数学中的简便运算方法有哪些 浏览:905