VB6 的 C# 转换 - 记录集
我想将该行从 VB6 转换为 C#,但这样做非常困难。
VB6代码:
txtFields(4).Text = rsGroup.Fields(0).Value + 1
C#:(到目前为止我所拥有的)
txtFields4.Text = (rsGroup.Fields[0].Value) +1);
正确的方法是什么?
I'm wanting to convert the line to C# from VB6 and am having quite the difficulty doing so.
VB6 Code:
txtFields(4).Text = rsGroup.Fields(0).Value + 1
C#: (what I have so far)
txtFields4.Text = (rsGroup.Fields[0].Value) +1);
What is the correct way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
@jdurman,
使用数据集检索数据的示例是:
@jdurman,
An example of retrieving data using a DataSet is:
我不会使用记录集并使用数据集。
您可以使用 System.Data.SqlClient 命名空间来访问数据库,然后您可以绑定数据集中的控件,使生活变得更加轻松,而且我会避免直接从 VB6 复制代码。 C# 世界中有很多以前在 VB6 中无法使用的新东西。
I would not use a RecordSet and Use a DataSet instead.
you can use the System.Data.SqlClient namespace to be able to access Databases and then you can bind controls from your DataSet, makes life alot easier, and also i would avoid doing straight copying of code from VB6. There is alot of new thing in the world of C# that you would never of had the option of using in VB6 prior.