Hi
I cant seem to find the answer for this question. I have tried many types of refreshing and none seem to work.
I have two forms (form1 and form2 (for ease of understanding)) I have a flag (flag1) on form1 (this indicates if the peerReviewStatus is open or not). When all defects are classed as 'Closed' on Form2, Flag1 (on form1) is turned to "1". I have the code On_current that
in thoery, when flag1 = "0" the peerReviewStatus is "open" (default) but if flag1 = "1", the peerReviewStatus is 'Closed'! so when the user returns to form1, i would like the peerReviewStatus field to automaticlly update to 'Closed' (as long as flag1 is "1").
The only problem is, its not updating when i return from form2 to form1. The only time it refreshing is when i closed form1 and return back to it.
Any ideas?
I cant seem to find the answer for this question. I have tried many types of refreshing and none seem to work.
I have two forms (form1 and form2 (for ease of understanding)) I have a flag (flag1) on form1 (this indicates if the peerReviewStatus is open or not). When all defects are classed as 'Closed' on Form2, Flag1 (on form1) is turned to "1". I have the code On_current that
Code:
if flag1 = "1" then
peerReviewStatus = "Closed"
me.refresh
end if
in thoery, when flag1 = "0" the peerReviewStatus is "open" (default) but if flag1 = "1", the peerReviewStatus is 'Closed'! so when the user returns to form1, i would like the peerReviewStatus field to automaticlly update to 'Closed' (as long as flag1 is "1").
The only problem is, its not updating when i return from form2 to form1. The only time it refreshing is when i closed form1 and return back to it.
Any ideas?