各位大侠:
小弟在做组态王的一个工程,在一个画面中建立了一个KVDBGird控件查询数据库里的数据,想根据日期查询,建立了一个date and time picker control控件,在change里的关联函数输入命令如下:
long year=选择日期为查询.Year;
long month=选择日期为查询.Month;
long day=选择日期为查询.Day;
string the;
the=StrFromInt( year, 10 )+"-" +StrFromInt( month, 10 )+"-"+StrFromInt(day,10 );
点确定时显示选择日期为查询.Year变量未定义,请问大仙们是什么意思,还有就是这段命令对不对,如果不对,请告知怎么样才能实现我的这个日期查询的想法,谢谢大侠们,希望得到解决,不胜感激。
float Ayear;
float Amonth;
float Aday;
string temp;
string StartDate;
string EndDate;
Ayear= DongTime.Year-2000;
Amonth=DongTime.Month;
Aday=DongTime.Day;
temp=StrFromInt( Ayear, 10 );
if(Amonth<10)
temp=temp+"/0"+StrFromInt( Amonth, 10 );
else
temp=temp+"/"+StrFromInt( Amonth, 10 );
if(Aday<10)
temp=temp+"/0"+StrFromInt( Aday, 10 );
else
temp=temp+"/"+StrFromInt( Aday, 10 );
StartDate = temp;
这是我做的实例,可以使用,你看下,可以再交流QQ409001978