Click here to Skip to main content
15,889,865 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionVB6 rs.close error Pin
Amit Battan Ror25-Jun-08 19:38
Amit Battan Ror25-Jun-08 19:38 
AnswerRe: VB6 rs.close error Pin
Amit Battan Ror25-Jun-08 19:42
Amit Battan Ror25-Jun-08 19:42 
AnswerRe: VB6 rs.close error Pin
~Khatri Mitesh~25-Jun-08 20:39
~Khatri Mitesh~25-Jun-08 20:39 
GeneralRe: VB6 rs.close error Pin
Guffa26-Jun-08 1:11
Guffa26-Jun-08 1:11 
AnswerRe: VB6 rs.close error Pin
Guffa26-Jun-08 1:17
Guffa26-Jun-08 1:17 
AnswerRe: VB6 rs.close error Pin
supercat927-Jun-08 7:26
supercat927-Jun-08 7:26 
GeneralRe: VB6 rs.close error Pin
Amit Battan Ror29-Jun-08 18:10
Amit Battan Ror29-Jun-08 18:10 
QuestionCouldn't resolve default property of object Me. Pin
AR Reddy25-Jun-08 19:33
AR Reddy25-Jun-08 19:33 
Hi,

I am new to VB and VB.NET. My Application is upgraded from VB6 to VB.NET. But I got some problems as "Couldn't resolve default property of object Me.". How Can I resolve these kind of warnings. Here is my code:

Private ReadOnly Property IParameter_LeseLaenge() As Integer Implements _IParameter.LeseLaenge
Get
'UPGRADE_WARNING: Couldn't resolve default property of object Me. Click for more: 'ms-help://MS.VSCC.2003/commoner/redir/redirect.htm?keyword="vbup1037"'
Return I_IParameter(Me).laenge
End Get
End Property

//I_IParameter method is:
Public Function I_IParameter(ByRef obj As _IParameter) As _IParameter
I_IParameter = obj
End Function



One More:

Public WriteOnly Property SelButton() As System.Windows.Forms.Button
Set(ByVal Value As System.Windows.Forms.Button)
mSelBtn = Value

If mParent.IsAlive Then
'UPGRADE_WARNING: Couldn't resolve default property of object Me. Click for more: 'ms-help://MS.VSCC.2003/commoner/redir/redirect.htm?keyword="vbup1037"'
Parent.AddCtrl(mSelBtn, Me)
End If
End Set
End Property

//AddCtrl method:

Public Sub AddCtrl(ByVal ctrl As System.Windows.Forms.Control, ByVal descriptor As _IFieldDescriptor)
'UPGRADE_ISSUE: ObjPtr function is not supported. Click for more: 'ms-help://MS.VSCC.2003/commoner/redir/redirect.htm?keyword="vbup1040"'
mCtrls.Add(descriptor, CStr(ObjPtr(ctrl)))
End Sub


Could any one of you please let me the solution?

Thanks in Advance.

AR Reddy

AnswerRe: Couldn't resolve default property of object Me. Pin
nishkarsh_k26-Jun-08 0:29
nishkarsh_k26-Jun-08 0:29 
GeneralRe: Couldn't resolve default property of object Me. Pin
AR Reddy26-Jun-08 1:35
AR Reddy26-Jun-08 1:35 
GeneralRe: Couldn't resolve default property of object Me. [modified] Pin
Dave Kreskowiak26-Jun-08 7:06
mveDave Kreskowiak26-Jun-08 7:06 
GeneralRe: Couldn't resolve default property of object Me. Pin
AR Reddy30-Jun-08 3:19
AR Reddy30-Jun-08 3:19 
GeneralRe: Couldn't resolve default property of object Me. Pin
Dave Kreskowiak30-Jun-08 6:41
mveDave Kreskowiak30-Jun-08 6:41 
GeneralRe: Couldn't resolve default property of object Me. Pin
AR Reddy1-Jul-08 20:59
AR Reddy1-Jul-08 20:59 
Questionhow to find integration Pin
sumit703425-Jun-08 18:25
sumit703425-Jun-08 18:25 
AnswerRe: how to find integration Pin
Christian Graus25-Jun-08 18:41
protectorChristian Graus25-Jun-08 18:41 
GeneralRe: how to find integration Pin
sumit703426-Jun-08 0:40
sumit703426-Jun-08 0:40 
GeneralRe: how to find integration Pin
Christian Graus26-Jun-08 1:02
protectorChristian Graus26-Jun-08 1:02 
QuestionSection within app config Pin
Subjugate25-Jun-08 15:01
Subjugate25-Jun-08 15:01 
AnswerRe: Section within app config Pin
Christian Graus25-Jun-08 15:44
protectorChristian Graus25-Jun-08 15:44 
GeneralRe: Section within app config Pin
Subjugate25-Jun-08 16:56
Subjugate25-Jun-08 16:56 
GeneralRe: Section within app config Pin
Christian Graus25-Jun-08 18:08
protectorChristian Graus25-Jun-08 18:08 
QuestionNot sure how to phrase this.... Pin
svanwass25-Jun-08 14:47
svanwass25-Jun-08 14:47 
AnswerRe: Not sure how to phrase this.... PinPopular
Christian Graus25-Jun-08 15:44
protectorChristian Graus25-Jun-08 15:44 
GeneralRe: Not sure how to phrase this.... Pin
svanwass25-Jun-08 16:03
svanwass25-Jun-08 16:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.