View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Brotha Lee Brotha Lee is offline
external usenet poster
 
Posts: 43
Default Assigning backgroundcolor to button on form

I have the following code to assign a background color to a button on a
userform.
Set Mycmd = Controls.Add("Forms.CommandButton.1", "COL")
Mycmd.Left = 12
Mycmd.Top = 70
Mycmd.Width = 12
Mycmd.Height = 12
ActiveSheet.Select
Mycmd.BackColor = Range(Cells(1, 1)).Interior.color

This code returns me the error "Method range of _object global failed". When
I change the line Mycmd.BackColor = Range(Cells(1, 1)).Interior.color to
Mycmd.BackColor = Range("A1").Interior.color the codes work just fine.

What is wrong with my code?? As I expect cells(1,1) to be the same as
range("A1").

Furthermore I have to have line activesheet.select in the statement to copy
the colors correctly (when it are colors not from default palette). Does
anyone know why this part of the code should be included?

TIA