Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Add Formatted Data to a SpreadsheetContent of Add Formatted Data to a Spreadsheet.vbsMD5 Hash: E4C2D7ECBD9733671DC87E3C82E6A34C |
||
' Description: Demonstration script that adds the words "test value" to a new spreadsheet, then formats the cell containing the value.
Set objExcel = CreateObject("Excel.Application") objExcel.Visible = True objExcel.Workbooks.Add objExcel.Cells(1, 1).Value = "Test value" objExcel.Cells(1, 1).Font.Bold = TRUE objExcel.Cells(1, 1).Font.Size = 24 objExcel.Cells(1, 1).Font.ColorIndex = 3 | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |