IsDate

判断该列是否是日期型。

例如下面的代码列出了订单表的所有日期型列:

Output.Show("订单表中的日期型列有:")

For Each dc As DataCol In DataTables("订单").DataCols
    If
dc.IsDate Then
        Output.Show(dc.Name)
   
End
If
Next

 


本页地址:http://www.foxtable.com/webhelp/topics/0415.htm