Try something like;
Private Sub UserForm_Initialize()
Label1.Caption = Sheet1.Range("A1")
CommandButton1.Caption = Sheet1.Range("A2")
End Sub
Ivan
Just answered a question above the same, so I may as well post mine here too. But Ivans will work!
Dim OptCaption as String
Dim CmdBtnCaption as String
CmdBtnCaption = Sheets("Sheet1").Range("A2")
OptCaption= Sheets("Sheet1").Range("A1")
OptionButton1.Caption= OptCaption
CommandButton1.Caption=CmdBtnCaption
Dave
OzGrid Business Applications
Re: I'm seeing double ? Sorry I didn't see other post before
RE: Sorry I didn't see other post before| No prob, the layout does get confusing!
OzGrid Business Applications
Re: RE: No prob, the layout ....I like to search all the way down for topic, so when I post, messages have changed