Im writing a C# class library which is going to be used as a proxy between a VB6 application and WCF service.

Some of the WCF service methods use Decimal data types as parameters which Im unable to duplicate directly in the interface I provide to the VB6 application as this is an unsupported type.

How do I implement this in the COM interface and safely convert it to the Decimal type that the WCF interface is expecting?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Decimal is available in VB6 as a subtype of VARIANT.

  Dim d As Variant

  d = CDec(1)

  MsgBox TypeName(d)

You therefore implement it as a VARIANT with appropriate subtype in the interface.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.