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
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
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
Thanks Mr Massimo
It works.
Regards
ACWoo