This seems to me like it should be an easy thing to do, but I can't figure out how to do it.
I want to set up an Event Procedure, so that when I double-click in a field, the value in that field gets appended to another field on the same form, separated by a semicolon (they are both text fields)
The first field I call ProjectReceivingPartner
The second field I call ProjectPartners
It have tried placing the following in the Dbl_Click Event Procedure (which would seem to me the logical way to do this):
ProjectPartners.Text=ProjectPartners.Text+ProjectReceivingPartner.Text+ ";"
But I get an error message about not being able to reference a control that does not have focus. I am absolutely new to this, have little idea what that error means, and no idea how to accomplish what seems to me to be a simple task. All help appreciated
Bob
I want to set up an Event Procedure, so that when I double-click in a field, the value in that field gets appended to another field on the same form, separated by a semicolon (they are both text fields)
The first field I call ProjectReceivingPartner
The second field I call ProjectPartners
It have tried placing the following in the Dbl_Click Event Procedure (which would seem to me the logical way to do this):
ProjectPartners.Text=ProjectPartners.Text+ProjectReceivingPartner.Text+ ";"
But I get an error message about not being able to reference a control that does not have focus. I am absolutely new to this, have little idea what that error means, and no idea how to accomplish what seems to me to be a simple task. All help appreciated
Bob