[Quickfix-developers] Strange error unknown "getField" property in quickfix.message
Brought to you by:
orenmnero
|
From: Martin T. <mta...@ho...> - 2005-06-15 02:30:07
|
Hi,
I have this part of code as an example of my problem:
_____
Public Sub processNewQuickFIX(ByRef qfxMessage As QuickFix.Message)
Dim field As New QuickFix.StringField(myIntConstant)
If (qfxMessage.isSetField(myIntConstant)) Then
qfxMessage.getField(field)
End If
'.......
End sub
_____
For that part of code, I get this error:
'getField' has a return type that is not supported or parameter types that
are not supported.
Somewhere else in my code I get:
'setField' has a return type that is not supported or parameter types that
are not supported.
The strange part of it is that yesterday, I was able to run that same code.
If I close the VB.NET environment, and I re-open my solution, then I get
more errors of that kind. Other lines where I use the getField or setField
are now in error and previously they were not, how come?
Does my .NET framework need to be reinstalled or repaired? It is doing the
same on two other computer that run VS.NET 2003.
Does anybody already get that kind of problem?
Thank you!
Martin
|