Wednesday 16 January 2013

VB.Net Excel - how to fix error Unable to set the OutlineLevel property of the Range class

 Replace
osheet.Range("G1").OutlineLevel = 1.0
With 
osheet.Columns("G").OutlineLevel = 1.0

No comments:

Post a Comment