在Telerik Reporting中执行int64转换

时间:2015-10-26 13:10:22

标签: c# asp.net telerik telerik-reporting

我想使用string函数将int转换为CInt,但它只能将字段转换为int32,如果我的字段大于value is either too large or too small for an int32 ,我收到这个错误:

int64

如何在Telerik Reporting中使用#include <stdio.h> #include <stdlib.h> #include <string.h> int main() { char* p; p = (char*)malloc(0); scanf("%s", p); printf("%s", p); free(p); } 转换?

2 个答案:

答案 0 :(得分:0)

使用CLng返回64位整数(Long

答案 1 :(得分:0)

我非常确定Telerik Reports支持C#转换,所以只需要执行Convert.ToInt64(参数/值)即可。