vote up 1 vote down star

How to pass Form TextBox reference to method?

Following code is issuing exception.

Private Sub DoSmthWithTextBox(ByRef txtBox as TextBox)
    txtBox.BackColor = vbRed
End Sub

Private Sub TextBox1_Change()
    DoSmthWithTextBox Me.TextBox1
End Sub

Problem appears when'DoSmthWithTextBox Me.TextBox1' passes string from TextBox1 insead of object reference. How to pass TextBox object to method DoSmthWithTextBox?

Thanx

flag

@Jox: Friendly reminder: You should not forget to accept Remou's answer. :-) – Tomalak Dec 17 '08 at 17:41

1 Answer

vote up 3 vote down check

Rewrite for Excel:

Private Sub DoSmthWithTextBox(txtBox As MSForms.TextBox)
    txtBox.BackColor = vbRed
End Sub

As far as I know, this is because Excel has an object textbox that is a shape, whereas userforms use the ActiveX control textbox, so you need an explicit reference to the MSForms library.

link|flag
+1 for knowing the difference. ;-) Can you write a short explanation? – Tomalak Dec 17 '08 at 12:56
YES!!!! Upvote from me ;-) This works for me... – Jox Dec 17 '08 at 14:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.