well, again, the idea is to use VBA CODE to open form. exact steps:
1. add a label, caption Click, hyperlink address #
2. add click event for this lable, write there:
DoCmd.OpenForm "form1", , , , , acDialog
3. you see that label have hyperlink, cursor is finger
4. click on label - form is opene in dialog
tried on Access 97 now
HTH
--
Alex Dybenko (MVP)
http://Alex.Dybenko.com
http://www.PointLtd.com
Raymond said:
Yes, Alex. I cannot do it and it is working prefectly. One draw back is
I cannot set the called form to WindowMode=acDailog (I can't remember the
exact syntax). I want to set this because I don't want my users go to other
forms etc. I want them to fully complete the task. So far the form flow is
controlled by codes. I like hyperlink because it has the fingerpoint
cursor. Do you think I can control the WindowMode of the hyperlink?
Appreciate your advise again.