如何在 Visual Studio 2010 C# 中创建具有截止期的报告

发布于 2024-12-18 18:40:22 字数 181 浏览 1 评论 0原文

我是使用 Visual Studio 2010 创建应用程序的新手。我当前正在创建一个津贴报告,用户可以在其中输入某个人的所有津贴。一个人在一定时期内有固定的津贴。我现在的问题是如何指定此人在每个截止期内拥有 500.00 美元的固定金额?我已经创建了一个表单,可以输入所有不同的截止时间并将数据保存到我的数据库中(MS Access 2007)。

I am new in creating applications using Visual Studio 2010. I am currently creating a Allowance Report where the user can input all the allowances of a certain person. A person has a fixed allowance for a certain period of time. My problem now is how can I specify that this certain person has a fixed amount of $500.00 per cut off period? I already created a form that I can input all different cut off period and save the data into my database(MS Access 2007).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疯狂的代价 2024-12-25 18:40:22

我将创建一个存储信息的表:

CutOffAmounts:
    CutOffId
    PersonId
    PeriodBeginDate
    PeriodEndDate
    CutOffAmount

按照您给出的示例:

Row 1:
    CutOffId = 1
    PersonId = 1
    CutOffAmount = 500.00
    PeriodBeginDate = 11/1/2011
    PeriodEndDate = 11/30/2011

然后在您的代码中,验证输入的信息是否与数据库中的约束匹配,例如。金额 <= 500.00,并且期间在PeriodBeginDate 和PeriodEndDate 范围内。

I would create a table that stores the information:

CutOffAmounts:
    CutOffId
    PersonId
    PeriodBeginDate
    PeriodEndDate
    CutOffAmount

With the example you gave:

Row 1:
    CutOffId = 1
    PersonId = 1
    CutOffAmount = 500.00
    PeriodBeginDate = 11/1/2011
    PeriodEndDate = 11/30/2011

Then in your code, validate that the information entered matches up with the constraints in the database eg. the amount is <= 500.00 and the period falls within the PeriodBeginDate and PeriodEndDate range.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文