Discussion:
Constant conversion from VB to Delphi
(too old to reply)
Robert Hoyer
2011-02-03 16:31:06 UTC
Permalink
What constant type would be declared for the example below.

Many Thanks,
RWH

VB
Public Const PTR_S_RECEIPT As Long = 2&

Delphi
PTR_S_RECEIPT = 2&;
a***@aol.com
2011-02-03 17:35:00 UTC
Permalink
Post by Robert Hoyer
What constant type would be declared for the example below.
Many Thanks,
RWH
VB
Public Const PTR_S_RECEIPT As Long = 2&
Delphi
PTR_S_RECEIPT = 2&;
const
Ptr_S_RECEIPT : integer = 2;

Alan Lloyd

Loading...