本文介绍了如何将VB6中的OLE1替换为VB.NET的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在将代码从VB6转换为VB.NET2010,遇到了需要您帮助的问题
我在VB6中有如下代码:

 打开 ls_FileName 对于 二进制  #li_FileNum
Me.OLE1( 1 ).ReadFromFile li_FileNum 



并显示错误:"ReadFromFile不是System.Windows.Forms.Label的成员"
而且我无法解决,因为我不知道OLE1和ReadFromFile的情况以及在VB.NET中用什么来替换它.

如果您知道的话,请帮助我.

在此先谢谢您.

解决方案



I am converting code from VB6 to VB.NET2010 and I met a problem that need your help
I have code in VB6 as below:

Open ls_FileName For Binary As #li_FileNum
Me.OLE1(1).ReadFromFile li_FileNum



and it displayed error: "ReadFromFile is not a member of System.Windows.Forms.Label"
and I can''t fixed because i don''t know how OLE1 and ReadFromFile are and What using to replace it in VB.NET .

Please help me if you know.

Thanks in advance.

解决方案




这篇关于如何将VB6中的OLE1替换为VB.NET的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 04:37