Assign control source to popup form

  • Thread starter ondvirg via AccessMonster.com
  • Start date
O

ondvirg via AccessMonster.com

I have a main form that contains multiple memo type text boxes. I'd like to
be able to double click on one of the text boxes and have a popup form open
with a large text box that then gets it's source from the main forms text box,
so that users can view all or most of the text without having to use the
scroll bar. The data also needs to be updatable.

I'm having trouble figuring this out...I'm sure it's simple, but it's eluding
me
 
D

Dirk Goldgar

Allen Browne said:
Try pressing Shift+F2 while in your memo field.


Or code its DblClick event:

Private Sub txtYourMemoField_DblClick(Cancel As Integer)

RunCommand acCmdZoomBox

End Sub
 
O

ondvirg via AccessMonster.com

Allen said:
Try pressing Shift+F2 while in your memo field.
I have a main form that contains multiple memo type text boxes. I'd like
to
[quoted text clipped - 8 lines]
eluding
me

Thanks. I did try that, but the zoom box was a little too limited since these
memo fields tend to have quite a bit of data in them. I did finally figure
out a way to open a custom zoom form that fit my needs.
 

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

Top