D
DK
I have the following line in a VB2003 program that I'm converting to
VB2005 and it gives a warning about Access of Shared member will not
be evaluated --- what do I need to do to do away with the warning?
Private m_BmpStream As Stream
Private m_Assembly As System.Reflection.Assembly = _
Me.GetType.Assembly.GetEntryAssembly()
This is later used in order to retrieve a bitmap logo:
m_BmpStream = _
m_Assembly.GetManifestResourceStream("Portal.logo.bmp")
VB2005 and it gives a warning about Access of Shared member will not
be evaluated --- what do I need to do to do away with the warning?
Private m_BmpStream As Stream
Private m_Assembly As System.Reflection.Assembly = _
Me.GetType.Assembly.GetEntryAssembly()
This is later used in order to retrieve a bitmap logo:
m_BmpStream = _
m_Assembly.GetManifestResourceStream("Portal.logo.bmp")