Page 1 of 1

Border

PostPosted: Thu Dec 07, 2017 11:09 am
by acwoo1
Hi

oSheet:Cells( nRow, 3 ):Value="Name"
How to draw a border on the left (or right, or up, or bottom)

Regards

ACWoo
Using FWH1510
FWH528

Re: Border

PostPosted: Thu Dec 07, 2017 11:38 am
by Massimo Linossi
oSheet:Cells(i+1,10):Borders(7):Linestyle = 1 // left
oSheet:Cells(i+1,10):Borders(8):Linestyle = 1 // up
oSheet:Cells(i+1,10):Borders(9):Linestyle = 1 // bottom
oSheet:Cells(i+1,10):Borders(10):Linestyle = 1 // right

Re: Border

PostPosted: Fri Dec 08, 2017 2:40 am
by acwoo1
Thanks Mr Massimo

It works.


Regards


ACWoo