hi,
i want to create one excel file (2000) within FOXPRO 7
oExcelObject = CREATEOBJECT('Excel.Application')
.
.
.
WITH oExcelSheet.Range("A1"
.value='THIS IS A TEST'
.interior.Color=RGB(192,192,192)
.Font.Name = "Courier New"
.Font.FontStyle = "Bold"
.Font.Size = 14
.Borders.LineStyle = 9
ENDWITH
Now i want to allign this.
This is the example in MSDN :
Worksheets("Sheet1".Range("A1:A5".HorizontalAlignment = xlLeft
Can anyone tell me what this xlLeft means or where i can found more information.
thanks
i want to create one excel file (2000) within FOXPRO 7
oExcelObject = CREATEOBJECT('Excel.Application')
.
.
.
WITH oExcelSheet.Range("A1"
.value='THIS IS A TEST'
.interior.Color=RGB(192,192,192)
.Font.Name = "Courier New"
.Font.FontStyle = "Bold"
.Font.Size = 14
.Borders.LineStyle = 9
ENDWITH
Now i want to allign this.
This is the example in MSDN :
Worksheets("Sheet1".Range("A1:A5".HorizontalAlignment = xlLeft
Can anyone tell me what this xlLeft means or where i can found more information.
thanks