jerry
Posts: 16
|
| Posted: 01/09/2007, 6:16 PM |
|
hoping someone can help me out.
i have 2 forms on a page. a Quote form and a QuoteDetails form (editable grid). i have set the return page property of the QuoteDetails form to point to a Report. so far no problems, how do i configure this Report to automatically load the QuoteNo (PK field) on the screen ?
regards
jerry
|
 |
 |
garycrunk
Posts: 23
|
| Posted: 01/10/2007, 7:35 AM |
|
What I do....
1) In the "Before-Show" property of the QuoteNo field, I save the value to a Session Variable
Session("QuoteNo") = formname.quoteno.value
2) Then in the "Before-Show" property in the PK field, I pick up that value saved to the session variable:
formname.pkfield.value = Session("QuoteNo").
--- Then I clean things up
Session("QuoteNo") = ""
I am sure there's a beter way.... But that how I do things...
_________________
Gary Crunk
Job Examiner |
 |
 |
|