bonzodog1990
New Member
- Joined
- Aug 26, 2011
- Messages
- 14
Hi All,
This is making me tear my hair out, please tell me what I'm missing!
I have this, very simple, code:
Private Sub BondButton_Click()
Rows("2:2").Select
Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
SelectTradeType.Hide
EnterABond01.Show
End Sub
Private Sub IRSButton_Click()
Rows("2:2").Select
Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
SelectTradeType.Hide
EnterAnIrs.Show
Two buttons on userform that call other userforms, no problems, except the bottom one works to call 'EnterAnIrs' and the top one 'EnterABond01' just doesn't. I've tried all kinds of names for the 'EnterABond01' userform, and nothing works. I just get the error msg:
'Object doesn't support this property or method'
Can you please give me a list of things to check/reasons this might be happening?
Many thanks,
Ben
This is making me tear my hair out, please tell me what I'm missing!
I have this, very simple, code:
Private Sub BondButton_Click()
Rows("2:2").Select
Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
SelectTradeType.Hide
EnterABond01.Show
End Sub
Private Sub IRSButton_Click()
Rows("2:2").Select
Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
SelectTradeType.Hide
EnterAnIrs.Show
Two buttons on userform that call other userforms, no problems, except the bottom one works to call 'EnterAnIrs' and the top one 'EnterABond01' just doesn't. I've tried all kinds of names for the 'EnterABond01' userform, and nothing works. I just get the error msg:
'Object doesn't support this property or method'
Can you please give me a list of things to check/reasons this might be happening?
Many thanks,
Ben