Hi,
how can I do thies.
I create an Excel sheet from Powerbuilder and want to allow the range (e.g. Range("A5:L37") with "AllownEditRange") as input.
The sheet is protected with "Protect".
Here is my code:
-- I can't found any sample for this
iole_sheet.protection.alloweditranges.Add Title:="Date Input", Range:= Range("A5:L37")
-- I hope this code is correct, it works
iole_sheet.protect( 'PW', TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE, FALSE, FALSE )
Pls help. Thx.
André