jomoss
Newbie

Beiträge: 3
|
 |
« Antwort #2 am: Juli 18, 2008, 06:53:28 » |
|
Hallo, nein, das meinte ich nicht. Die 128 definierten Farb-Plätze, das Farbtableau über VBA, etwa wie hier:
Sub FarbenDefinieren()
'The first row from left to right ActiveWorkbook.Colors(1) = RGB(0, 0, 0) ActiveWorkbook.Colors(53) = RGB(153, 51, 0) ActiveWorkbook.Colors(52) = RGB(51, 51, 0) ActiveWorkbook.Colors(51) = RGB(0, 51, 0) ActiveWorkbook.Colors(49) = RGB(0, 51, 102) ActiveWorkbook.Colors(11) = RGB(0, 0, 128) ActiveWorkbook.Colors(55) = RGB(51, 51, 153) ActiveWorkbook.Colors(56) = RGB(51, 51, 51) '...
End Sub
So sieht das in Excel-VBA aus. Analoges suche ich für District-VBA.
|