I am trying to convert a VBA script into VFP.
There are no problems until I hace this instruction
theTable.Column(2).Format.TextAlignment = mmTextAlignmentRight
mmTextAlignmentRight is equal to 2, but when I write the
following instruction in VFP 7.0,
theTable.Column(2).Format.TextAlignment = 2
I get an error.
The same happens with
theTable.Column(2).Format.TextAlignment = "2"
mmTextAlignmentRight is defined as a value of an "enumeration"
Has any one experience in converting VBA scripts into VFP?
TIA
There are no problems until I hace this instruction
theTable.Column(2).Format.TextAlignment = mmTextAlignmentRight
mmTextAlignmentRight is equal to 2, but when I write the
following instruction in VFP 7.0,
theTable.Column(2).Format.TextAlignment = 2
I get an error.
The same happens with
theTable.Column(2).Format.TextAlignment = "2"
mmTextAlignmentRight is defined as a value of an "enumeration"
Has any one experience in converting VBA scripts into VFP?
TIA