Hello,
I am creating a menu and I have an array of colours, MyColours(11).
I would like to use that array of 11 colours as icons for use in the menu?
I figured that those colours has to be the forecolur of those icons.
Can I create those icons in memory or do I have to create those icons as images in a folder and access them from there?
If I can create them in memory, how do I do that?
[code]In the menu that I am creating I use this code…
// Add some items
For i = 0 to 10
TheMenuItem = new MenuItem
TheMenuItem.Text = Str(i)
TheMenuItem.Icon = How could I use that array of 11 colours as icons to use in the menu?
base.Append(new MenuItem(TheMenuItem))
next[/code]
Thanks.
Lennox