How to assign text to forms

  • Thread starter Thread starter Ayo
  • Start date Start date
A

Ayo

Is there a way to assign the active or selected cell on a worksheet to a
TextBox on a form? This is what I have to far but it is not working.

Private Sub txtSiteRw_Change()
txtSiteRw.Value = Application.ActiveCell.Address
If txtSiteRw.Value = "" Then
Me.cmdFillForm.Enabled = False
ElseIf txtSiteRw.Value <> "" Then
Me.cmdFillForm.Enabled = True
End If
End Sub

Any help will be greatly appreciated.
 
You haven't provided enough information on *how* you are trying to implement
this functionality. For example, is the UserForm (I presume you meant
UserForm when you said "form") already showing when you are trying to do
this? If so, what event are you using to "kick" your code off (that is, are
you pushing a "Get Active Cell" button to implement your functionality, or
clicking inside the TextBox, or clicking the UserForm, etc.)? If the
UserForm is not already showing, are you doing something on the worksheet
that shows the UserForm and, when shown, you want the TextBox to pick up the
contents of the active cell when loading? I can tell you that the Change
event for the TextBox is probably the wrong place to try and implement your
code (that event will not take place until something changes the text within
the TextBox itself). Provide some more detail on how you want to implement
the functionality you seek and someone here will be able to give you code to
do it.

Rick
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top