ich bin doch so deppert...
anstatt:
Delphi-Quellcode:
XLApp.Selection.Borders(xlDiagonalDown).LineStyle = xlNone;
XLApp.Selection.Borders(xlDiagonalUp).LineStyle = xlNone;
VB-Syntax
Delphi-Quellcode:
XLApp.Selection.Borders[xlDiagonalDown].LineStyle := xlNone;
XLApp.Selection.Borders[xlDiagonalUp].LineStyle := xlNone;
Delphisyntax
es kann manchmal so einfach sein
so, hier noch nen tip um der kompletten Zelle einen Rahmen zu geben:
Delphi-Quellcode:
XLApp.Selection.Borders.Weight := xlThin; // dick
XLApp.Selection.Borders.Weight := xlThick; // dünn
XLApp.Selection.Borders.Weight := xlMedium; // mittel