Has anyone out there who is accustomed to programmatically exporting data from a Progress program to Excel had to create a cell value which is actually a hyperlink. For example, VB shows this syntax:
Range("A1").Select
ActiveCell.FormulaR1C1 = "TS1"
Range("A1").Select
ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:= _
"www.google.com", _
TextToDisplay:="GOOGLE"
End Sub
Progress just shows a very criptic syntax of:
[ Com-Handle-Var = ] <com-handle>: Add (
Com-Handle-Anchor,
Character-Address,
<anytype>-SubAddress,
<anytype>-ScreenTip,
<anytype>-TextToDisplay ).
Can anyone send me a real world Progress sample of this. Thanks.
Range("A1").Select
ActiveCell.FormulaR1C1 = "TS1"
Range("A1").Select
ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:= _
"www.google.com", _
TextToDisplay:="GOOGLE"
End Sub
Progress just shows a very criptic syntax of:
[ Com-Handle-Var = ] <com-handle>: Add (
Com-Handle-Anchor,
Character-Address,
<anytype>-SubAddress,
<anytype>-ScreenTip,
<anytype>-TextToDisplay ).
Can anyone send me a real world Progress sample of this. Thanks.