PDA

View Full Version : letters help



oleg_v
03-10-2010, 04:04 AM
Hi

I need some help
i need to make several buttons eache button when i press writes me a differant leter in the cell the font of the letters is "arial" and size "12"

i need the bottuns to work than can write a words in one active cell with those buttons

i am can not move froward without this
Tnx

Bob Phillips
03-10-2010, 05:17 AM
Code for one would be



With ActiveCell

.Value = .Value & "A"
.Font.Name = "Arial"
.Font.Size = 12
End With