如何在 Visual Studio 2010 C# 中创建具有截止期的报告
我是使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将创建一个存储信息的表:
按照您给出的示例:
然后在您的代码中,验证输入的信息是否与数据库中的约束匹配,例如。金额 <= 500.00,并且期间在PeriodBeginDate 和PeriodEndDate 范围内。
I would create a table that stores the information:
With the example you gave:
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.