Steve,
What you're asking is quite straightforward, but makes me wonder what you're
trying to achieve.
In the button's OnClick event:
Dim strMyText
strMyText = "Here is my generic text."
Forms![YourOtherFormName]![YourControl] = strMyText
or if the text depends on another field on your 1st form:
strMyText
' The Case statement assumes MySelectorField is numeric
Select Case Me![MySelectorField]
Case 1
strMyText = "This is text for case 1."
Case 2
strMyText = "Case 2 text."
....other cases
Case Else
strMyText = "My default text."
End Select
Forms![YourOtherFormName]![YourControl] = strMyText
Sprinks
Steve said:
I would like to create a form that has button on it that when clicked will
populate another form with generic text. ie. when a button is clicked it put
a set of data (sentence) into another form. can this be done???