hope someone can offer a suggestion.
Have several input forms, and a 'summary' form with multiple unbound text boxes. The user starts on a
mostly blank summary form, selects a button to go to an input form, returns to the summary form and sees the data they just entered.
The control source for the text boxes on the summary form are functions, i.e. =customer_issues(), the reason for this is that complicated manipulation and concatenation happens inside the functions, and this is the only way I can get the data to display on the summary form exactly how I want it.
Here is the problem...I want the text boxes to shrink or grow to size.
I have tried Stephen Lebans CanGrow function, it works but does not allow spacing between the text boxes, if text box 1 grows vertically, it overlaps on top of text box 2 below it.
I have considered one large text box, concatenating all of the functions and adding line breaks etc, but I need a header for the contents of each text box in bold.
This led me to look at an rtf control, but havent found one that can use a function as a recordsource and create rtf formatted text on the fly.
Have also tried making a report, which does display, shrink and grow exactly as I want it, and displaying a snapshot on the summary form using docmd.outputto. Trouble there is that everytime the form reloads after a change on an input form, a msgbox saying "outputting to .snp path name blah blah" pops up, which also contains a cancel button. Doesnt seem to be any way to hide this box, tried echo=false, setwarnings false...googling tells me there is no way to hide it and cant risk the user not restraining themselves from clicking cancel.
sorry for the length...have worked on this problem for weeks now and need some new ideas. Thanks for any ideas.
Have several input forms, and a 'summary' form with multiple unbound text boxes. The user starts on a
mostly blank summary form, selects a button to go to an input form, returns to the summary form and sees the data they just entered.
The control source for the text boxes on the summary form are functions, i.e. =customer_issues(), the reason for this is that complicated manipulation and concatenation happens inside the functions, and this is the only way I can get the data to display on the summary form exactly how I want it.
Here is the problem...I want the text boxes to shrink or grow to size.
I have tried Stephen Lebans CanGrow function, it works but does not allow spacing between the text boxes, if text box 1 grows vertically, it overlaps on top of text box 2 below it.
I have considered one large text box, concatenating all of the functions and adding line breaks etc, but I need a header for the contents of each text box in bold.
This led me to look at an rtf control, but havent found one that can use a function as a recordsource and create rtf formatted text on the fly.
Have also tried making a report, which does display, shrink and grow exactly as I want it, and displaying a snapshot on the summary form using docmd.outputto. Trouble there is that everytime the form reloads after a change on an input form, a msgbox saying "outputting to .snp path name blah blah" pops up, which also contains a cancel button. Doesnt seem to be any way to hide this box, tried echo=false, setwarnings false...googling tells me there is no way to hide it and cant risk the user not restraining themselves from clicking cancel.
sorry for the length...have worked on this problem for weeks now and need some new ideas. Thanks for any ideas.