标题:VFP8.0中的Olecontrol问题
只看楼主
fp2001
Rank: 1
等 级:新手上路
帖 子:27
专家分:0
注 册:2006-5-26
 问题点数:0 回复次数:3 
VFP8.0中的Olecontrol问题
新手请教:
我在表单中添加了一个ActiveX控件Microsoft Date and Time Picker Control 6.0,我想用这个来限定一个统计的日期范围
如图:

我想问一下:如何调用这两个olecontrol里的值?可以像日期型一样比较大小吗?这个统计按钮用这个能实现吗?
还有,在VFP8.0里做好了,换到VFP6.0里,这个控件还有用吗?我看过VFP6.0里没有这个控件哦
先在此谢过好心的达人们~~!谢谢~!
搜索更多相关主题的帖子: Olecontrol Microsoft VFP 控件 Picker 
2006-05-30 10:53
netggx
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2006-5-23
得分:0 
date(olecontrol.year,olecontrol.month,olecontrol.day)
返回该控件的日期值
2006-05-30 11:46
fp2001
Rank: 1
等 级:新手上路
帖 子:27
专家分:0
注 册:2006-5-26
得分:0 

我用这段程序实现不了统计按钮的功能啊。。。请问问题出在哪里?
jyxx是我建的一个关于交易信息的表,小弟新手,犯低级错误还请见谅

IF thisform.optiongroup1.Value=1
thisform.grid1.RecordSource='jyxx'
ELSE select jyxx where 交易日期>DATE(olecontrol1.year,olecontrol1.month,olecontrol1.day) and;
交易日期<DATE(olecontrol2.year,olecontrol2.month,olecontrol2.day) into cursor tj
thisform.grid1.RecordSource='tj'
ENDIF

[此贴子已经被作者于2006-5-30 14:34:18编辑过]

2006-05-30 14:33
netggx
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2006-5-23
得分:0 
IF thisform.optiongroup1.Value=1
thisform.grid1.RecordSource='jyxx'
ELSE
select * from jyxx where between(交易日期,date(olecontrol1.year,olecontrol1.month,olecontrol1.day),
DATE(olecontrol2.year,olecontrol2.month,olecontrol2.day));
into cursor tj
thisform.grid1.RecordSource='tj'
ENDIF
thisform.Refresh
2006-05-31 13:54



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-68446-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.443014 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved