M
marc
Below is some code from a form that I'm making.
I inserted my question in the bracketted text
(essentially, I want this line to assign the button's tag
property value (e.g., the letter "L") to a text variable
txBtn).
Any help would be appreciated.
fyi, I'm defining the text variable txBtn in the
subroutine that calls the form, as follows: dim txBtn as
text. Another subroutine (InsertRorCInTable) will use
the value assigned to txBtn, in determining whether to
insert a row above or below, or a column to the right or
to the left.
Here's the code.....
Private Sub radInsertColLt_Click()
[I want this line to assign the button's tag
property value (i.e., the letter "L") to a text variable
txBtn, but I can't figure out how to do it]
Call InsertRorCInTable
End Sub
Private Sub radInsertColLt_DblClick(ByVal Cancel As
MSForms.ReturnBoolean)
[I want this line to assign the button's tag
property value (i.e., the letter "L") to a text variable
txBtn, but I can't figure out how to do it]
Call InsertRorCInTable
End Sub
I inserted my question in the bracketted text
(essentially, I want this line to assign the button's tag
property value (e.g., the letter "L") to a text variable
txBtn).
Any help would be appreciated.
fyi, I'm defining the text variable txBtn in the
subroutine that calls the form, as follows: dim txBtn as
text. Another subroutine (InsertRorCInTable) will use
the value assigned to txBtn, in determining whether to
insert a row above or below, or a column to the right or
to the left.
Here's the code.....
Private Sub radInsertColLt_Click()
[I want this line to assign the button's tag
property value (i.e., the letter "L") to a text variable
txBtn, but I can't figure out how to do it]
Call InsertRorCInTable
End Sub
Private Sub radInsertColLt_DblClick(ByVal Cancel As
MSForms.ReturnBoolean)
[I want this line to assign the button's tag
property value (i.e., the letter "L") to a text variable
txBtn, but I can't figure out how to do it]
Call InsertRorCInTable
End Sub